Home
last modified time | relevance | path

Searched refs:VectorDrawable (Results 1 – 25 of 40) sorted by relevance

12

/frameworks/base/core/jni/
Dandroid_graphics_drawable_VectorDrawable.cpp28 using namespace uirenderer::VectorDrawable;
34 VectorDrawable::Group* rootGroup = reinterpret_cast<VectorDrawable::Group*>(groupPtr); in createTree()
35 VectorDrawable::Tree* tree = new VectorDrawable::Tree(rootGroup); in createTree()
40 VectorDrawable::Group* rootGroup = reinterpret_cast<VectorDrawable::Group*>(groupPtr); in createTreeFromCopy()
41 VectorDrawable::Tree* treeToCopy = reinterpret_cast<VectorDrawable::Tree*>(treePtr); in createTreeFromCopy()
42 VectorDrawable::Tree* tree = new VectorDrawable::Tree(treeToCopy, rootGroup); in createTreeFromCopy()
47 VectorDrawable::FullPath* newPath = new VectorDrawable::FullPath(); in createEmptyFullPath()
52 VectorDrawable::FullPath* srcFullPath = in createFullPath()
53 reinterpret_cast<VectorDrawable::FullPath*>(srcFullPathPtr); in createFullPath()
54 VectorDrawable::FullPath* newPath = new VectorDrawable::FullPath(*srcFullPath); in createFullPath()
[all …]
Dandroid_graphics_drawable_AnimatedVectorDrawable.cpp31 using namespace VectorDrawable;
100 VectorDrawable::Group* group = reinterpret_cast<VectorDrawable::Group*>(nativePtr); in createGroupPropertyHolder()
108 VectorDrawable::Path* path = reinterpret_cast<VectorDrawable::Path*>(nativePtr); in createPathDataPropertyHolder()
118 VectorDrawable::FullPath* fullPath = reinterpret_cast<VectorDrawable::FullPath*>(nativePtr); in createPathColorPropertyHolder()
126 VectorDrawable::FullPath* fullPath = reinterpret_cast<VectorDrawable::FullPath*>(nativePtr); in createPathPropertyHolder()
134 VectorDrawable::Tree* tree = reinterpret_cast<VectorDrawable::Tree*>(nativePtr); in createRootAlphaPropertyHolder()
/frameworks/base/libs/hwui/
DPropertyValuesHolder.h45 GroupPropertyValuesHolder(VectorDrawable::Group* ptr, int propertyId, float startValue, in GroupPropertyValuesHolder()
54 VectorDrawable::Group* mGroup;
62 …FullPathColorPropertyValuesHolder(VectorDrawable::FullPath* ptr, int propertyId, int32_t startValu… in FullPathColorPropertyValuesHolder()
71 VectorDrawable::FullPath* mFullPath;
79 FullPathPropertyValuesHolder(VectorDrawable::FullPath* ptr, int propertyId, float startValue, in FullPathPropertyValuesHolder()
87 VectorDrawable::FullPath* mFullPath;
95 PathDataPropertyValuesHolder(VectorDrawable::Path* ptr, PathData* startValue, in PathDataPropertyValuesHolder()
102 VectorDrawable::Path* mPath;
110 RootAlphaPropertyValuesHolder(VectorDrawable::Tree* tree, float startValue, float endValue) in RootAlphaPropertyValuesHolder()
116 VectorDrawable::Tree* mTree;
DRecordedOp.h43 namespace VectorDrawable {
351 VectorDrawableOp(VectorDrawable::Tree* tree, BASE_PARAMS_PAINTLESS) in VectorDrawableOp()
354 VectorDrawable::Tree* vectorDrawable;
DPropertyValuesHolder.cpp26 using namespace VectorDrawable;
DAndroid.mk102 VectorDrawable.cpp \
/frameworks/base/graphics/java/android/graphics/drawable/
DAnimatedVectorDrawable.java373 VectorDrawable vectorDrawable = (VectorDrawable) res.getDrawable( in inflate()
445 final VectorDrawable vectorDrawable = mAnimatedVectorState.mVectorDrawable; in applyTheme()
463 VectorDrawable mVectorDrawable;
482 mVectorDrawable = (VectorDrawable) cs.newDrawable(res); in AnimatedVectorDrawableState()
484 mVectorDrawable = (VectorDrawable) cs.newDrawable(); in AnimatedVectorDrawableState()
486 mVectorDrawable = (VectorDrawable) mVectorDrawable.mutate(); in AnimatedVectorDrawableState()
505 mVectorDrawable = new VectorDrawable(); in AnimatedVectorDrawableState()
658 ((VectorDrawable.VectorDrawableState) ((AnimatedVectorDrawableState) in reset()
670 ((VectorDrawable.VectorDrawableState) ((AnimatedVectorDrawableState) in start()
693 ((VectorDrawable.VectorDrawableState) ((AnimatedVectorDrawableState) in stop()
[all …]
DVectorDrawable.java204 public class VectorDrawable extends Drawable { class
205 private static final String LOGTAG = VectorDrawable.class.getSimpleName();
234 public VectorDrawable() { in VectorDrawable() method in VectorDrawable
242 private VectorDrawable(@NonNull VectorDrawableState state, @Nullable Resources res) { in VectorDrawable() method in VectorDrawable
491 state.mThemeAttrs, R.styleable.VectorDrawable); in applyTheme()
542 public static VectorDrawable create(Resources resources, int rid) { in create()
555 final VectorDrawable drawable = new VectorDrawable(); in create()
591 final TypedArray a = obtainAttributes(r, theme, attrs, R.styleable.VectorDrawable); in inflate()
898 return new VectorDrawable(this, null); in newDrawable()
903 return new VectorDrawable(this, res); in newDrawable()
DDrawableInflater.java155 return new VectorDrawable(); in inflateFromTag()
/frameworks/base/tests/VectorDrawableTest/src/com/android/test/dynamic/
DVectorDrawablePerformance.java18 import android.graphics.drawable.VectorDrawable;
84 public static VectorDrawable create(Resources resources, int rid) { in create()
97 final VectorDrawable drawable = new VectorDrawable(); in create()
118 VectorDrawable []d = new VectorDrawable[icon.length]; in onCreate()
DBoundsCheckTest.java24 import android.graphics.drawable.VectorDrawable;
38 private final VectorDrawable mVector1;
44 mVector1 = (VectorDrawable) res.getDrawable(R.drawable.vector_drawable28); in BitmapsView()
DVectorDrawable01.java17 import android.graphics.drawable.VectorDrawable;
86 VectorDrawable vd = (VectorDrawable) button.getBackground(); in onCreate()
DVectorDrawableStaticPerf.java18 import android.graphics.drawable.VectorDrawable;
DVectorCheckbox.java17 import android.graphics.drawable.VectorDrawable;
DAnimatedVectorDrawableDupPerf.java19 import android.graphics.drawable.VectorDrawable;
/frameworks/base/libs/hwui/tests/unit/
DVectorDrawableTests.cpp350 TEST(VectorDrawable, matrixScale) { in TEST() argument
390 float actualMatrixScale = VectorDrawable::Path::getMatrixScale(matrix); in TEST()
395 TEST(VectorDrawable, groupProperties) { in TEST() argument
397 VectorDrawable::Group group; in TEST()
398 VectorDrawable::Group::GroupProperties* properties = group.mutateProperties(); in TEST()
/frameworks/support/graphics/drawable/static/
Dbuild.gradle98 name 'Android Support VectorDrawable'
99 description "Android Support VectorDrawable"
/frameworks/base/libs/hwui/hwui/
DCanvas.h58 namespace VectorDrawable {
62 typedef uirenderer::VectorDrawable::Tree VectorDrawableRoot;
/frameworks/base/docs/html/training/material/
Ddrawables.jd43 android.graphics.drawable.VectorDrawable} objects with the {@code setTint()} method. You can
128 <p>Vector images are represented in Android as {@link android.graphics.drawable.VectorDrawable}
/frameworks/base/docs/html-intl/intl/zh-cn/training/material/
Ddrawables.jd123 <p>矢量图像在 Android 中以 {@link android.graphics.drawable.VectorDrawable}
/frameworks/base/docs/html-intl/intl/zh-tw/training/material/
Ddrawables.jd123 <p>在 Android 中,{@link android.graphics.drawable.VectorDrawable} 物件代表矢量影像。
/frameworks/base/docs/html-intl/intl/ja/training/material/
Ddrawables.jd123 <p>Android ではベクター画像は {@link android.graphics.drawable.VectorDrawable}
/frameworks/base/docs/html-intl/intl/ru/training/material/
Ddrawables.jd123 …ые изображения представлены в Android как объекты {@link android.graphics.drawable.VectorDrawable}.
/frameworks/base/docs/html-intl/intl/ko/training/material/
Ddrawables.jd123 <p>벡터 이미지는 Android에서 {@link android.graphics.drawable.VectorDrawable}
/frameworks/base/core/java/com/android/internal/util/
DNotificationColorUtil.java33 import android.graphics.drawable.VectorDrawable;
131 } else if (d instanceof VectorDrawable) { in isGrayscaleIcon()

12