HomeSort by relevance Sort by last modified time
    Searched refs:ofInt (Results 1 - 25 of 32) sorted by null

1 2

  /frameworks/base/core/java/android/animation/
KeyframeSet.java 50 public static KeyframeSet ofInt(int... values) {
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]);
Keyframe.java 73 public static Keyframe ofInt(float fraction, int value) {
89 public static Keyframe ofInt(float fraction) {
ObjectAnimator.java 170 public static ObjectAnimator ofInt(Object target, String propertyName, int... values) {
188 public static <T> ObjectAnimator ofInt(T target, Property<T, Integer> property, int... values) {
312 setValues(PropertyValuesHolder.ofInt(mProperty, values));
314 setValues(PropertyValuesHolder.ofInt(mPropertyName, values));
398 * <code>ObjectAnimator.ofInt(target, propertyName, 0, 10).setDuration(500).start()</code>.
LayoutTransition.java 237 PropertyValuesHolder pvhLeft = PropertyValuesHolder.ofInt("left", 0, 1);
238 PropertyValuesHolder pvhTop = PropertyValuesHolder.ofInt("top", 0, 1);
239 PropertyValuesHolder pvhRight = PropertyValuesHolder.ofInt("right", 0, 1);
240 PropertyValuesHolder pvhBottom = PropertyValuesHolder.ofInt("bottom", 0, 1);
241 PropertyValuesHolder pvhScrollX = PropertyValuesHolder.ofInt("scrollX", 0, 1);
242 PropertyValuesHolder pvhScrollY = PropertyValuesHolder.ofInt("scrollY", 0, 1);
    [all...]
PropertyValuesHolder.java 152 public static PropertyValuesHolder ofInt(String propertyName, int... values) {
163 public static PropertyValuesHolder ofInt(Property<?, Integer> property, int... values) {
309 mKeyframeSet = KeyframeSet.ofInt(values);
    [all...]
ValueAnimator.java 296 public static ValueAnimator ofInt(int... values) {
376 setValues(new PropertyValuesHolder[]{PropertyValuesHolder.ofInt("", values)});
506 * duration, as in <code>ValueAnimator.ofInt(0, 10).setDuration(500).start()</code>.
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
LayoutAnimationsHideShow.java 115 PropertyValuesHolder.ofInt("left", 0, 1);
117 PropertyValuesHolder.ofInt("top", 0, 1);
119 PropertyValuesHolder.ofInt("right", 0, 1);
121 PropertyValuesHolder.ofInt("bottom", 0, 1);
LayoutAnimations.java 151 PropertyValuesHolder.ofInt("left", 0, 1);
153 PropertyValuesHolder.ofInt("top", 0, 1);
155 PropertyValuesHolder.ofInt("right", 0, 1);
157 PropertyValuesHolder.ofInt("bottom", 0, 1);
BouncingBalls.java 70 ValueAnimator colorAnim = ObjectAnimator.ofInt(this, "backgroundColor", RED, BLUE);
  /packages/apps/Email/src/com/android/email/activity/
BannerController.java 99 PropertyValuesHolder.ofInt(PROP_SET_BANNER_Y, getBannerY(), toY) };
ThreePaneLayout.java 421 PropertyValuesHolder.ofInt(PROP_MAILBOX_LIST_LEFT,
423 PropertyValuesHolder.ofInt(PROP_MESSAGE_LIST_WIDTH,
  /packages/apps/Browser/src/com/android/browser/
PhoneUi.java 362 ObjectAnimator tx = ObjectAnimator.ofInt(mAnimScreen.mContent, "left",
364 ObjectAnimator ty = ObjectAnimator.ofInt(mAnimScreen.mContent, "top",
366 ObjectAnimator tr = ObjectAnimator.ofInt(mAnimScreen.mContent, "right",
368 ObjectAnimator tb = ObjectAnimator.ofInt(mAnimScreen.mContent, "bottom",
458 ObjectAnimator l = ObjectAnimator.ofInt(mAnimScreen.mContent, "left",
460 ObjectAnimator t = ObjectAnimator.ofInt(mAnimScreen.mContent, "top",
462 ObjectAnimator r = ObjectAnimator.ofInt(mAnimScreen.mContent, "right",
464 ObjectAnimator b = ObjectAnimator.ofInt(mAnimScreen.mContent, "bottom",
NavTabScroller.java 322 scroll1 = ObjectAnimator.ofInt(this, "scrollX", getScrollX(), getScrollX() + scroll);
324 scroll1 = ObjectAnimator.ofInt(this, "scrollY", getScrollY(), getScrollY() + scroll);
328 trans2 = ObjectAnimator.ofInt(this, "gap", 0, translate);
NavigationBarTablet.java 305 Animator anim2 = ObjectAnimator.ofInt(mUrlContainer, "left", mUrlContainer.getLeft(),
323 Animator anim2 = ObjectAnimator.ofInt(mUrlContainer, "left", 0, awidth);
TabScrollView.java 163 // ObjectAnimator animator = ObjectAnimator.ofInt(tab, "TranslationX", 500, 0);
169 // ObjectAnimator animator = ObjectAnimator.ofInt(
183 ObjectAnimator animator = ObjectAnimator.ofInt(this, "scroll", getScrollX(), newscroll);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
BitmapMutateActivity.java 46 mAnimator = ObjectAnimator.ofInt(view, "offset", 0, PATTERN_SIZE - 1);
  /packages/apps/Launcher2/src/com/android/launcher2/
AppWidgetResizeFrame.java 341 PropertyValuesHolder width = PropertyValuesHolder.ofInt("width", lp.width, newWidth);
342 PropertyValuesHolder height = PropertyValuesHolder.ofInt("height", lp.height,
344 PropertyValuesHolder x = PropertyValuesHolder.ofInt("x", lp.x, newX);
345 PropertyValuesHolder y = PropertyValuesHolder.ofInt("y", lp.y, newY);
Folder.java 401 PropertyValuesHolder width = PropertyValuesHolder.ofInt("width", mNewSize.width());
402 PropertyValuesHolder height = PropertyValuesHolder.ofInt("height", mNewSize.height());
403 PropertyValuesHolder x = PropertyValuesHolder.ofInt("x", mNewSize.left);
404 PropertyValuesHolder y = PropertyValuesHolder.ofInt("y", mNewSize.top);
470 PropertyValuesHolder width = PropertyValuesHolder.ofInt("width", mIconRect.width());
471 PropertyValuesHolder height = PropertyValuesHolder.ofInt("height", mIconRect.height());
472 PropertyValuesHolder x = PropertyValuesHolder.ofInt("x", mIconRect.left);
473 PropertyValuesHolder y = PropertyValuesHolder.ofInt("y", mIconRect.top);
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
Choreographer.java 107 Animator bgAnim = ObjectAnimator.ofInt(background,
  /frameworks/base/tests/TileBenchmark/src/com/test/tilebenchmark/
PlaybackView.java 189 ValueAnimator tileAnimator = ObjectAnimator.ofInt(invalShape,
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
SearchActivityViewTwoPane.java 148 Animator animator = ObjectAnimator.ofInt(mSearchPlate, "alpha", 0, 255);
  /development/samples/HoneycombGallery/src/com/example/android/hcgallery/
MainActivity.java 175 PropertyValuesHolder.ofInt(
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
NotificationRowLayout.java 308 ObjectAnimator.ofInt(this, "forcedHeight", computedHeight)
  /packages/apps/Calendar/src/com/android/calendar/
AllInOneActivity.java 729 final ObjectAnimator slideAnimation = ObjectAnimator.ofInt(this, "controlsOffset",
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/month/
MonthWeekEventsView.java 186 mTodayAnimator = ObjectAnimator.ofInt(MonthWeekEventsView.this,
471 mTodayAnimator = ObjectAnimator.ofInt(this, "animateTodayAlpha",
    [all...]

Completed in 1206 milliseconds

1 2