Home
last modified time | relevance | path

Searched defs:groupPtr (Results 1 – 5 of 5) sorted by relevance

/aosp_15_r20/external/robolectric/shadows/framework/src/main/java/org/robolectric/shadows/
H A DShadowNativeVectorDrawable.java47 protected static boolean nGetGroupProperties(long groupPtr, float[] properties, int length) { in nGetGroupProperties()
160 protected static long nCreateGroup(long groupPtr) { in nCreateGroup()
167 long groupPtr, in nUpdateGroupProperties()
180 protected static void nAddChild(long groupPtr, long nodePtr) { in nAddChild()
185 protected static float nGetRotation(long groupPtr) { in nGetRotation()
190 protected static void nSetRotation(long groupPtr, float rotation) { in nSetRotation()
195 protected static float nGetPivotX(long groupPtr) { in nGetPivotX()
200 protected static void nSetPivotX(long groupPtr, float pivotX) { in nSetPivotX()
205 protected static float nGetPivotY(long groupPtr) { in nGetPivotY()
210 protected static void nSetPivotY(long groupPtr, float pivotY) { in nSetPivotY()
[all …]
H A DShadowVectorDrawable.java178 private static Group getGroup(long groupPtr) { in getGroup()
188 protected static long nCreateGroup(long groupPtr) { in nCreateGroup()
196 protected static boolean nGetGroupProperties(long groupPtr, float[] properties, int length) { in nGetGroupProperties()
211 long groupPtr, in nUpdateGroupProperties()
/aosp_15_r20/external/robolectric/nativeruntime/src/main/java/org/robolectric/nativeruntime/
H A DVectorDrawableNatives.java25 public static native boolean nGetGroupProperties(long groupPtr, float[] properties, int length); in nGetGroupProperties()
73 public static native long nCreateGroup(long groupPtr); in nCreateGroup()
76 long groupPtr, in nUpdateGroupProperties()
85 public static native void nAddChild(long groupPtr, long nodePtr); in nAddChild()
87 public static native float nGetRotation(long groupPtr); in nGetRotation()
89 public static native void nSetRotation(long groupPtr, float rotation); in nSetRotation()
91 public static native float nGetPivotX(long groupPtr); in nGetPivotX()
93 public static native void nSetPivotX(long groupPtr, float pivotX); in nSetPivotX()
95 public static native float nGetPivotY(long groupPtr); in nGetPivotY()
97 public static native void nSetPivotY(long groupPtr, float pivotY); in nSetPivotY()
[all …]
/aosp_15_r20/frameworks/base/libs/hwui/jni/
H A Dandroid_graphics_drawable_VectorDrawable.cpp31 static jlong createTree(JNIEnv*, jobject, jlong groupPtr) { in createTree()
37 static jlong createTreeFromCopy(JNIEnv*, jobject, jlong treePtr, jlong groupPtr) { in createTreeFromCopy()
86 static void addChild(JNIEnv*, jobject, jlong groupPtr, jlong childPtr) { in addChild()
166 static jboolean getGroupProperties(JNIEnv* env, jobject, jlong groupPtr, in getGroupProperties()
175 static void updateGroupProperties(JNIEnv*, jobject, jlong groupPtr, jfloat rotate, jfloat pivotX, in updateGroupProperties()
200 static jfloat getRotation(JNIEnv*, jobject, jlong groupPtr) { in getRotation()
205 static void setRotation(JNIEnv*, jobject, jlong groupPtr, jfloat rotation) { in setRotation()
210 static jfloat getPivotX(JNIEnv*, jobject, jlong groupPtr) { in getPivotX()
215 static void setPivotX(JNIEnv*, jobject, jlong groupPtr, jfloat pivotX) { in setPivotX()
220 static jfloat getPivotY(JNIEnv*, jobject, jlong groupPtr) { in getPivotY()
[all …]
/aosp_15_r20/frameworks/base/graphics/java/android/graphics/drawable/
H A DVectorDrawable.java2273 private static native boolean nGetGroupProperties(long groupPtr, float[] properties, in nGetGroupProperties()
2318 private static native long nCreateGroup(long groupPtr); in nCreateGroup()
2320 private static native void nUpdateGroupProperties(long groupPtr, float rotate, float pivotX, in nUpdateGroupProperties()
2324 private static native void nAddChild(long groupPtr, long nodePtr); in nAddChild()
2334 private static native float nGetRotation(long groupPtr); in nGetRotation()
2336 private static native void nSetRotation(long groupPtr, float rotation); in nSetRotation()
2338 private static native float nGetPivotX(long groupPtr); in nGetPivotX()
2340 private static native void nSetPivotX(long groupPtr, float pivotX); in nSetPivotX()
2342 private static native float nGetPivotY(long groupPtr); in nGetPivotY()
2344 private static native void nSetPivotY(long groupPtr, float pivotY); in nSetPivotY()
[all …]