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

/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(int native_object) { argument
98 if (native_object > 0) {
99 T delegate = mDelegates.get(native_object);
104 native_object);
120 int 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(int native_object) argument
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DMatrix_Delegate.java196 /*package*/ static boolean native_isIdentity(int native_object) { argument
197 Matrix_Delegate d = sManager.getDelegate(native_object);
206 /*package*/ static boolean native_rectStaysRect(int native_object) { argument
207 Matrix_Delegate d = sManager.getDelegate(native_object);
216 /*package*/ static void native_reset(int native_object) { argument
217 Matrix_Delegate d = sManager.getDelegate(native_object);
226 /*package*/ static void native_set(int native_object, int other) { argument
227 Matrix_Delegate d = sManager.getDelegate(native_object);
241 /*package*/ static void native_setTranslate(int native_object, float dx, float dy) { argument
242 Matrix_Delegate d = sManager.getDelegate(native_object);
251 native_setScale(int native_object, float sx, float sy, float px, float py) argument
262 native_setScale(int native_object, float sx, float sy) argument
280 native_setRotate(int native_object, float degrees, float px, float py) argument
290 native_setRotate(int native_object, float degrees) argument
300 native_setSinCos(int native_object, float sinValue, float cosValue, float px, float py) argument
319 native_setSinCos(int native_object, float sinValue, float cosValue) argument
329 native_setSkew(int native_object, float kx, float ky, float px, float py) argument
340 native_setSkew(int native_object, float kx, float ky) argument
358 native_setConcat(int native_object, int a, int b) argument
386 native_preTranslate(int native_object, float dx, float dy) argument
397 native_preScale(int native_object, float sx, float sy, float px, float py) argument
409 native_preScale(int native_object, float sx, float sy) argument
420 native_preRotate(int native_object, float degrees, float px, float py) argument
432 native_preRotate(int native_object, float degrees) argument
447 native_preSkew(int native_object, float kx, float ky, float px, float py) argument
459 native_preSkew(int native_object, float kx, float ky) argument
470 native_preConcat(int native_object, int other_matrix) argument
486 native_postTranslate(int native_object, float dx, float dy) argument
497 native_postScale(int native_object, float sx, float sy, float px, float py) argument
509 native_postScale(int native_object, float sx, float sy) argument
520 native_postRotate(int native_object, float degrees, float px, float py) argument
532 native_postRotate(int native_object, float degrees) argument
543 native_postSkew(int native_object, float kx, float ky, float px, float py) argument
555 native_postSkew(int native_object, float kx, float ky) argument
566 native_postConcat(int native_object, int other_matrix) argument
582 native_setRectToRect(int native_object, RectF src, RectF dst, int stf) argument
647 native_setPolyToPoly(int native_object, float[] src, int srcIndex, float[] dst, int dstIndex, int pointCount) argument
657 native_invert(int native_object, int inverse) argument
685 native_mapPoints(int native_object, float[] dst, int dstIndex, float[] src, int srcIndex, int ptCount, boolean isPts) argument
700 native_mapRect(int native_object, RectF dst, RectF src) argument
710 native_mapRadius(int native_object, float radius) argument
726 native_getValues(int native_object, float[] values) argument
736 native_setValues(int native_object, float[] values) argument
[all...]
H A DPaint_Delegate.java661 /*package*/ static void native_reset(int native_object) { argument
663 Paint_Delegate delegate = sManager.getDelegate(native_object);
689 /*package*/ static int native_getStyle(int native_object) { argument
691 Paint_Delegate delegate = sManager.getDelegate(native_object);
700 /*package*/ static void native_setStyle(int native_object, int style) { argument
702 Paint_Delegate delegate = sManager.getDelegate(native_object);
711 /*package*/ static int native_getStrokeCap(int native_object) { argument
713 Paint_Delegate delegate = sManager.getDelegate(native_object);
722 /*package*/ static void native_setStrokeCap(int native_object, int cap) { argument
724 Paint_Delegate delegate = sManager.getDelegate(native_object);
733 native_getStrokeJoin(int native_object) argument
744 native_setStrokeJoin(int native_object, int join) argument
755 native_getFillPath(int native_object, int src, int dst) argument
781 native_setShader(int native_object, int shader) argument
794 native_setColorFilter(int native_object, int filter) argument
813 native_setXfermode(int native_object, int xfermode) argument
826 native_setPathEffect(int native_object, int effect) argument
839 native_setMaskFilter(int native_object, int maskfilter) argument
858 native_setTypeface(int native_object, int typeface) argument
871 native_setRasterizer(int native_object, int rasterizer) argument
890 native_getTextAlign(int native_object) argument
901 native_setTextAlign(int native_object, int align) argument
912 native_setTextLocale(int native_object, String locale) argument
923 native_getTextWidths(int native_object, char[] text, int index, int count, float[] widths) argument
965 native_getTextWidths(int native_object, String text, int start, int end, float[] widths) argument
971 native_getTextGlyphs(int native_object, String text, int start, int end, int contextStart, int contextEnd, int flags, char[] glyphs) argument
978 native_getTextRunAdvances(int native_object, char[] text, int index, int count, int contextIndex, int contextCount, int flags, float[] advances, int advancesIndex, int reserved) argument
1022 native_getTextRunAdvances(int native_object, String text, int start, int end, int contextStart, int contextEnd, int flags, float[] advances, int advancesIndex, int reserved) argument
1035 native_getTextRunCursor(Paint thisPaint, int native_object, char[] text, int contextStart, int contextLength, int flags, int offset, int cursorOpt) argument
1044 native_getTextRunCursor(Paint thisPaint, int native_object, String text, int contextStart, int contextEnd, int flags, int offset, int cursorOpt) argument
1053 native_getTextPath(int native_object, int bidiFlags, char[] text, int index, int count, float x, float y, int path) argument
1061 native_getTextPath(int native_object, int bidiFlags, String text, int start, int end, float x, float y, int path) argument
[all...]
/frameworks/base/graphics/java/android/graphics/
H A DMatrix.java795 private static native boolean native_isIdentity(int native_object); argument
796 private static native boolean native_rectStaysRect(int native_object); argument
797 private static native void native_reset(int native_object); argument
798 private static native void native_set(int native_object, int other); argument
799 private static native void native_setTranslate(int native_object, argument
801 private static native void native_setScale(int native_object, argument
803 private static native void native_setScale(int native_object, argument
805 private static native void native_setRotate(int native_object, argument
807 private static native void native_setRotate(int native_object, argument
809 private static native void native_setSinCos(int native_object, argument
811 native_setSinCos(int native_object, float sinValue, float cosValue) argument
813 native_setSkew(int native_object, float kx, float ky, float px, float py) argument
815 native_setSkew(int native_object, float kx, float ky) argument
817 native_setConcat(int native_object, int a, int b) argument
819 native_preTranslate(int native_object, float dx, float dy) argument
821 native_preScale(int native_object, float sx, float sy, float px, float py) argument
823 native_preScale(int native_object, float sx, float sy) argument
825 native_preRotate(int native_object, float degrees, float px, float py) argument
827 native_preRotate(int native_object, float degrees) argument
829 native_preSkew(int native_object, float kx, float ky, float px, float py) argument
831 native_preSkew(int native_object, float kx, float ky) argument
833 native_preConcat(int native_object, int other_matrix) argument
835 native_postTranslate(int native_object, float dx, float dy) argument
837 native_postScale(int native_object, float sx, float sy, float px, float py) argument
839 native_postScale(int native_object, float sx, float sy) argument
841 native_postRotate(int native_object, float degrees, float px, float py) argument
843 native_postRotate(int native_object, float degrees) argument
845 native_postSkew(int native_object, float kx, float ky, float px, float py) argument
847 native_postSkew(int native_object, float kx, float ky) argument
849 native_postConcat(int native_object, int other_matrix) argument
851 native_setRectToRect(int native_object, RectF src, RectF dst, int stf) argument
853 native_setPolyToPoly(int native_object, float[] src, int srcIndex, float[] dst, int dstIndex, int pointCount) argument
855 native_invert(int native_object, int inverse) argument
856 native_mapPoints(int native_object, float[] dst, int dstIndex, float[] src, int srcIndex, int ptCount, boolean isPts) argument
859 native_mapRect(int native_object, RectF dst, RectF src) argument
861 native_mapRadius(int native_object, float radius) argument
863 native_getValues(int native_object, float[] values) argument
865 native_setValues(int native_object, float[] values) argument
[all...]
H A DPaint.java2187 private static native void native_reset(int native_object); argument
2189 private static native int native_getStyle(int native_object); argument
2190 private static native void native_setStyle(int native_object, int style); argument
2191 private static native int native_getStrokeCap(int native_object); argument
2192 private static native void native_setStrokeCap(int native_object, int cap); argument
2193 private static native int native_getStrokeJoin(int native_object); argument
2194 private static native void native_setStrokeJoin(int native_object, argument
2196 private static native boolean native_getFillPath(int native_object, argument
2198 private static native int native_setShader(int native_object, int shader); argument
2199 private static native int native_setColorFilter(int native_object, argument
2201 native_setXfermode(int native_object, int xfermode) argument
2203 native_setPathEffect(int native_object, int effect) argument
2205 native_setMaskFilter(int native_object, int maskfilter) argument
2207 native_setTypeface(int native_object, int typeface) argument
2209 native_setRasterizer(int native_object, int rasterizer) argument
2212 native_getTextAlign(int native_object) argument
2213 native_setTextAlign(int native_object, int align) argument
2216 native_setTextLocale(int native_object, String locale) argument
2219 native_getTextWidths(int native_object, char[] text, int index, int count, float[] widths) argument
2221 native_getTextWidths(int native_object, String text, int start, int end, float[] widths) argument
2224 native_getTextGlyphs(int native_object, String text, int start, int end, int contextStart, int contextEnd, int flags, char[] glyphs) argument
2228 native_getTextRunAdvances(int native_object, char[] text, int index, int count, int contextIndex, int contextCount, int flags, float[] advances, int advancesIndex, int reserved) argument
2231 native_getTextRunAdvances(int native_object, String text, int start, int end, int contextStart, int contextEnd, int flags, float[] advances, int advancesIndex, int reserved) argument
2235 native_getTextRunCursor(int native_object, char[] text, int contextStart, int contextLength, int flags, int offset, int cursorOpt) argument
2237 native_getTextRunCursor(int native_object, String text, int contextStart, int contextEnd, int flags, int offset, int cursorOpt) argument
2240 native_getTextPath(int native_object, int bidiFlags, char[] text, int index, int count, float x, float y, int path) argument
2242 native_getTextPath(int native_object, int bidiFlags, String text, int start, int end, float x, float y, int path) argument
[all...]

Completed in 699 milliseconds