/frameworks/base/core/java/android/animation/ |
D | KeyframeSet.java | 66 public static KeyframeSet ofInt(int... values) { in ofInt() method in KeyframeSet 70 keyframes[0] = (IntKeyframe) Keyframe.ofInt(0f); in ofInt() 71 keyframes[1] = (IntKeyframe) Keyframe.ofInt(1f, values[0]); in ofInt() 73 keyframes[0] = (IntKeyframe) Keyframe.ofInt(0f, values[0]); in ofInt() 76 (IntKeyframe) Keyframe.ofInt((float) i / (numKeyframes - 1), values[i]); in ofInt()
|
D | ObjectAnimator.java | 243 public static ObjectAnimator ofInt(Object target, String propertyName, int... values) { in ofInt() method in ObjectAnimator 266 public static ObjectAnimator ofInt(Object target, String xPropertyName, String yPropertyName, in ofInt() method in ObjectAnimator 289 public static <T> ObjectAnimator ofInt(T target, Property<T, Integer> property, int... values) { in ofInt() method in ObjectAnimator 308 public static <T> ObjectAnimator ofInt(T target, Property<T, Integer> xProperty, in ofInt() method in ObjectAnimator 402 ObjectAnimator animator = ofInt(target, propertyName, values); in ofArgb() 422 ObjectAnimator animator = ofInt(target, property, values); in ofArgb() 766 setValues(PropertyValuesHolder.ofInt(mProperty, values)); in setIntValues() 768 setValues(PropertyValuesHolder.ofInt(mPropertyName, values)); in setIntValues()
|
D | Keyframe.java | 82 public static Keyframe ofInt(float fraction, int value) { in ofInt() method in Keyframe 98 public static Keyframe ofInt(float fraction) { in ofInt() method in Keyframe
|
D | LayoutTransition.java | 281 PropertyValuesHolder pvhLeft = PropertyValuesHolder.ofInt("left", 0, 1); in LayoutTransition() 282 PropertyValuesHolder pvhTop = PropertyValuesHolder.ofInt("top", 0, 1); in LayoutTransition() 283 PropertyValuesHolder pvhRight = PropertyValuesHolder.ofInt("right", 0, 1); in LayoutTransition() 284 PropertyValuesHolder pvhBottom = PropertyValuesHolder.ofInt("bottom", 0, 1); in LayoutTransition() 285 PropertyValuesHolder pvhScrollX = PropertyValuesHolder.ofInt("scrollX", 0, 1); in LayoutTransition() 286 PropertyValuesHolder pvhScrollY = PropertyValuesHolder.ofInt("scrollY", 0, 1); in LayoutTransition()
|
D | AnimatorInflater.java | 377 returnValue = PropertyValuesHolder.ofInt(propertyName, valueFrom, valueTo); in getPVH() 379 returnValue = PropertyValuesHolder.ofInt(propertyName, valueFrom); in getPVH() 390 returnValue = PropertyValuesHolder.ofInt(propertyName, valueTo); in getPVH() 918 Keyframe.ofInt(fraction) : in createNewKeyframe() 985 keyframe = Keyframe.ofInt(fraction, intValue); in loadKeyframe() 990 Keyframe.ofInt(fraction); in loadKeyframe()
|
D | ValueAnimator.java | 294 public static ValueAnimator ofInt(int... values) { in ofInt() method in ValueAnimator 397 setValues(PropertyValuesHolder.ofInt("", values)); in setIntValues()
|
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
D | ColorFiltersMutateActivity.java | 79 ObjectAnimator light = ObjectAnimator.ofInt(this, "lightAdd", 0x00101030); in BitmapsView() 86 ObjectAnimator mult = ObjectAnimator.ofInt(this, "lightMul", 0x0060ffff); in BitmapsView() 93 ObjectAnimator color = ObjectAnimator.ofInt(this, "porterDuffColor", 0x7f990040); in BitmapsView()
|
D | BitmapMutateActivity.java | 46 mAnimator = ObjectAnimator.ofInt(view, "offset", 0, PATTERN_SIZE - 1); in onCreate()
|
/frameworks/base/core/java/android/transition/ |
D | ChangeScroll.java | 73 scrollXAnimator = ObjectAnimator.ofInt(view, "scrollX", startX, endX); in createAnimator() 77 scrollYAnimator = ObjectAnimator.ofInt(view, "scrollY", startY, endY); in createAnimator()
|
D | Crossfade.java | 200 anim = ObjectAnimator.ofInt(startDrawable, "alpha", 255, 0, 0); in createAnimator() 202 anim = ObjectAnimator.ofInt(startDrawable, "alpha", 0); in createAnimator()
|
D | ChangeText.java | 213 outAnim = ValueAnimator.ofInt(255, 0); in createAnimator() 240 inAnim = ValueAnimator.ofInt(0, 255); in createAnimator()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/ |
D | DividerHandleView.java | 114 ObjectAnimator widthAnimator = ObjectAnimator.ofInt(this, WIDTH_PROPERTY, in animateToTarget() 116 ObjectAnimator heightAnimator = ObjectAnimator.ofInt(this, HEIGHT_PROPERTY, in animateToTarget()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/ |
D | TouchAnimator.java | 137 add(target, KeyframeSet.ofInt(getProperty(target, property, int.class), values)); in addInt() 221 public static KeyframeSet ofInt(Property property, int... values) { in ofInt() method in TouchAnimator.KeyframeSet
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/assist/ |
D | AssistDisclosure.java | 122 mAlphaInAnimator = ValueAnimator.ofInt(0, 255).setDuration(ALPHA_IN_ANIMATION_DURATION); in AssistDisclosureView() 125 mAlphaOutAnimator = ValueAnimator.ofInt(255, 0).setDuration( in AssistDisclosureView()
|
/frameworks/base/tests/UiBench/src/com/android/test/uibench/ |
D | FullscreenOverdrawActivity.java | 78 ObjectAnimator objectAnimator = ObjectAnimator.ofInt(overdraw, "colorValue", 0, 255); in onCreate()
|
D | InvalidateActivity.java | 83 ObjectAnimator animator = ObjectAnimator.ofInt(this, "colorValue", 0, 255); in onCreate()
|
D | BitmapUploadActivity.java | 84 ObjectAnimator colorValueAnimator = ObjectAnimator.ofInt(uploadView, "colorValue", 0, 255); in onCreate()
|
/frameworks/base/core/tests/coretests/src/android/animation/ |
D | ValueAnimatorTests.java | 56 a2 = ValueAnimator.ofInt(A2_START_VALUE, A2_END_VALUE).setDuration(500); in setUp() 571 final ValueAnimator a0 = ValueAnimator.ofInt(100, 200).setDuration(500); 573 final ValueAnimator a4 = ValueAnimator.ofInt(200, 300).setDuration(500); 885 final ValueAnimator a3 = ValueAnimator.ofInt(0, 100); 985 final ValueAnimator a3 = ValueAnimator.ofInt(0, 100);
|
/frameworks/opt/bitmap/src/com/android/bitmap/drawable/ |
D | TileDrawable.java | 54 mFadeOutAnimator = ValueAnimator.ofInt(255, 0) in TileDrawable()
|
D | ExtendedBitmapDrawable.java | 465 mPulseAnimator = ValueAnimator.ofInt(55, 255).setDuration(pulseDuration); in Placeholder() 543 mRotateAnimator = ValueAnimator.ofInt(0, 10000) in Progress()
|
/frameworks/base/core/java/com/android/internal/app/ |
D | PlatLogoActivity.java | 113 ObjectAnimator.ofInt(overlay, "alpha", 0, 255) in onAttachedToWindow()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | DragDownHelper.java | 187 ObjectAnimator anim = ObjectAnimator.ofInt(child, "actualHeight", in cancelExpansion()
|
/frameworks/base/core/java/android/widget/ |
D | FastScroller.java | 1667 final PropertyValuesHolder left = PropertyValuesHolder.ofInt(LEFT, bounds.left); in animateBounds() 1668 final PropertyValuesHolder top = PropertyValuesHolder.ofInt(TOP, bounds.top); in animateBounds() 1669 final PropertyValuesHolder right = PropertyValuesHolder.ofInt(RIGHT, bounds.right); in animateBounds() 1670 final PropertyValuesHolder bottom = PropertyValuesHolder.ofInt(BOTTOM, bounds.bottom); in animateBounds()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | TrustDrawable.java | 224 ValueAnimator.ofInt(startAlpha, endAlpha), in makeAnimators()
|
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/drawable/ |
D | AnimatedVectorDrawable_Delegate.java | 246 mValues = PropertyValuesHolder.ofInt("intValue", values); in setValues()
|