/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/ |
D | PropertyAnimatorTest.java | 65 private AnimatableProperty mProperty field in PropertyAnimatorTest 112 mAnimationFilter.animate(mProperty.getProperty()); in testAnimationStarted() 113 PropertyAnimator.startAnimation(mView, mProperty, 200, mAnimationProperties); in testAnimationStarted() 114 assertTrue(ViewState.isAnimating(mView, mProperty)); in testAnimationStarted() 120 PropertyAnimator.startAnimation(mView, mProperty, 200, mAnimationProperties); in testNoAnimationStarted() 121 assertFalse(ViewState.isAnimating(mView, mProperty)); in testNoAnimationStarted() 127 mAnimationFilter.animate(mProperty.getProperty()); in testEndValueUpdated() 128 PropertyAnimator.startAnimation(mView, mProperty, 200f, mAnimationProperties); in testEndValueUpdated() 129 assertEquals(ViewState.getChildTag(mView, mProperty.getAnimationEndTag()), in testEndValueUpdated() 137 mAnimationFilter.animate(mProperty.getProperty()); in testStartTagUpdated() [all …]
|
/frameworks/base/services/core/java/com/android/server/infra/ |
D | SecureSettingsServiceNameResolver.java | 36 private final String mProperty; field in SecureSettingsServiceNameResolver 40 mProperty = property; in SecureSettingsServiceNameResolver() 45 return Settings.Secure.getStringForUser(mContext.getContentResolver(), mProperty, userId); in getDefaultServiceName() 51 pw.print("SecureSettingsServiceNamer: prop="); pw.print(mProperty); in dumpShort() 62 return "SecureSettingsServiceNameResolver[" + mProperty + "]"; in toString()
|
/frameworks/base/graphics/java/android/graphics/ |
D | CanvasProperty.java | 29 private VirtualRefBasePtr mProperty; field in CanvasProperty 42 mProperty = new VirtualRefBasePtr(nativeContainer); in CanvasProperty() 47 return mProperty.get(); in getNativeContainer()
|
/frameworks/base/services/core/java/com/android/server/display/ |
D | RampAnimator.java | 29 private final IntProperty<T> mProperty; field in RampAnimator 46 mProperty = property; in RampAnimator() 68 mProperty.setValue(mObject, target); in animateTo() 159 mProperty.setValue(mObject, mCurrentValue);
|
/frameworks/base/core/java/android/animation/ |
D | PropertyValuesHolder.java | 50 protected Property mProperty; field in PropertyValuesHolder 143 mProperty = property; in PropertyValuesHolder() 810 if (mProperty != null) { in setupSetterAndGetter() 820 testValue = convertBack(mProperty.get(target)); in setupSetterAndGetter() 828 Log.w("PropertyValuesHolder","No such property (" + mProperty.getName() + in setupSetterAndGetter() 830 mProperty = null; in setupSetterAndGetter() 834 if (mProperty == null) { in setupSetterAndGetter() 885 if (mProperty != null) { in setupValue() 886 Object value = convertBack(mProperty.get(target)); in setupValue() 943 newPVH.mProperty = mProperty; in clone() [all …]
|
D | ObjectAnimator.java | 84 private Property mProperty; field in ObjectAnimator 146 if (mProperty != null) { in setProperty() 149 mProperty = property; in setProperty() 175 } else if (mProperty != null) { in getPropertyName() 176 propertyName = mProperty.getName(); in getPropertyName() 765 if (mProperty != null) { in setIntValues() 766 setValues(PropertyValuesHolder.ofInt(mProperty, values)); in setIntValues() 780 if (mProperty != null) { in setFloatValues() 781 setValues(PropertyValuesHolder.ofFloat(mProperty, values)); in setFloatValues() 795 if (mProperty != null) { in setObjectValues() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/ |
D | TouchAnimator.java | 230 private final Property<T, Float> mProperty; field in TouchAnimator.FloatKeyframeSet 234 mProperty = property; in FloatKeyframeSet() 242 mProperty.set((T) target, firstFloat + (secondFloat - firstFloat) * amount); in interpolate() 248 private final Property<T, Integer> mProperty; field in TouchAnimator.IntKeyframeSet 252 mProperty = property; in IntKeyframeSet() 260 mProperty.set((T) target, (int) (firstFloat + (secondFloat - firstFloat) * amount)); in interpolate()
|
/frameworks/base/libs/hwui/ |
D | Animator.cpp | 390 : BaseRenderNodeAnimator(finalValue), mProperty(property) {} in CanvasPropertyPrimitiveAnimator() 393 return mProperty->value; in getValue() 397 mProperty->value = value; in setValue() 410 : BaseRenderNodeAnimator(finalValue), mProperty(property), mField(field) {} in CanvasPropertyPaintAnimator() 415 return mProperty->value.getStrokeWidth(); in getValue() 417 return mProperty->value.getAlpha(); in getValue() 431 mProperty->value.setStrokeWidth(value); in setValue() 434 mProperty->value.setAlpha(to_uint8(value)); in setValue()
|
D | Animator.h | 234 sp<CanvasPropertyPrimitive> mProperty; 254 sp<CanvasPropertyPaint> mProperty;
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/bubbles/animation/ |
D | PhysicsAnimationLayout.java | 574 private DynamicAnimation.ViewProperty mProperty; 577 this.mProperty = property; 583 if (!arePropertiesAnimating(mProperty)) { 584 if (mEndActionForProperty.containsKey(mProperty)) { 585 final Runnable callback = mEndActionForProperty.get(mProperty);
|
D | StackAnimationController.java | 861 private final DynamicAnimation.ViewProperty mProperty; 865 mProperty = property; 870 return mLayout.getChildCount() > 0 ? mProperty.getValue(mLayout.getChildAt(0)) : 0; 875 moveFirstBubbleWithStackFollowing(mProperty, value);
|
/frameworks/base/core/java/android/widget/ |
D | RemoteViews.java | 2004 final int mProperty; 2014 this.mProperty = property; 2020 mProperty = parcel.readInt(); 2026 dest.writeInt(mProperty); 2041 switch (mProperty) { 2063 throw new IllegalArgumentException("Unknown property " + mProperty); 2081 return super.getUniqueKey() + mProperty;
|
/frameworks/base/config/ |
D | hiddenapi-greylist-max-o.txt | 1015 Landroid/animation/ObjectAnimator;->mProperty:Landroid/util/Property; 1114 Landroid/animation/PropertyValuesHolder;->mProperty:Landroid/util/Property; 19179 Landroid/graphics/CanvasProperty;->mProperty:Lcom/android/internal/util/VirtualRefBasePtr; 83421 Landroid/widget/RemoteViews$LayoutParamAction;->mProperty:I
|