Home
last modified time | relevance | path

Searched refs:mProperty (Results 1 – 15 of 15) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
DPropertyAnimatorTest.java72 private AnimatableProperty mProperty field in PropertyAnimatorTest
120 mAnimationFilter.animate(mProperty.getProperty()); in testAnimationStarted()
121 PropertyAnimator.startAnimation(mView, mProperty, 200, mAnimationProperties); in testAnimationStarted()
122 assertTrue(ViewState.isAnimating(mView, mProperty)); in testAnimationStarted()
128 PropertyAnimator.startAnimation(mView, mProperty, 200, mAnimationProperties); in testNoAnimationStarted()
129 assertFalse(ViewState.isAnimating(mView, mProperty)); in testNoAnimationStarted()
135 mAnimationFilter.animate(mProperty.getProperty()); in testEndValueUpdated()
136 PropertyAnimator.startAnimation(mView, mProperty, 200f, mAnimationProperties); in testEndValueUpdated()
137 assertEquals(ViewState.getChildTag(mView, mProperty.getAnimationEndTag()), in testEndValueUpdated()
145 mAnimationFilter.animate(mProperty.getProperty()); in testStartTagUpdated()
[all …]
/frameworks/base/services/core/java/com/android/server/infra/
DSecureSettingsServiceNameResolver.java46 private final String mProperty; field in SecureSettingsServiceNameResolver
62 mProperty = property; in SecureSettingsServiceNameResolver()
68 pw.print("SecureSettingsServiceNamer: prop="); pw.print(mProperty); in dumpShort()
79 return "SecureSettingsServiceNameResolver[" + mProperty + "]"; in toString()
86 mContext.getContentResolver(), mProperty, userId)); in readServiceNameList()
92 mContext.getContentResolver(), mProperty, userId); in readServiceName()
99 mContext.getContentResolver(), mProperty, null, userId); in setServiceNameList() local
108 mContext.getContentResolver(), mProperty, builder.toString(), userId); in setServiceNameList() local
/frameworks/base/graphics/java/android/graphics/
DCanvasProperty.java30 private VirtualRefBasePtr mProperty; field in CanvasProperty
43 mProperty = new VirtualRefBasePtr(nativeContainer); in CanvasProperty()
48 return mProperty.get(); in getNativeContainer()
/frameworks/base/core/java/com/android/internal/dynamicanimation/animation/
DDynamicAnimation.java309 final FloatProperty mProperty; field in DynamicAnimation
345 mProperty = new FloatProperty("FloatValueHolder") { in DynamicAnimation()
368 mProperty = property; in DynamicAnimation()
369 if (mProperty == ROTATION || mProperty == ROTATION_X in DynamicAnimation()
370 || mProperty == ROTATION_Y) { in DynamicAnimation()
372 } else if (mProperty == ALPHA) { in DynamicAnimation()
374 } else if (mProperty == SCALE_X || mProperty == SCALE_Y) { in DynamicAnimation()
731 mProperty.setValue(mTarget, value); in setPropertyValue()
752 return (Float) mProperty.get(mTarget); in getPropertyValue()
/frameworks/base/core/java/android/animation/
DPropertyValuesHolder.java50 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 …]
DObjectAnimator.java78 private Property mProperty; field in ObjectAnimator
140 if (mProperty != null) { in setProperty()
143 mProperty = property; in setProperty()
169 } else if (mProperty != null) { in getPropertyName()
170 propertyName = mProperty.getName(); in getPropertyName()
759 if (mProperty != null) { in setIntValues()
760 setValues(PropertyValuesHolder.ofInt(mProperty, values)); in setIntValues()
774 if (mProperty != null) { in setFloatValues()
775 setValues(PropertyValuesHolder.ofFloat(mProperty, values)); in setFloatValues()
789 if (mProperty != null) { in setObjectValues()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
DTouchAnimator.java243 private final Property<T, Float> mProperty; field in TouchAnimator.FloatKeyframeSet
247 mProperty = property; in FloatKeyframeSet()
255 mProperty.set((T) target, firstFloat + (secondFloat - firstFloat) * amount); in interpolate()
261 private final Property<T, Integer> mProperty; field in TouchAnimator.IntKeyframeSet
265 mProperty = property; in IntKeyframeSet()
273 mProperty.set((T) target, (int) (firstFloat + (secondFloat - firstFloat) * amount)); in interpolate()
/frameworks/base/libs/hwui/
DAnimator.cpp388 : 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()
DAnimator.h234 sp<CanvasPropertyPrimitive> mProperty;
254 sp<CanvasPropertyPaint> mProperty;
/frameworks/base/services/core/java/com/android/server/display/
DRampAnimator.java33 private final FloatProperty<T> mProperty; field in RampAnimator
60 mProperty = property; in RampAnimator()
167 mProperty.setValue(mObject, linearVal); in setPropertyValue()
/frameworks/base/packages/SystemUI/src/com/android/systemui/accessibility/floatingmenu/
DMenuAnimationController.java517 private final DynamicAnimation.ViewProperty mProperty;
521 mProperty = property;
526 return mProperty.getValue(menuView);
531 mProperty.setValue(menuView, value);
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/animation/
DPhysicsAnimationLayout.java628 private DynamicAnimation.ViewProperty mProperty;
631 this.mProperty = property;
637 if (!arePropertiesAnimating(mProperty)) {
638 if (mEndActionForProperty.containsKey(mProperty)) {
639 final Runnable callback = mEndActionForProperty.get(mProperty);
DStackAnimationController.java1060 private final DynamicAnimation.ViewProperty mProperty; field in StackAnimationController.StackPositionProperty
1064 mProperty = property; in StackPositionProperty()
1069 return mLayout.getChildCount() > 0 ? mProperty.getValue(mLayout.getChildAt(0)) : 0; in getValue()
1074 moveFirstBubbleWithStackFollowing(mProperty, value); in setValue()
/frameworks/base/core/java/android/widget/
DRemoteViews.java3468 final int mProperty;
3481 this.mProperty = property;
3496 this.mProperty = property;
3503 mProperty = parcel.readInt();
3510 dest.writeInt(mProperty);
3525 switch (mProperty) {
3571 throw new IllegalArgumentException("Unknown property " + mProperty);
3636 return super.getUniqueKey() + mProperty;
/frameworks/base/boot/hiddenapi/
Dhiddenapi-max-target-o.txt1015 Landroid/animation/ObjectAnimator;->mProperty:Landroid/util/Property;
1114 Landroid/animation/PropertyValuesHolder;->mProperty:Landroid/util/Property;
16292 Landroid/graphics/CanvasProperty;->mProperty:Lcom/android/internal/util/VirtualRefBasePtr;
68349 Landroid/widget/RemoteViews$LayoutParamAction;->mProperty:I