Searched refs:native_object (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
D | Matrix_Delegate.java | 196 /*package*/ static boolean native_isIdentity(int native_object) { in native_isIdentity() argument 197 Matrix_Delegate d = sManager.getDelegate(native_object); in native_isIdentity() 206 /*package*/ static boolean native_rectStaysRect(int native_object) { in native_rectStaysRect() argument 207 Matrix_Delegate d = sManager.getDelegate(native_object); in native_rectStaysRect() 216 /*package*/ static void native_reset(int native_object) { in native_reset() argument 217 Matrix_Delegate d = sManager.getDelegate(native_object); in native_reset() 226 /*package*/ static void native_set(int native_object, int other) { in native_set() argument 227 Matrix_Delegate d = sManager.getDelegate(native_object); in native_set() 241 /*package*/ static void native_setTranslate(int native_object, float dx, float dy) { in native_setTranslate() argument 242 Matrix_Delegate d = sManager.getDelegate(native_object); in native_setTranslate() [all …]
|
D | Paint_Delegate.java | 662 /*package*/ static void native_reset(int native_object) { in native_reset() argument 664 Paint_Delegate delegate = sManager.getDelegate(native_object); in native_reset() 690 /*package*/ static int native_getStyle(int native_object) { in native_getStyle() argument 692 Paint_Delegate delegate = sManager.getDelegate(native_object); in native_getStyle() 701 /*package*/ static void native_setStyle(int native_object, int style) { in native_setStyle() argument 703 Paint_Delegate delegate = sManager.getDelegate(native_object); in native_setStyle() 712 /*package*/ static int native_getStrokeCap(int native_object) { in native_getStrokeCap() argument 714 Paint_Delegate delegate = sManager.getDelegate(native_object); in native_getStrokeCap() 723 /*package*/ static void native_setStrokeCap(int native_object, int cap) { in native_setStrokeCap() argument 725 Paint_Delegate delegate = sManager.getDelegate(native_object); in native_setStrokeCap() [all …]
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/ |
D | DelegateManager.java | 97 public T getDelegate(int native_object) { in getDelegate() argument 98 if (native_object > 0) { in getDelegate() 99 T delegate = mDelegates.get(native_object); in getDelegate() 104 native_object); in getDelegate() 120 int native_object = ++mDelegateCounter; in addNewDelegate() local 121 mDelegates.put(native_object, newDelegate); in addNewDelegate() 126 System.out.println("New " + mClass.getSimpleName() + " with int " + native_object); in addNewDelegate() 129 return native_object; in addNewDelegate() 136 public void removeJavaReferenceFor(int native_object) { in removeJavaReferenceFor() argument 137 T delegate = getDelegate(native_object); in removeJavaReferenceFor() [all …]
|
/frameworks/base/graphics/java/android/graphics/ |
D | Matrix.java | 795 private static native boolean native_isIdentity(int native_object); in native_isIdentity() argument 796 private static native boolean native_rectStaysRect(int native_object); in native_rectStaysRect() argument 797 private static native void native_reset(int native_object); in native_reset() argument 798 private static native void native_set(int native_object, int other); in native_set() argument 799 private static native void native_setTranslate(int native_object, in native_setTranslate() argument 801 private static native void native_setScale(int native_object, in native_setScale() argument 803 private static native void native_setScale(int native_object, in native_setScale() argument 805 private static native void native_setRotate(int native_object, in native_setRotate() argument 807 private static native void native_setRotate(int native_object, in native_setRotate() argument 809 private static native void native_setSinCos(int native_object, in native_setSinCos() argument [all …]
|
D | Paint.java | 2110 private static native void native_reset(int native_object); in native_reset() argument 2112 private static native int native_getStyle(int native_object); in native_getStyle() argument 2113 private static native void native_setStyle(int native_object, int style); in native_setStyle() argument 2114 private static native int native_getStrokeCap(int native_object); in native_getStrokeCap() argument 2115 private static native void native_setStrokeCap(int native_object, int cap); in native_setStrokeCap() argument 2116 private static native int native_getStrokeJoin(int native_object); in native_getStrokeJoin() argument 2117 private static native void native_setStrokeJoin(int native_object, in native_setStrokeJoin() argument 2119 private static native boolean native_getFillPath(int native_object, in native_getFillPath() argument 2121 private static native int native_setShader(int native_object, int shader); in native_setShader() argument 2122 private static native int native_setColorFilter(int native_object, in native_setColorFilter() argument [all …]
|