Home
last modified time | relevance | path

Searched defs:native_object (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/graphics/java/android/graphics/
DMatrix.java795 private static native boolean native_isIdentity(int native_object); in native_isIdentity()
796 private static native boolean native_rectStaysRect(int native_object); in native_rectStaysRect()
797 private static native void native_reset(int native_object); in native_reset()
798 private static native void native_set(int native_object, int other); in native_set()
799 private static native void native_setTranslate(int native_object, in native_setTranslate()
801 private static native void native_setScale(int native_object, in native_setScale()
803 private static native void native_setScale(int native_object, in native_setScale()
805 private static native void native_setRotate(int native_object, in native_setRotate()
807 private static native void native_setRotate(int native_object, in native_setRotate()
809 private static native void native_setSinCos(int native_object, in native_setSinCos()
[all …]
DPaint.java2110 private static native void native_reset(int native_object); in native_reset()
2112 private static native int native_getStyle(int native_object); in native_getStyle()
2113 private static native void native_setStyle(int native_object, int style); in native_setStyle()
2114 private static native int native_getStrokeCap(int native_object); in native_getStrokeCap()
2115 private static native void native_setStrokeCap(int native_object, int cap); in native_setStrokeCap()
2116 private static native int native_getStrokeJoin(int native_object); in native_getStrokeJoin()
2117 private static native void native_setStrokeJoin(int native_object, in native_setStrokeJoin()
2119 private static native boolean native_getFillPath(int native_object, in native_getFillPath()
2121 private static native int native_setShader(int native_object, int shader); in native_setShader()
2122 private static native int native_setColorFilter(int native_object, in native_setColorFilter()
[all …]
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
DMatrix_Delegate.java196 /*package*/ static boolean native_isIdentity(int native_object) { in native_isIdentity()
206 /*package*/ static boolean native_rectStaysRect(int native_object) { in native_rectStaysRect()
216 /*package*/ static void native_reset(int native_object) { in native_reset()
226 /*package*/ static void native_set(int native_object, int other) { in native_set()
241 /*package*/ static void native_setTranslate(int native_object, float dx, float dy) { in native_setTranslate()
251 /*package*/ static void native_setScale(int native_object, float sx, float sy, in native_setScale()
262 /*package*/ static void native_setScale(int native_object, float sx, float sy) { in native_setScale()
280 /*package*/ static void native_setRotate(int native_object, float degrees, float px, float py) { in native_setRotate()
290 /*package*/ static void native_setRotate(int native_object, float degrees) { in native_setRotate()
300 /*package*/ static void native_setSinCos(int native_object, float sinValue, float cosValue, in native_setSinCos()
[all …]
DPaint_Delegate.java662 /*package*/ static void native_reset(int native_object) { in native_reset()
690 /*package*/ static int native_getStyle(int native_object) { in native_getStyle()
701 /*package*/ static void native_setStyle(int native_object, int style) { in native_setStyle()
712 /*package*/ static int native_getStrokeCap(int native_object) { in native_getStrokeCap()
723 /*package*/ static void native_setStrokeCap(int native_object, int cap) { in native_setStrokeCap()
734 /*package*/ static int native_getStrokeJoin(int native_object) { in native_getStrokeJoin()
745 /*package*/ static void native_setStrokeJoin(int native_object, int join) { in native_setStrokeJoin()
756 /*package*/ static boolean native_getFillPath(int native_object, int src, int dst) { in native_getFillPath()
782 /*package*/ static int native_setShader(int native_object, int shader) { in native_setShader()
795 /*package*/ static int native_setColorFilter(int native_object, int filter) { in native_setColorFilter()
[all …]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
DDelegateManager.java97 public T getDelegate(int native_object) { in getDelegate()
120 int native_object = ++mDelegateCounter; in addNewDelegate() local
136 public void removeJavaReferenceFor(int native_object) { in removeJavaReferenceFor()