Home
last modified time | relevance | path

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

/frameworks/base/core/jni/android/graphics/
DMatrix.cpp37 static void finalizer(jlong objHandle) { in finalizer() argument
38 SkMatrix* obj = reinterpret_cast<SkMatrix*>(objHandle); in finalizer()
142 static jboolean isIdentity(jlong objHandle) { in isIdentity() argument
143 SkMatrix* obj = reinterpret_cast<SkMatrix*>(objHandle); in isIdentity()
147 static jboolean isAffine(jlong objHandle) { in isAffine() argument
148 SkMatrix* obj = reinterpret_cast<SkMatrix*>(objHandle); in isAffine()
152 static jboolean rectStaysRect(jlong objHandle) { in rectStaysRect() argument
153 SkMatrix* obj = reinterpret_cast<SkMatrix*>(objHandle); in rectStaysRect()
157 static void reset(jlong objHandle) { in reset() argument
158 SkMatrix* obj = reinterpret_cast<SkMatrix*>(objHandle); in reset()
[all …]
DPath.cpp64 static void computeBounds(JNIEnv* env, jclass clazz, jlong objHandle, jobject jbounds) { in computeBounds() argument
65 SkPath* obj = reinterpret_cast<SkPath*>(objHandle); in computeBounds()
70 static void incReserve(JNIEnv* env, jclass clazz, jlong objHandle, jint extraPtCount) { in incReserve() argument
71 SkPath* obj = reinterpret_cast<SkPath*>(objHandle); in incReserve()
75 static void moveTo__FF(JNIEnv* env, jclass clazz, jlong objHandle, jfloat x, jfloat y) { in moveTo__FF() argument
76 SkPath* obj = reinterpret_cast<SkPath*>(objHandle); in moveTo__FF()
80 static void rMoveTo(JNIEnv* env, jclass clazz, jlong objHandle, jfloat dx, jfloat dy) { in rMoveTo() argument
81 SkPath* obj = reinterpret_cast<SkPath*>(objHandle); in rMoveTo()
85 static void lineTo__FF(JNIEnv* env, jclass clazz, jlong objHandle, jfloat x, jfloat y) { in lineTo__FF() argument
86 SkPath* obj = reinterpret_cast<SkPath*>(objHandle); in lineTo__FF()
[all …]
DPaint.cpp566 static jint setTextLocales(JNIEnv* env, jobject clazz, jlong objHandle, jstring locales) { in setTextLocales() argument
567 Paint* obj = reinterpret_cast<Paint*>(objHandle); in setTextLocales()
653 static void reset(jlong objHandle) { in reset() argument
654 reinterpret_cast<Paint*>(objHandle)->reset(); in reset()
715 static jint getStyle(jlong objHandle) { in getStyle() argument
716 Paint* obj = reinterpret_cast<Paint*>(objHandle); in getStyle()
720 static void setStyle(jlong objHandle, jint styleHandle) { in setStyle() argument
721 Paint* obj = reinterpret_cast<Paint*>(objHandle); in setStyle()
757 static jint getStrokeCap(jlong objHandle) { in getStrokeCap() argument
758 Paint* obj = reinterpret_cast<Paint*>(objHandle); in getStrokeCap()
[all …]
DPaintFilter.cpp52 static void finalizer(JNIEnv* env, jobject clazz, jlong objHandle) { in finalizer() argument
53 PaintFilter* obj = reinterpret_cast<PaintFilter*>(objHandle); in finalizer()