/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 | 30 private VirtualRefBasePtr mProperty; field in CanvasProperty 43 mProperty = new VirtualRefBasePtr(nativeContainer); in CanvasProperty() 48 return mProperty.get(); in getNativeContainer()
|
/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 | 231 private final Property<T, Float> mProperty; field in TouchAnimator.FloatKeyframeSet 235 mProperty = property; in FloatKeyframeSet() 243 mProperty.set((T) target, firstFloat + (secondFloat - firstFloat) * amount); in interpolate() 249 private final Property<T, Integer> mProperty; field in TouchAnimator.IntKeyframeSet 253 mProperty = property; in IntKeyframeSet() 261 mProperty.set((T) target, (int) (firstFloat + (secondFloat - firstFloat) * amount)); in interpolate()
|
/frameworks/base/services/core/java/com/android/server/display/ |
D | RampAnimator.java | 29 private final FloatProperty<T> mProperty; field in RampAnimator 46 mProperty = property; in RampAnimator() 69 mProperty.setValue(mObject, target); in animateTo() 159 mProperty.setValue(mObject, mCurrentValue);
|
/frameworks/base/libs/hwui/ |
D | Animator.cpp | 388 : BaseRenderNodeAnimator(finalValue), mProperty(property) {} in CanvasPropertyPrimitiveAnimator() 391 return mProperty->value; in getValue() 395 mProperty->value = value; in setValue() 408 : BaseRenderNodeAnimator(finalValue), mProperty(property), mField(field) {} in CanvasPropertyPaintAnimator() 413 return mProperty->value.getStrokeWidth(); in getValue() 415 return mProperty->value.getAlpha(); in getValue() 429 mProperty->value.setStrokeWidth(value); in setValue() 432 mProperty->value.setAlpha(to_uint8(value)); in setValue()
|
D | Animator.h | 234 sp<CanvasPropertyPrimitive> mProperty; 254 sp<CanvasPropertyPaint> mProperty;
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/animation/ |
D | PhysicsAnimationLayout.java | 598 private DynamicAnimation.ViewProperty mProperty; 601 this.mProperty = property; 607 if (!arePropertiesAnimating(mProperty)) { 608 if (mEndActionForProperty.containsKey(mProperty)) { 609 final Runnable callback = mEndActionForProperty.get(mProperty);
|
D | StackAnimationController.java | 1097 private final DynamicAnimation.ViewProperty mProperty; field in StackAnimationController.StackPositionProperty 1101 mProperty = property; in StackPositionProperty() 1106 return mLayout.getChildCount() > 0 ? mProperty.getValue(mLayout.getChildAt(0)) : 0; in getValue() 1111 moveFirstBubbleWithStackFollowing(mProperty, value); in setValue()
|
/frameworks/base/core/java/android/widget/ |
D | RemoteViews.java | 2948 final int mProperty; 2961 this.mProperty = property; 2976 this.mProperty = property; 2983 mProperty = parcel.readInt(); 2990 dest.writeInt(mProperty); 3006 switch (mProperty) { 3052 throw new IllegalArgumentException("Unknown property " + mProperty); 3117 return super.getUniqueKey() + mProperty;
|
/frameworks/base/boot/hiddenapi/ |
D | hiddenapi-max-target-o.txt | 1015 Landroid/animation/ObjectAnimator;->mProperty:Landroid/util/Property; 1114 Landroid/animation/PropertyValuesHolder;->mProperty:Landroid/util/Property; 19170 Landroid/graphics/CanvasProperty;->mProperty:Lcom/android/internal/util/VirtualRefBasePtr; 72315 Landroid/widget/RemoteViews$LayoutParamAction;->mProperty:I
|