Home
last modified time | relevance | path

Searched refs:groupPtr (Results 1 – 2 of 2) 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()
166 static jboolean getGroupProperties(JNIEnv* env, jobject, jlong groupPtr, in getGroupProperties() argument
168 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); in getGroupProperties()
175 static void updateGroupProperties(JNIEnv*, jobject, jlong groupPtr, jfloat rotate, jfloat pivotX, in updateGroupProperties() argument
177 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(groupPtr); in updateGroupProperties()
[all …]
/frameworks/base/graphics/java/android/graphics/drawable/
DVectorDrawable.java2273 private static native boolean nGetGroupProperties(long groupPtr, float[] properties, in nGetGroupProperties() argument
2318 private static native long nCreateGroup(long groupPtr); in nCreateGroup() argument
2320 private static native void nUpdateGroupProperties(long groupPtr, float rotate, float pivotX, in nUpdateGroupProperties() argument
2324 private static native void nAddChild(long groupPtr, long nodePtr); in nAddChild() argument
2334 private static native float nGetRotation(long groupPtr); in nGetRotation() argument
2336 private static native void nSetRotation(long groupPtr, float rotation); in nSetRotation() argument
2338 private static native float nGetPivotX(long groupPtr); in nGetPivotX() argument
2340 private static native void nSetPivotX(long groupPtr, float pivotX); in nSetPivotX() argument
2342 private static native float nGetPivotY(long groupPtr); in nGetPivotY() argument
2344 private static native void nSetPivotY(long groupPtr, float pivotY); in nSetPivotY() argument
[all …]