Home
last modified time | relevance | path

Searched refs:objHandle (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/libs/hwui/jni/
Dandroid_graphics_Matrix.cpp32 static void finalizer(jlong objHandle) { in finalizer() argument
33 SkMatrix* obj = reinterpret_cast<SkMatrix*>(objHandle); in finalizer()
137 static jboolean isIdentity(CRITICAL_JNI_PARAMS_COMMA jlong objHandle) { in isIdentity() argument
138 SkMatrix* obj = reinterpret_cast<SkMatrix*>(objHandle); in isIdentity()
142 static jboolean isAffine(CRITICAL_JNI_PARAMS_COMMA jlong objHandle) { in isAffine() argument
143 SkMatrix* obj = reinterpret_cast<SkMatrix*>(objHandle); in isAffine()
147 static jboolean rectStaysRect(CRITICAL_JNI_PARAMS_COMMA jlong objHandle) { in rectStaysRect() argument
148 SkMatrix* obj = reinterpret_cast<SkMatrix*>(objHandle); in rectStaysRect()
152 static void reset(CRITICAL_JNI_PARAMS_COMMA jlong objHandle) { in reset() argument
153 SkMatrix* obj = reinterpret_cast<SkMatrix*>(objHandle); in reset()
[all …]
DPath.cpp62 static void computeBounds(JNIEnv* env, jclass clazz, jlong objHandle, jobject jbounds) { in computeBounds() argument
63 SkPath* obj = reinterpret_cast<SkPath*>(objHandle); in computeBounds()
68 static void incReserve(JNIEnv* env, jclass clazz, jlong objHandle, jint extraPtCount) { in incReserve() argument
69 SkPath* obj = reinterpret_cast<SkPath*>(objHandle); in incReserve()
73 static void moveTo__FF(JNIEnv* env, jclass clazz, jlong objHandle, jfloat x, jfloat y) { in moveTo__FF() argument
74 SkPath* obj = reinterpret_cast<SkPath*>(objHandle); in moveTo__FF()
78 static void rMoveTo(JNIEnv* env, jclass clazz, jlong objHandle, jfloat dx, jfloat dy) { in rMoveTo() argument
79 SkPath* obj = reinterpret_cast<SkPath*>(objHandle); in rMoveTo()
83 static void lineTo__FF(JNIEnv* env, jclass clazz, jlong objHandle, jfloat x, jfloat y) { in lineTo__FF() argument
84 SkPath* obj = reinterpret_cast<SkPath*>(objHandle); in lineTo__FF()
[all …]
DPaint.cpp687 static jint setTextLocales(JNIEnv* env, jobject clazz, jlong objHandle, jstring locales) { in setTextLocales() argument
688 Paint* obj = reinterpret_cast<Paint*>(objHandle); in setTextLocales()
724 static void reset(CRITICAL_JNI_PARAMS_COMMA jlong objHandle) { in reset() argument
725 reinterpret_cast<Paint*>(objHandle)->reset(); in reset()
785 static jint getStyle(CRITICAL_JNI_PARAMS_COMMA jlong objHandle) { in getStyle() argument
786 Paint* obj = reinterpret_cast<Paint*>(objHandle); in getStyle()
790 static void setStyle(CRITICAL_JNI_PARAMS_COMMA jlong objHandle, jint styleHandle) { in setStyle() argument
791 Paint* obj = reinterpret_cast<Paint*>(objHandle); in setStyle()
827 static jint getStrokeCap(CRITICAL_JNI_PARAMS_COMMA jlong objHandle) { in getStrokeCap() argument
828 Paint* obj = reinterpret_cast<Paint*>(objHandle); in getStrokeCap()
[all …]
DPaintFilter.cpp44 static void finalizer(JNIEnv* env, jobject clazz, jlong objHandle) { in finalizer() argument
45 PaintFilter* obj = reinterpret_cast<PaintFilter*>(objHandle); in finalizer()