Searched defs:native_object (Results 1 - 5 of 5) sorted by path

/frameworks/base/graphics/java/android/graphics/
H A DMatrix.java840 private static native boolean native_isIdentity(long native_object); argument
841 private static native boolean native_isAffine(long native_object); argument
842 private static native boolean native_rectStaysRect(long native_object); argument
843 private static native void native_reset(long native_object); argument
844 private static native void native_set(long native_object, argument
846 private static native void native_setTranslate(long native_object, argument
848 private static native void native_setScale(long native_object, argument
850 private static native void native_setScale(long native_object, argument
852 private static native void native_setRotate(long native_object, argument
854 private static native void native_setRotate(long native_object, argument
856 native_setSinCos(long native_object, float sinValue, float cosValue, float px, float py) argument
858 native_setSinCos(long native_object, float sinValue, float cosValue) argument
860 native_setSkew(long native_object, float kx, float ky, float px, float py) argument
862 native_setSkew(long native_object, float kx, float ky) argument
864 native_setConcat(long native_object, long native_a, long native_b) argument
867 native_preTranslate(long native_object, float dx, float dy) argument
869 native_preScale(long native_object, float sx, float sy, float px, float py) argument
871 native_preScale(long native_object, float sx, float sy) argument
873 native_preRotate(long native_object, float degrees, float px, float py) argument
875 native_preRotate(long native_object, float degrees) argument
877 native_preSkew(long native_object, float kx, float ky, float px, float py) argument
879 native_preSkew(long native_object, float kx, float ky) argument
881 native_preConcat(long native_object, long native_other_matrix) argument
883 native_postTranslate(long native_object, float dx, float dy) argument
885 native_postScale(long native_object, float sx, float sy, float px, float py) argument
887 native_postScale(long native_object, float sx, float sy) argument
889 native_postRotate(long native_object, float degrees, float px, float py) argument
891 native_postRotate(long native_object, float degrees) argument
893 native_postSkew(long native_object, float kx, float ky, float px, float py) argument
895 native_postSkew(long native_object, float kx, float ky) argument
897 native_postConcat(long native_object, long native_other_matrix) argument
899 native_setRectToRect(long native_object, RectF src, RectF dst, int stf) argument
901 native_setPolyToPoly(long native_object, float[] src, int srcIndex, float[] dst, int dstIndex, int pointCount) argument
903 native_invert(long native_object, long native_inverse) argument
905 native_mapPoints(long native_object, float[] dst, int dstIndex, float[] src, int srcIndex, int ptCount, boolean isPts) argument
908 native_mapRect(long native_object, RectF dst, RectF src) argument
910 native_mapRadius(long native_object, float radius) argument
912 native_getValues(long native_object, float[] values) argument
914 native_setValues(long native_object, float[] values) argument
[all...]
H A DPaint.java1608 private static native int native_breakText(long native_object, long native_typeface, argument
1700 private static native int native_breakText(long native_object, long native_typeface, argument
2229 private static native void native_reset(long native_object); argument
2231 private static native int native_getStyle(long native_object); argument
2232 private static native void native_setStyle(long native_object, int style); argument
2233 private static native int native_getStrokeCap(long native_object); argument
2234 private static native void native_setStrokeCap(long native_object, int cap); argument
2235 private static native int native_getStrokeJoin(long native_object); argument
2236 private static native void native_setStrokeJoin(long native_object, argument
2238 private static native boolean native_getFillPath(long native_object, argument
2240 native_setShader(long native_object, long shader) argument
2241 native_setColorFilter(long native_object, long filter) argument
2243 native_setXfermode(long native_object, long xfermode) argument
2245 native_setPathEffect(long native_object, long effect) argument
2247 native_setMaskFilter(long native_object, long maskfilter) argument
2249 native_setTypeface(long native_object, long typeface) argument
2251 native_setRasterizer(long native_object, long rasterizer) argument
2254 native_getTextAlign(long native_object) argument
2255 native_setTextAlign(long native_object, int align) argument
2258 native_setTextLocale(long native_object, String locale) argument
2261 native_getTextWidths(long native_object, long native_typeface, char[] text, int index, int count, int bidiFlags, float[] widths) argument
2263 native_getTextWidths(long native_object, long native_typeface, String text, int start, int end, int bidiFlags, float[] widths) argument
2266 native_getTextGlyphs(long native_object, String text, int start, int end, int contextStart, int contextEnd, int flags, char[] glyphs) argument
2270 native_getTextRunAdvances(long native_object, long native_typeface, char[] text, int index, int count, int contextIndex, int contextCount, boolean isRtl, float[] advances, int advancesIndex) argument
2273 native_getTextRunAdvances(long native_object, long native_typeface, String text, int start, int end, int contextStart, int contextEnd, boolean isRtl, float[] advances, int advancesIndex) argument
2277 native_getTextRunCursor(long native_object, char[] text, int contextStart, int contextLength, int dir, int offset, int cursorOpt) argument
2279 native_getTextRunCursor(long native_object, String text, int contextStart, int contextEnd, int dir, int offset, int cursorOpt) argument
2282 native_getTextPath(long native_object, long native_typeface, int bidiFlags, char[] text, int index, int count, float x, float y, long path) argument
2284 native_getTextPath(long native_object, long native_typeface, int bidiFlags, String text, int start, int end, float x, float y, long path) argument
2292 native_setShadowLayer(long native_object, float radius, float dx, float dy, int color) argument
2294 native_hasShadowLayer(long native_object) argument
2296 native_getLetterSpacing(long native_object) argument
2297 native_setLetterSpacing(long native_object, float letterSpacing) argument
2299 native_setFontFeatureSettings(long native_object, String settings) argument
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DMatrix_Delegate.java196 /*package*/ static boolean native_isIdentity(long native_object) { argument
197 Matrix_Delegate d = sManager.getDelegate(native_object);
206 /*package*/ static boolean native_isAffine(long native_object) { argument
207 Matrix_Delegate d = sManager.getDelegate(native_object);
216 /*package*/ static boolean native_rectStaysRect(long native_object) { argument
217 Matrix_Delegate d = sManager.getDelegate(native_object);
226 /*package*/ static void native_reset(long native_object) { argument
227 Matrix_Delegate d = sManager.getDelegate(native_object);
236 /*package*/ static void native_set(long native_object, long other) { argument
237 Matrix_Delegate d = sManager.getDelegate(native_object);
251 native_setTranslate(long native_object, float dx, float dy) argument
261 native_setScale(long native_object, float sx, float sy, float px, float py) argument
272 native_setScale(long native_object, float sx, float sy) argument
290 native_setRotate(long native_object, float degrees, float px, float py) argument
300 native_setRotate(long native_object, float degrees) argument
310 native_setSinCos(long native_object, float sinValue, float cosValue, float px, float py) argument
329 native_setSinCos(long native_object, float sinValue, float cosValue) argument
339 native_setSkew(long native_object, float kx, float ky, float px, float py) argument
350 native_setSkew(long native_object, float kx, float ky) argument
368 native_setConcat(long native_object, long a, long b) argument
386 native_preTranslate(long native_object, float dx, float dy) argument
394 native_preScale(long native_object, float sx, float sy, float px, float py) argument
403 native_preScale(long native_object, float sx, float sy) argument
411 native_preRotate(long native_object, float degrees, float px, float py) argument
420 native_preRotate(long native_object, float degrees) argument
433 native_preSkew(long native_object, float kx, float ky, float px, float py) argument
442 native_preSkew(long native_object, float kx, float ky) argument
450 native_preConcat(long native_object, long other_matrix) argument
459 native_postTranslate(long native_object, float dx, float dy) argument
467 native_postScale(long native_object, float sx, float sy, float px, float py) argument
476 native_postScale(long native_object, float sx, float sy) argument
484 native_postRotate(long native_object, float degrees, float px, float py) argument
493 native_postRotate(long native_object, float degrees) argument
501 native_postSkew(long native_object, float kx, float ky, float px, float py) argument
510 native_postSkew(long native_object, float kx, float ky) argument
518 native_postConcat(long native_object, long other_matrix) argument
527 native_setRectToRect(long native_object, RectF src, RectF dst, int stf) argument
592 native_setPolyToPoly(long native_object, float[] src, int srcIndex, float[] dst, int dstIndex, int pointCount) argument
602 native_invert(long native_object, long inverse) argument
630 native_mapPoints(long native_object, float[] dst, int dstIndex, float[] src, int srcIndex, int ptCount, boolean isPts) argument
645 native_mapRect(long native_object, RectF dst, RectF src) argument
655 native_mapRadius(long native_object, float radius) argument
671 native_getValues(long native_object, float[] values) argument
681 native_setValues(long native_object, float[] values) argument
[all...]
H A DPaint_Delegate.java691 /*package*/ static void native_reset(long native_object) { argument
693 Paint_Delegate delegate = sManager.getDelegate(native_object);
719 /*package*/ static int native_getStyle(long native_object) { argument
721 Paint_Delegate delegate = sManager.getDelegate(native_object);
730 /*package*/ static void native_setStyle(long native_object, int style) { argument
732 Paint_Delegate delegate = sManager.getDelegate(native_object);
741 /*package*/ static int native_getStrokeCap(long native_object) { argument
743 Paint_Delegate delegate = sManager.getDelegate(native_object);
752 /*package*/ static void native_setStrokeCap(long native_object, int cap) { argument
754 Paint_Delegate delegate = sManager.getDelegate(native_object);
763 native_getStrokeJoin(long native_object) argument
774 native_setStrokeJoin(long native_object, int join) argument
785 native_getFillPath(long native_object, long src, long dst) argument
811 native_setShader(long native_object, long shader) argument
824 native_setColorFilter(long native_object, long filter) argument
843 native_setXfermode(long native_object, long xfermode) argument
856 native_setPathEffect(long native_object, long effect) argument
869 native_setMaskFilter(long native_object, long maskfilter) argument
888 native_setTypeface(long native_object, long typeface) argument
902 native_setRasterizer(long native_object, long rasterizer) argument
921 native_getTextAlign(long native_object) argument
932 native_setTextAlign(long native_object, int align) argument
943 native_setTextLocale(long native_object, String locale) argument
954 native_getTextWidths(long native_object, long native_typeface, char[] text, int index, int count, int bidiFlags, float[] widths) argument
978 native_getTextWidths(long native_object, long native_typeface, String text, int start, int end, int bidiFlags, float[] widths) argument
985 native_getTextGlyphs(long native_object, String text, int start, int end, int contextStart, int contextEnd, int flags, char[] glyphs) argument
992 native_getTextRunAdvances(long native_object, long native_typeface, char[] text, int index, int count, int contextIndex, int contextCount, boolean isRtl, float[] advances, int advancesIndex) argument
1015 native_getTextRunAdvances(long native_object, long native_typeface, String text, int start, int end, int contextStart, int contextEnd, boolean isRtl, float[] advances, int advancesIndex) argument
1028 native_getTextRunCursor(Paint thisPaint, long native_object, char[] text, int contextStart, int contextLength, int flags, int offset, int cursorOpt) argument
1037 native_getTextRunCursor(Paint thisPaint, long native_object, String text, int contextStart, int contextEnd, int flags, int offset, int cursorOpt) argument
1046 native_getTextPath(long native_object, long native_typeface, int bidiFlags, char[] text, int index, int count, float x, float y, long path) argument
1054 native_getTextPath(long native_object, long native_typeface, int bidiFlags, String text, int start, int end, float x, float y, long path) argument
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DDelegateManager.java94 * @param native_object the native int.
97 public T getDelegate(long native_object) { argument
98 if (native_object > 0) {
99 T delegate = mDelegates.get(native_object);
104 native_object);
120 long native_object = ++mDelegateCounter;
121 mDelegates.put(native_object, newDelegate);
126 System.out.println("New " + mClass.getSimpleName() + " with int " + native_object);
129 return native_object;
134 * @param native_object th
136 removeJavaReferenceFor(long native_object) argument
[all...]

Completed in 211 milliseconds