Home
last modified time | relevance | path

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

/frameworks/base/core/jni/
Dandroid_graphics_drawable_VectorDrawable.cpp33 static jlong createTree(JNIEnv*, jobject, jlong groupPtr) { in createTree() argument
34 VectorDrawable::Group* rootGroup = reinterpret_cast<VectorDrawable::Group*>(groupPtr); in createTree()
39 static jlong createTreeFromCopy(JNIEnv*, jobject, jlong treePtr, jlong groupPtr) { in createTreeFromCopy() argument
40 VectorDrawable::Group* rootGroup = reinterpret_cast<VectorDrawable::Group*>(groupPtr); in createTreeFromCopy()
88 static void addChild(JNIEnv*, jobject, jlong groupPtr, jlong childPtr) { in addChild() argument
89 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); in addChild()
162 static jboolean getGroupProperties(JNIEnv* env, jobject, jlong groupPtr, in getGroupProperties() argument
164 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); in getGroupProperties()
171 static void updateGroupProperties(JNIEnv*, jobject, jlong groupPtr, jfloat rotate, jfloat pivotX, in updateGroupProperties() argument
173 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); in updateGroupProperties()
[all …]
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/drawable/
DVectorDrawable_Delegate.java240 static long nCreateGroup(long groupPtr) { in nCreateGroup() argument
241 VGroup_Delegate original = VNativeObject.getDelegate(groupPtr); in nCreateGroup()
253 static boolean nGetGroupProperties(long groupPtr, float[] propertiesData, in nGetGroupProperties() argument
255 VGroup_Delegate group = VNativeObject.getDelegate(groupPtr); in nGetGroupProperties()
270 static void nUpdateGroupProperties(long groupPtr, float rotate, float pivotX, in nUpdateGroupProperties() argument
272 VGroup_Delegate group = VNativeObject.getDelegate(groupPtr); in nUpdateGroupProperties()
284 static void nAddChild(long groupPtr, long nodePtr) { in nAddChild() argument
285 VGroup_Delegate group = VNativeObject.getDelegate(groupPtr); in nAddChild()
303 static float nGetRotation(long groupPtr) { in nGetRotation() argument
304 VGroup_Delegate group = VNativeObject.getDelegate(groupPtr); in nGetRotation()
[all …]
/frameworks/base/graphics/java/android/graphics/drawable/
DVectorDrawable.java1820 private static native long nCreateGroup(long groupPtr); in nCreateGroup() argument
1822 private static native boolean nGetGroupProperties(long groupPtr, float[] properties, in nGetGroupProperties() argument
1824 private static native void nUpdateGroupProperties(long groupPtr, float rotate, float pivotX, in nUpdateGroupProperties() argument
1827 private static native void nAddChild(long groupPtr, long nodePtr); in nAddChild() argument
1837 private static native float nGetRotation(long groupPtr); in nGetRotation() argument
1838 private static native void nSetRotation(long groupPtr, float rotation); in nSetRotation() argument
1839 private static native float nGetPivotX(long groupPtr); in nGetPivotX() argument
1840 private static native void nSetPivotX(long groupPtr, float pivotX); in nSetPivotX() argument
1841 private static native float nGetPivotY(long groupPtr); in nGetPivotY() argument
1842 private static native void nSetPivotY(long groupPtr, float pivotY); in nSetPivotY() argument
[all …]