/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/events/ |
D | SystemEventChipAnimationController.kt | 121 val moveIn = ValueAnimator.ofInt(chipMinWidth, chipWidth).apply { in onSystemEventAnimationBegin() 150 val width1 = ValueAnimator.ofInt(chipWidth, chipMinWidth).apply { in createMoveOutAnimationForDot() 158 val width2 = ValueAnimator.ofInt(chipMinWidth, dotSize).apply { in createMoveOutAnimationForDot() 169 val height1 = ValueAnimator.ofInt(chipBounds.height(), keyFrame1Height).apply { in createMoveOutAnimationForDot() 178 val height2 = ValueAnimator.ofInt(keyFrame1Height, dotSize).apply { in createMoveOutAnimationForDot() 189 val moveOut = ValueAnimator.ofInt(0, dotSize).apply { in createMoveOutAnimationForDot() 223 val moveOut = ValueAnimator.ofInt(chipWidth, chipMinWidth).apply { in createMoveOutAnimationDefault() 265 val animator = ValueAnimator.ofInt(0, 1).setDuration(0) in init()
|
/frameworks/base/core/java/android/animation/ |
D | KeyframeSet.java | 58 public static KeyframeSet ofInt(int... values) { in ofInt() method in KeyframeSet 62 keyframes[0] = (IntKeyframe) Keyframe.ofInt(0f); in ofInt() 63 keyframes[1] = (IntKeyframe) Keyframe.ofInt(1f, values[0]); in ofInt() 65 keyframes[0] = (IntKeyframe) Keyframe.ofInt(0f, values[0]); in ofInt() 68 (IntKeyframe) Keyframe.ofInt((float) i / (numKeyframes - 1), values[i]); in ofInt()
|
D | ObjectAnimator.java | 237 public static ObjectAnimator ofInt(Object target, String propertyName, int... values) { in ofInt() method in ObjectAnimator 260 public static ObjectAnimator ofInt(Object target, String xPropertyName, String yPropertyName, in ofInt() method in ObjectAnimator 283 public static <T> ObjectAnimator ofInt(T target, Property<T, Integer> property, int... values) { in ofInt() method in ObjectAnimator 302 public static <T> ObjectAnimator ofInt(T target, Property<T, Integer> xProperty, in ofInt() method in ObjectAnimator 396 ObjectAnimator animator = ofInt(target, propertyName, values); in ofArgb() 416 ObjectAnimator animator = ofInt(target, property, values); in ofArgb() 760 setValues(PropertyValuesHolder.ofInt(mProperty, values)); in setIntValues() 762 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 | 287 PropertyValuesHolder pvhLeft = PropertyValuesHolder.ofInt("left", 0, 1); in LayoutTransition() 288 PropertyValuesHolder pvhTop = PropertyValuesHolder.ofInt("top", 0, 1); in LayoutTransition() 289 PropertyValuesHolder pvhRight = PropertyValuesHolder.ofInt("right", 0, 1); in LayoutTransition() 290 PropertyValuesHolder pvhBottom = PropertyValuesHolder.ofInt("bottom", 0, 1); in LayoutTransition() 291 PropertyValuesHolder pvhScrollX = PropertyValuesHolder.ofInt("scrollX", 0, 1); in LayoutTransition() 292 PropertyValuesHolder pvhScrollY = PropertyValuesHolder.ofInt("scrollY", 0, 1); in LayoutTransition()
|
/frameworks/base/tests/UiBench/src/com/android/test/uibench/ |
D | ResizeHWLayerActivity.java | 43 PropertyValuesHolder pvhWidth = PropertyValuesHolder.ofInt("width", width, 1); in onCreate() 44 PropertyValuesHolder pvhHeight = PropertyValuesHolder.ofInt("height", height, 1); in onCreate()
|
D | FullscreenOverdrawActivity.java | 78 ObjectAnimator objectAnimator = ObjectAnimator.ofInt(overdraw, "colorValue", 0, 255); in onCreate()
|
D | InvalidateTreeActivity.java | 74 ObjectAnimator animator = ObjectAnimator.ofInt(this, "ignoredValue", 0, 1000);
|
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/java/android/transition/ |
D | ChangeScroll.java | 85 scrollXAnimator = ObjectAnimator.ofInt(view, "scrollX", startX, endX); in createAnimator() 89 scrollYAnimator = ObjectAnimator.ofInt(view, "scrollY", startY, endY); in createAnimator()
|
D | Crossfade.java | 204 anim = ObjectAnimator.ofInt(startDrawable, "alpha", 255, 0, 0); in createAnimator() 206 anim = ObjectAnimator.ofInt(startDrawable, "alpha", 0); in createAnimator()
|
D | ChangeText.java | 217 outAnim = ValueAnimator.ofInt(Color.alpha(startColor), 0); in createAnimator() 243 inAnim = ValueAnimator.ofInt(0, Color.alpha(endColor)); in createAnimator()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/ |
D | AuthPanelController.java | 166 ValueAnimator marginAnimator = ValueAnimator.ofInt(mMargin, margin); in updateForContentDimensions() 178 ValueAnimator heightAnimator = ValueAnimator.ofInt(mContentHeight, contentHeight); in updateForContentDimensions() 185 ValueAnimator widthAnimator = ValueAnimator.ofInt(mContentWidth, contentWidth); in updateForContentDimensions()
|
D | AuthRippleView.kt | 135 val retractAlphaAnimator = ValueAnimator.ofInt(255, 0).apply { in <lambda>() 174 fadeDwellAnimator = ValueAnimator.ofInt(Color.alpha(dwellShader.color), 0).apply { in <lambda>()
|
/frameworks/base/tests/graphics/HwAccelerationTest/src/com/android/test/hwui/ |
D | ColorFiltersMutateActivity.java | 100 ObjectAnimator light = ObjectAnimator.ofInt(this, "lightAdd", 0x00101030); in BitmapsView() 107 ObjectAnimator mult = ObjectAnimator.ofInt(this, "lightMul", 0x0060ffff); in BitmapsView() 114 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/libs/WindowManager/Shell/src/com/android/wm/shell/windowdecor/ |
D | MaximizeButtonView.kt | 67 ValueAnimator.ofInt(0, MAX_DRAWABLE_ALPHA) in startHoverAnimation() 74 ObjectAnimator.ofInt(progressBar, "progress", 100) in startHoverAnimation()
|
/frameworks/base/core/tests/coretests/src/android/animation/ |
D | AnimatorSetActivityTest.java | 91 a4 = ValueAnimator.ofInt(100, 200).setDuration(450); in setUp() 601 ObjectAnimator animator1 = ObjectAnimator.ofInt(target1, property, 0, 100); in testInitializeWithoutReadingValues() 602 ObjectAnimator animator2 = ObjectAnimator.ofInt(target2, property, 0, 100); in testInitializeWithoutReadingValues() 603 ObjectAnimator animator3 = ObjectAnimator.ofInt(target3, property, 0, 100); in testInitializeWithoutReadingValues() 633 ObjectAnimator animator1 = ObjectAnimator.ofInt(target, property, 0, 100); in initAfterStartNotification() 634 ObjectAnimator animator2 = ObjectAnimator.ofInt(target, property, 0, 100); in initAfterStartNotification() 635 ObjectAnimator animator3 = ObjectAnimator.ofInt(target, property, 0, 100); in initAfterStartNotification()
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/common/split/ |
D | DividerHandleView.java | 145 ObjectAnimator widthAnimator = ObjectAnimator.ofInt(this, WIDTH_PROPERTY, in animateToTarget() 147 ObjectAnimator heightAnimator = ObjectAnimator.ofInt(this, HEIGHT_PROPERTY, in animateToTarget()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/assist/ |
D | AssistDisclosure.java | 116 mAlphaInAnimator = ValueAnimator.ofInt(0, FULL_ALPHA) in AssistDisclosureView() 120 mAlphaOutAnimator = ValueAnimator.ofInt(FULL_ALPHA, 0).setDuration( in AssistDisclosureView()
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/common/bubbles/ |
D | DismissView.kt | 144 val alphaAnim = ObjectAnimator.ofInt(gradientDrawable, GRADIENT_ALPHA, in show() 163 val alphaAnim = ObjectAnimator.ofInt(gradientDrawable, GRADIENT_ALPHA, in hide()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/ |
D | TouchAnimator.java | 149 add(target, KeyframeSet.ofInt(getProperty(target, property, int.class), values)); in addInt() 232 public static KeyframeSet ofInt(Property property, int... values) { in ofInt() method in TouchAnimator.KeyframeSet
|
/frameworks/libs/systemui/iconloaderlib/src/com/android/launcher3/icons/ |
D | PlaceHolderIconDrawable.java | 62 ValueAnimator iconUpdateAnimation = ValueAnimator.ofInt(originalAlpha, 0); in animateIconUpdate()
|
/frameworks/base/tests/JankBench/app/src/main/java/com/android/benchmark/ui/ |
D | FullScreenOverdrawActivity.java | 56 ObjectAnimator objectAnimator = ObjectAnimator.ofInt(this, "colorValue", 0, 255); in onTouchEvent()
|