Home
last modified time | relevance | path

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

/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
DMatrix_Delegate.java196 /*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 …]
DPaint_Delegate.java663 /*package*/ static void native_reset(int native_object) { in native_reset() argument
665 Paint_Delegate delegate = sManager.getDelegate(native_object); in native_reset()
691 /*package*/ static int native_getStyle(int native_object) { in native_getStyle() argument
693 Paint_Delegate delegate = sManager.getDelegate(native_object); in native_getStyle()
702 /*package*/ static void native_setStyle(int native_object, int style) { in native_setStyle() argument
704 Paint_Delegate delegate = sManager.getDelegate(native_object); in native_setStyle()
713 /*package*/ static int native_getStrokeCap(int native_object) { in native_getStrokeCap() argument
715 Paint_Delegate delegate = sManager.getDelegate(native_object); in native_getStrokeCap()
724 /*package*/ static void native_setStrokeCap(int native_object, int cap) { in native_setStrokeCap() argument
726 Paint_Delegate delegate = sManager.getDelegate(native_object); in native_setStrokeCap()
[all …]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
DDelegateManager.java97 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/
DMatrix.java808 private static native boolean native_isIdentity(int native_object); in native_isIdentity() argument
809 private static native boolean native_rectStaysRect(int native_object); in native_rectStaysRect() argument
810 private static native void native_reset(int native_object); in native_reset() argument
811 private static native void native_set(int native_object, int other); in native_set() argument
812 private static native void native_setTranslate(int native_object, in native_setTranslate() argument
814 private static native void native_setScale(int native_object, in native_setScale() argument
816 private static native void native_setScale(int native_object, in native_setScale() argument
818 private static native void native_setRotate(int native_object, in native_setRotate() argument
820 private static native void native_setRotate(int native_object, in native_setRotate() argument
822 private static native void native_setSinCos(int native_object, in native_setSinCos() argument
[all …]
DPaint.java2212 private static native void native_reset(int native_object); in native_reset() argument
2214 private static native int native_getStyle(int native_object); in native_getStyle() argument
2215 private static native void native_setStyle(int native_object, int style); in native_setStyle() argument
2216 private static native int native_getStrokeCap(int native_object); in native_getStrokeCap() argument
2217 private static native void native_setStrokeCap(int native_object, int cap); in native_setStrokeCap() argument
2218 private static native int native_getStrokeJoin(int native_object); in native_getStrokeJoin() argument
2219 private static native void native_setStrokeJoin(int native_object, in native_setStrokeJoin() argument
2221 private static native boolean native_getFillPath(int native_object, in native_getFillPath() argument
2223 private static native int native_setShader(int native_object, int shader); in native_setShader() argument
2224 private static native int native_setColorFilter(int native_object, in native_setColorFilter() argument
[all …]