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.java264 static long nCreateGroup(long groupPtr) { in nCreateGroup() argument
265 VGroup_Delegate original = VNativeObject.getDelegate(groupPtr); in nCreateGroup()
276 static boolean nGetGroupProperties(long groupPtr, float[] propertiesData, in nGetGroupProperties() argument
278 VGroup_Delegate group = VNativeObject.getDelegate(groupPtr); in nGetGroupProperties()
293 static void nUpdateGroupProperties(long groupPtr, float rotate, float pivotX, in nUpdateGroupProperties() argument
295 VGroup_Delegate group = VNativeObject.getDelegate(groupPtr); in nUpdateGroupProperties()
307 static void nAddChild(long groupPtr, long nodePtr) { in nAddChild() argument
308 VGroup_Delegate group = VNativeObject.getDelegate(groupPtr); in nAddChild()
326 static float nGetRotation(long groupPtr) { in nGetRotation() argument
327 VGroup_Delegate group = VNativeObject.getDelegate(groupPtr); in nGetRotation()
[all …]
/frameworks/base/graphics/java/android/graphics/drawable/
DVectorDrawable.java2261 private static native boolean nGetGroupProperties(long groupPtr, float[] properties, in nGetGroupProperties() argument
2306 private static native long nCreateGroup(long groupPtr); in nCreateGroup() argument
2308 private static native void nUpdateGroupProperties(long groupPtr, float rotate, float pivotX, in nUpdateGroupProperties() argument
2312 private static native void nAddChild(long groupPtr, long nodePtr); in nAddChild() argument
2322 private static native float nGetRotation(long groupPtr); in nGetRotation() argument
2324 private static native void nSetRotation(long groupPtr, float rotation); in nSetRotation() argument
2326 private static native float nGetPivotX(long groupPtr); in nGetPivotX() argument
2328 private static native void nSetPivotX(long groupPtr, float pivotX); in nSetPivotX() argument
2330 private static native float nGetPivotY(long groupPtr); in nGetPivotY() argument
2332 private static native void nSetPivotY(long groupPtr, float pivotY); in nSetPivotY() argument
[all …]