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()
167 static jboolean getGroupProperties(JNIEnv* env, jobject, jlong groupPtr, in getGroupProperties() argument
169 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); in getGroupProperties()
176 static void updateGroupProperties(JNIEnv*, jobject, jlong groupPtr, jfloat rotate, jfloat pivotX, in updateGroupProperties() argument
178 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.java2284 private static native boolean nGetGroupProperties(long groupPtr, float[] properties, in nGetGroupProperties() argument
2329 private static native long nCreateGroup(long groupPtr); in nCreateGroup() argument
2331 private static native void nUpdateGroupProperties(long groupPtr, float rotate, float pivotX, in nUpdateGroupProperties() argument
2335 private static native void nAddChild(long groupPtr, long nodePtr); in nAddChild() argument
2345 private static native float nGetRotation(long groupPtr); in nGetRotation() argument
2347 private static native void nSetRotation(long groupPtr, float rotation); in nSetRotation() argument
2349 private static native float nGetPivotX(long groupPtr); in nGetPivotX() argument
2351 private static native void nSetPivotX(long groupPtr, float pivotX); in nSetPivotX() argument
2353 private static native float nGetPivotY(long groupPtr); in nGetPivotY() argument
2355 private static native void nSetPivotY(long groupPtr, float pivotY); in nSetPivotY() argument
[all …]