Searched refs:mProperty (Results 1 - 13 of 13) sorted by relevance

/frameworks/base/graphics/java/android/graphics/
H A DCanvasProperty.java27 private VirtualRefBasePtr mProperty; field in class:CanvasProperty
38 mProperty = new VirtualRefBasePtr(nativeContainer);
43 return mProperty.get();
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
H A DPropertyAnimatorTest.java66 private AnimatableProperty mProperty field in class:PropertyAnimatorTest
113 mAnimationFilter.animate(mProperty.getProperty());
114 PropertyAnimator.startAnimation(mView, mProperty, 200, mAnimationProperties);
115 assertTrue(ViewState.isAnimating(mView, mProperty));
121 PropertyAnimator.startAnimation(mView, mProperty, 200, mAnimationProperties);
122 assertFalse(ViewState.isAnimating(mView, mProperty));
128 mAnimationFilter.animate(mProperty.getProperty());
129 PropertyAnimator.startAnimation(mView, mProperty, 200f, mAnimationProperties);
130 assertEquals(ViewState.getChildTag(mView, mProperty.getAnimationEndTag()),
138 mAnimationFilter.animate(mProperty
[all...]
/frameworks/support/transition/src/main/java/androidx/transition/
H A DPathProperty.java37 private final Property<T, PointF> mProperty; field in class:PathProperty
46 mProperty = property;
62 mProperty.set(target, mPointF);
/frameworks/support/leanback/src/main/java/androidx/leanback/widget/
H A DParallaxTarget.java107 Property<T, V> mProperty; field in class:ParallaxTarget.DirectPropertyTarget
115 mProperty = property;
129 mProperty.set((T) mObject, (V) value);
H A DParallax.java85 private final PropertyT mProperty; field in class:Parallax.PropertyMarkerValue
88 mProperty = property;
95 return mProperty;
/frameworks/base/services/core/java/com/android/server/display/
H A DRampAnimator.java29 private final IntProperty<T> mProperty; field in class:RampAnimator
46 mProperty = property;
68 mProperty.setValue(mObject, target);
159 mProperty.setValue(mObject, mCurrentValue);
/frameworks/support/dynamic-animation/src/main/java/androidx/dynamicanimation/animation/
H A DDynamicAnimation.java302 final FloatPropertyCompat mProperty; field in class:DynamicAnimation
335 mProperty = new FloatPropertyCompat("FloatValueHolder") {
358 mProperty = property;
359 if (mProperty == ROTATION || mProperty == ROTATION_X
360 || mProperty == ROTATION_Y) {
362 } else if (mProperty == ALPHA) {
364 } else if (mProperty == SCALE_X || mProperty == SCALE_Y) {
690 mProperty
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DTouchAnimator.java230 private final Property<T, Float> mProperty; field in class:TouchAnimator.FloatKeyframeSet
234 mProperty = property;
242 mProperty.set((T) target, firstFloat + (secondFloat - firstFloat) * amount);
248 private final Property<T, Integer> mProperty; field in class:TouchAnimator.IntKeyframeSet
252 mProperty = property;
260 mProperty.set((T) target, (int) (firstFloat + (secondFloat - firstFloat) * amount));
/frameworks/base/core/java/android/animation/
H A DPropertyValuesHolder.java50 protected Property mProperty; field in class:PropertyValuesHolder
143 mProperty = property;
810 if (mProperty != null) {
811 // check to make sure that mProperty is on the class of target
820 testValue = convertBack(mProperty.get(target));
828 Log.w("PropertyValuesHolder","No such property (" + mProperty.getName() +
830 mProperty = null;
833 // We can't just say 'else' here because the catch statement sets mProperty to null.
834 if (mProperty == null) {
885 if (mProperty !
[all...]
H A DObjectAnimator.java84 private Property mProperty; field in class:ObjectAnimator
146 if (mProperty != null) {
149 mProperty = property;
175 } else if (mProperty != null) {
176 propertyName = mProperty.getName();
765 if (mProperty != null) {
766 setValues(PropertyValuesHolder.ofInt(mProperty, values));
780 if (mProperty != null) {
781 setValues(PropertyValuesHolder.ofFloat(mProperty, values));
795 if (mProperty !
[all...]
/frameworks/base/libs/hwui/
H A DAnimator.cpp390 : BaseRenderNodeAnimator(finalValue), mProperty(property) {}
393 return mProperty->value;
397 mProperty->value = value;
410 : BaseRenderNodeAnimator(finalValue), mProperty(property), mField(field) {}
415 return mProperty->value.getStrokeWidth();
417 return mProperty->value.getAlpha();
431 mProperty->value.setStrokeWidth(value);
434 mProperty->value.setAlpha(to_uint8(value));
H A DAnimator.h234 sp<CanvasPropertyPrimitive> mProperty; member in class:android::uirenderer::RepeatMode::CanvasPropertyPrimitiveAnimator
254 sp<CanvasPropertyPaint> mProperty; member in class:android::uirenderer::RepeatMode::CanvasPropertyPaintAnimator
/frameworks/base/core/java/android/widget/
H A DRemoteViews.java2013 final int mProperty; field in class:RemoteViews.LayoutParamAction
2023 this.mProperty = property;
2029 mProperty = parcel.readInt();
2035 dest.writeInt(mProperty);
2050 switch (mProperty) {
2072 throw new IllegalArgumentException("Unknown property " + mProperty);
2090 return super.getUniqueKey() + mProperty;

Completed in 349 milliseconds