Home
last modified time | relevance | path

Searched refs:mVectorDrawable (Results 1 – 4 of 4) sorted by relevance

/frameworks/support/graphics/drawable/animated/src/main/java/androidx/vectordrawable/graphics/drawable/
DAnimatedVectorDrawableCompat.java288 mAnimatedVectorState.mVectorDrawable.draw(canvas); in draw()
300 mAnimatedVectorState.mVectorDrawable.setBounds(bounds); in onBoundsChange()
308 return mAnimatedVectorState.mVectorDrawable.setState(state); in onStateChange()
316 return mAnimatedVectorState.mVectorDrawable.setLevel(level); in onLevelChange()
324 return mAnimatedVectorState.mVectorDrawable.getAlpha(); in getAlpha()
333 mAnimatedVectorState.mVectorDrawable.setAlpha(alpha); in setAlpha()
342 mAnimatedVectorState.mVectorDrawable.setColorFilter(colorFilter); in setColorFilter()
352 mAnimatedVectorState.mVectorDrawable.setTint(tint); in setTint()
362 mAnimatedVectorState.mVectorDrawable.setTintList(tint); in setTintList()
372 mAnimatedVectorState.mVectorDrawable.setTintMode(tintMode); in setTintMode()
[all …]
/frameworks/base/graphics/java/android/graphics/drawable/
DAnimatedVectorDrawable.java352 if (mAnimatedVectorState.mVectorDrawable != null) { in clearMutated()
353 mAnimatedVectorState.mVectorDrawable.clearMutated(); in clearMutated()
409 mAnimatedVectorState.mVectorDrawable.draw(canvas); in draw()
414 mAnimatedVectorState.mVectorDrawable.setBounds(bounds); in onBoundsChange()
419 return mAnimatedVectorState.mVectorDrawable.setState(state); in onStateChange()
424 return mAnimatedVectorState.mVectorDrawable.setLevel(level); in onLevelChange()
429 return mAnimatedVectorState.mVectorDrawable.setLayoutDirection(layoutDirection); in onLayoutDirectionChanged()
441 return mAnimatedVectorState.mVectorDrawable.getAlpha(); in getAlpha()
446 mAnimatedVectorState.mVectorDrawable.setAlpha(alpha); in setAlpha()
451 mAnimatedVectorState.mVectorDrawable.setColorFilter(colorFilter); in setColorFilter()
[all …]
/frameworks/base/libs/hwui/
DPropertyValuesAnimatorSet.h62 void setVectorDrawable(VectorDrawableRoot* vd) { mVectorDrawable = vd; } in setVectorDrawable()
63 VectorDrawableRoot* getVectorDrawable() const { return mVectorDrawable.get(); } in getVectorDrawable()
81 sp<VectorDrawableRoot> mVectorDrawable; variable
/frameworks/support/graphics/drawable/static/src/androidTest/java/androidx/vectordrawable/graphics/drawable/tests/
DVectorDrawableTest.java133 private VectorDrawableCompat mVectorDrawable; field in VectorDrawableTest
160 mVectorDrawable = VectorDrawableCompat.create(mResources, resIds[i], mTheme); in verifyVectorDrawables()
161 mVectorDrawable.setBounds(0, 0, IMAGE_WIDTH, IMAGE_HEIGHT); in verifyVectorDrawables()
163 mVectorDrawable.setState(stateSet); in verifyVectorDrawables()
167 mVectorDrawable.draw(mCanvas); in verifyVectorDrawables()