Home
last modified time | relevance | path

Searched refs:groupPtr (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/libs/hwui/jni/
Dandroid_graphics_drawable_VectorDrawable.cpp31 static jlong createTree(JNIEnv*, jobject, jlong groupPtr) { in createTree() argument
32 VectorDrawable::Group* rootGroup = reinterpret_cast<VectorDrawable::Group*>(groupPtr); in createTree()
37 static jlong createTreeFromCopy(JNIEnv*, jobject, jlong treePtr, jlong groupPtr) { in createTreeFromCopy() argument
38 VectorDrawable::Group* rootGroup = reinterpret_cast<VectorDrawable::Group*>(groupPtr); in createTreeFromCopy()
86 static void addChild(JNIEnv*, jobject, jlong groupPtr, jlong childPtr) { in addChild() argument
87 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); in addChild()
165 static jboolean getGroupProperties(JNIEnv* env, jobject, jlong groupPtr, in getGroupProperties() argument
167 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); in getGroupProperties()
174 static void updateGroupProperties(JNIEnv*, jobject, jlong groupPtr, jfloat rotate, jfloat pivotX, in updateGroupProperties() argument
176 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); in updateGroupProperties()
[all …]
/frameworks/layoutlib/bridge/src/android/graphics/drawable/
DVectorDrawable_Delegate.java265 static long nCreateGroup(long groupPtr) { in nCreateGroup() argument
266 VGroup_Delegate original = VNativeObject.getDelegate(groupPtr); in nCreateGroup()
277 static boolean nGetGroupProperties(long groupPtr, float[] propertiesData, in nGetGroupProperties() argument
279 VGroup_Delegate group = VNativeObject.getDelegate(groupPtr); in nGetGroupProperties()
294 static void nUpdateGroupProperties(long groupPtr, float rotate, float pivotX, in nUpdateGroupProperties() argument
296 VGroup_Delegate group = VNativeObject.getDelegate(groupPtr); in nUpdateGroupProperties()
308 static void nAddChild(long groupPtr, long nodePtr) { in nAddChild() argument
309 VGroup_Delegate group = VNativeObject.getDelegate(groupPtr); in nAddChild()
327 static float nGetRotation(long groupPtr) { in nGetRotation() argument
328 VGroup_Delegate group = VNativeObject.getDelegate(groupPtr); in nGetRotation()
[all …]
/frameworks/base/graphics/java/android/graphics/drawable/
DVectorDrawable.java2288 private static native boolean nGetGroupProperties(long groupPtr, float[] properties, in nGetGroupProperties() argument
2333 private static native long nCreateGroup(long groupPtr); in nCreateGroup() argument
2335 private static native void nUpdateGroupProperties(long groupPtr, float rotate, float pivotX, in nUpdateGroupProperties() argument
2339 private static native void nAddChild(long groupPtr, long nodePtr); in nAddChild() argument
2349 private static native float nGetRotation(long groupPtr); in nGetRotation() argument
2351 private static native void nSetRotation(long groupPtr, float rotation); in nSetRotation() argument
2353 private static native float nGetPivotX(long groupPtr); in nGetPivotX() argument
2355 private static native void nSetPivotX(long groupPtr, float pivotX); in nSetPivotX() argument
2357 private static native float nGetPivotY(long groupPtr); in nGetPivotY() argument
2359 private static native void nSetPivotY(long groupPtr, float pivotY); in nSetPivotY() argument
[all …]