/frameworks/base/core/jni/ |
D | android_graphics_drawable_VectorDrawable.cpp | 28 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 …]
|
D | android_graphics_drawable_AnimatedVectorDrawable.cpp | 31 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/ |
D | PropertyValuesHolder.h | 45 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;
|
D | RecordedOp.h | 43 namespace VectorDrawable { 351 VectorDrawableOp(VectorDrawable::Tree* tree, BASE_PARAMS_PAINTLESS) in VectorDrawableOp() 354 VectorDrawable::Tree* vectorDrawable;
|
D | PropertyValuesHolder.cpp | 26 using namespace VectorDrawable;
|
D | Android.mk | 102 VectorDrawable.cpp \
|
/frameworks/base/graphics/java/android/graphics/drawable/ |
D | AnimatedVectorDrawable.java | 373 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 …]
|
D | VectorDrawable.java | 204 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()
|
D | DrawableInflater.java | 155 return new VectorDrawable(); in inflateFromTag()
|
/frameworks/base/tests/VectorDrawableTest/src/com/android/test/dynamic/ |
D | VectorDrawablePerformance.java | 18 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()
|
D | BoundsCheckTest.java | 24 import android.graphics.drawable.VectorDrawable; 38 private final VectorDrawable mVector1; 44 mVector1 = (VectorDrawable) res.getDrawable(R.drawable.vector_drawable28); in BitmapsView()
|
D | VectorDrawable01.java | 17 import android.graphics.drawable.VectorDrawable; 86 VectorDrawable vd = (VectorDrawable) button.getBackground(); in onCreate()
|
D | VectorDrawableStaticPerf.java | 18 import android.graphics.drawable.VectorDrawable;
|
D | VectorCheckbox.java | 17 import android.graphics.drawable.VectorDrawable;
|
D | AnimatedVectorDrawableDupPerf.java | 19 import android.graphics.drawable.VectorDrawable;
|
/frameworks/base/libs/hwui/tests/unit/ |
D | VectorDrawableTests.cpp | 350 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/ |
D | build.gradle | 98 name 'Android Support VectorDrawable' 99 description "Android Support VectorDrawable"
|
/frameworks/base/libs/hwui/hwui/ |
D | Canvas.h | 58 namespace VectorDrawable { 62 typedef uirenderer::VectorDrawable::Tree VectorDrawableRoot;
|
/frameworks/base/docs/html/training/material/ |
D | drawables.jd | 43 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/ |
D | drawables.jd | 123 <p>矢量图像在 Android 中以 {@link android.graphics.drawable.VectorDrawable}
|
/frameworks/base/docs/html-intl/intl/zh-tw/training/material/ |
D | drawables.jd | 123 <p>在 Android 中,{@link android.graphics.drawable.VectorDrawable} 物件代表矢量影像。
|
/frameworks/base/docs/html-intl/intl/ja/training/material/ |
D | drawables.jd | 123 <p>Android ではベクター画像は {@link android.graphics.drawable.VectorDrawable}
|
/frameworks/base/docs/html-intl/intl/ru/training/material/ |
D | drawables.jd | 123 …ые изображения представлены в Android как объекты {@link android.graphics.drawable.VectorDrawable}.
|
/frameworks/base/docs/html-intl/intl/ko/training/material/ |
D | drawables.jd | 123 <p>벡터 이미지는 Android에서 {@link android.graphics.drawable.VectorDrawable}
|
/frameworks/base/core/java/com/android/internal/util/ |
D | NotificationColorUtil.java | 33 import android.graphics.drawable.VectorDrawable; 131 } else if (d instanceof VectorDrawable) { in isGrayscaleIcon()
|