Searched refs:ofInt (Results 1 - 12 of 12) sorted by relevance

/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardSecurityViewHelper.java60 Animator anim = ObjectAnimator.ofInt(bouncerFrame, "alpha", 0, 255);
86 Animator anim = ObjectAnimator.ofInt(bouncerFrame, "alpha", 255, 0);
/frameworks/base/core/java/android/animation/
H A DKeyframeSet.java50 public static KeyframeSet ofInt(int... values) { method in class:KeyframeSet
54 keyframes[0] = (IntKeyframe) Keyframe.ofInt(0f);
55 keyframes[1] = (IntKeyframe) Keyframe.ofInt(1f, values[0]);
57 keyframes[0] = (IntKeyframe) Keyframe.ofInt(0f, values[0]);
59 keyframes[i] = (IntKeyframe) Keyframe.ofInt((float) i / (numKeyframes - 1), values[i]);
H A DKeyframe.java73 public static Keyframe ofInt(float fraction, int value) { method in class:Keyframe
89 public static Keyframe ofInt(float fraction) { method in class:Keyframe
H A DObjectAnimator.java177 public static ObjectAnimator ofInt(Object target, String propertyName, int... values) { method in class:ObjectAnimator
195 public static <T> ObjectAnimator ofInt(T target, Property<T, Integer> property, int... values) { method in class:ObjectAnimator
319 setValues(PropertyValuesHolder.ofInt(mProperty, values));
321 setValues(PropertyValuesHolder.ofInt(mPropertyName, values));
405 * <code>ObjectAnimator.ofInt(target, propertyName, 0, 10).setDuration(500).start()</code>.
H A DLayoutTransition.java268 PropertyValuesHolder pvhLeft = PropertyValuesHolder.ofInt("left", 0, 1);
269 PropertyValuesHolder pvhTop = PropertyValuesHolder.ofInt("top", 0, 1);
270 PropertyValuesHolder pvhRight = PropertyValuesHolder.ofInt("right", 0, 1);
271 PropertyValuesHolder pvhBottom = PropertyValuesHolder.ofInt("bottom", 0, 1);
272 PropertyValuesHolder pvhScrollX = PropertyValuesHolder.ofInt("scrollX", 0, 1);
273 PropertyValuesHolder pvhScrollY = PropertyValuesHolder.ofInt("scrollY", 0, 1);
H A DPropertyValuesHolder.java152 public static PropertyValuesHolder ofInt(String propertyName, int... values) { method in class:PropertyValuesHolder
163 public static PropertyValuesHolder ofInt(Property<?, Integer> property, int... values) { method in class:PropertyValuesHolder
309 mKeyframeSet = KeyframeSet.ofInt(values);
H A DValueAnimator.java260 public static ValueAnimator ofInt(int... values) { method in class:ValueAnimator
340 setValues(new PropertyValuesHolder[]{PropertyValuesHolder.ofInt("", values)});
470 * duration, as in <code>ValueAnimator.ofInt(0, 10).setDuration(500).start()</code>.
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DBitmapMutateActivity.java46 mAnimator = ObjectAnimator.ofInt(view, "offset", 0, PATTERN_SIZE - 1);
/frameworks/base/core/java/com/android/internal/widget/multiwaveview/
H A DTweener.java87 props.add(PropertyValuesHolder.ofInt(key,
/frameworks/base/tests/TileBenchmark/src/com/test/tilebenchmark/
H A DPlaybackView.java189 ValueAnimator tileAnimator = ObjectAnimator.ofInt(invalShape,
/frameworks/base/services/java/com/android/server/accessibility/
H A DScreenMagnifier.java1488 mShowHideFrameAnimator = ObjectAnimator.ofInt(mViewportFrame, PROPERTY_NAME_ALPHA,
/frameworks/base/core/java/android/webkit/
H A DWebViewClassic.java6531 ObjectAnimator.ofInt(mBaseAlpha, "alpha", 0);
6533 ObjectAnimator.ofInt(mExtentAlpha, "alpha", 0);

Completed in 610 milliseconds