Lines Matching defs:native_object

196     /*package*/ static boolean native_isIdentity(int native_object) {
197 Matrix_Delegate d = sManager.getDelegate(native_object);
206 /*package*/ static boolean native_rectStaysRect(int native_object) {
207 Matrix_Delegate d = sManager.getDelegate(native_object);
216 /*package*/ static void native_reset(int native_object) {
217 Matrix_Delegate d = sManager.getDelegate(native_object);
226 /*package*/ static void native_set(int native_object, int other) {
227 Matrix_Delegate d = sManager.getDelegate(native_object);
241 /*package*/ static void native_setTranslate(int native_object, float dx, float dy) {
242 Matrix_Delegate d = sManager.getDelegate(native_object);
251 /*package*/ static void native_setScale(int native_object, float sx, float sy,
253 Matrix_Delegate d = sManager.getDelegate(native_object);
262 /*package*/ static void native_setScale(int native_object, float sx, float sy) {
263 Matrix_Delegate d = sManager.getDelegate(native_object);
280 /*package*/ static void native_setRotate(int native_object, float degrees, float px, float py) {
281 Matrix_Delegate d = sManager.getDelegate(native_object);
290 /*package*/ static void native_setRotate(int native_object, float degrees) {
291 Matrix_Delegate d = sManager.getDelegate(native_object);
300 /*package*/ static void native_setSinCos(int native_object, float sinValue, float cosValue,
302 Matrix_Delegate d = sManager.getDelegate(native_object);
319 /*package*/ static void native_setSinCos(int native_object, float sinValue, float cosValue) {
320 Matrix_Delegate d = sManager.getDelegate(native_object);
329 /*package*/ static void native_setSkew(int native_object, float kx, float ky,
331 Matrix_Delegate d = sManager.getDelegate(native_object);
340 /*package*/ static void native_setSkew(int native_object, float kx, float ky) {
341 Matrix_Delegate d = sManager.getDelegate(native_object);
358 /*package*/ static boolean native_setConcat(int native_object, int a, int b) {
359 if (a == native_object) {
360 return native_preConcat(native_object, b);
361 } else if (b == native_object) {
362 return native_postConcat(native_object, a);
365 Matrix_Delegate d = sManager.getDelegate(native_object);
386 /*package*/ static boolean native_preTranslate(int native_object, float dx, float dy) {
387 Matrix_Delegate d = sManager.getDelegate(native_object);
397 /*package*/ static boolean native_preScale(int native_object, float sx, float sy,
399 Matrix_Delegate d = sManager.getDelegate(native_object);
409 /*package*/ static boolean native_preScale(int native_object, float sx, float sy) {
410 Matrix_Delegate d = sManager.getDelegate(native_object);
420 /*package*/ static boolean native_preRotate(int native_object, float degrees,
422 Matrix_Delegate d = sManager.getDelegate(native_object);
432 /*package*/ static boolean native_preRotate(int native_object, float degrees) {
433 Matrix_Delegate d = sManager.getDelegate(native_object);
447 /*package*/ static boolean native_preSkew(int native_object, float kx, float ky,
449 Matrix_Delegate d = sManager.getDelegate(native_object);
459 /*package*/ static boolean native_preSkew(int native_object, float kx, float ky) {
460 Matrix_Delegate d = sManager.getDelegate(native_object);
470 /*package*/ static boolean native_preConcat(int native_object, int other_matrix) {
471 Matrix_Delegate d = sManager.getDelegate(native_object);
486 /*package*/ static boolean native_postTranslate(int native_object, float dx, float dy) {
487 Matrix_Delegate d = sManager.getDelegate(native_object);
497 /*package*/ static boolean native_postScale(int native_object, float sx, float sy,
499 Matrix_Delegate d = sManager.getDelegate(native_object);
509 /*package*/ static boolean native_postScale(int native_object, float sx, float sy) {
510 Matrix_Delegate d = sManager.getDelegate(native_object);
520 /*package*/ static boolean native_postRotate(int native_object, float degrees,
522 Matrix_Delegate d = sManager.getDelegate(native_object);
532 /*package*/ static boolean native_postRotate(int native_object, float degrees) {
533 Matrix_Delegate d = sManager.getDelegate(native_object);
543 /*package*/ static boolean native_postSkew(int native_object, float kx, float ky,
545 Matrix_Delegate d = sManager.getDelegate(native_object);
555 /*package*/ static boolean native_postSkew(int native_object, float kx, float ky) {
556 Matrix_Delegate d = sManager.getDelegate(native_object);
566 /*package*/ static boolean native_postConcat(int native_object, int other_matrix) {
567 Matrix_Delegate d = sManager.getDelegate(native_object);
582 /*package*/ static boolean native_setRectToRect(int native_object, RectF src,
584 Matrix_Delegate d = sManager.getDelegate(native_object);
647 /*package*/ static boolean native_setPolyToPoly(int native_object, float[] src, int srcIndex,
657 /*package*/ static boolean native_invert(int native_object, int inverse) {
658 Matrix_Delegate d = sManager.getDelegate(native_object);
685 /*package*/ static void native_mapPoints(int native_object, float[] dst, int dstIndex,
687 Matrix_Delegate d = sManager.getDelegate(native_object);
700 /*package*/ static boolean native_mapRect(int native_object, RectF dst, RectF src) {
701 Matrix_Delegate d = sManager.getDelegate(native_object);
710 /*package*/ static float native_mapRadius(int native_object, float radius) {
711 Matrix_Delegate d = sManager.getDelegate(native_object);
726 /*package*/ static void native_getValues(int native_object, float[] values) {
727 Matrix_Delegate d = sManager.getDelegate(native_object);
736 /*package*/ static void native_setValues(int native_object, float[] values) {
737 Matrix_Delegate d = sManager.getDelegate(native_object);