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

1 2

  /development/samples/devbytes/animation/SquashAndStretch/src/com/example/squashandstretch/
SquashAndStretch.java 85 PropertyValuesHolder pvhSY = PropertyValuesHolder.ofFloat(View.SCALE_Y, 1.2f);
93 pvhSY = PropertyValuesHolder.ofFloat(View.SCALE_Y, .5f);
104 pvhSY = PropertyValuesHolder.ofFloat(View.SCALE_Y, 1);
  /development/samples/devbytes/animation/ListViewCellInsertion/src/com/example/android/insertingcells/
RoundView.java 73 .SCALE_Y, SCALE_FACTOR);
InsertionListView.java 173 (View.SCALE_Y, 0, 1.0f);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
KeyPreviewDrawParams.java 154 target, View.SCALE_Y, mShowUpStartYScale,
174 target, View.SCALE_Y, mDismissEndYScale);
  /development/samples/devbytes/animation/ToonGame/src/com/example/android/toongame/
ToonGame.java 186 PropertyValuesHolder pvhSY = PropertyValuesHolder.ofFloat(View.SCALE_Y, 1.2f);
192 pvhSY = PropertyValuesHolder.ofFloat(View.SCALE_Y, 1);
197 pvhSY = PropertyValuesHolder.ofFloat(View.SCALE_Y, squash);
PlayerSetupActivity.java 174 PropertyValuesHolder.ofFloat(View.SCALE_Y, 3);
301 PropertyValuesHolder pvhSY = PropertyValuesHolder.ofFloat(View.SCALE_Y, 1);
  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherViewPropertyAnimator.java 33 SCALE_Y,
211 if (mPropertiesToSet.contains(Properties.SCALE_Y)) {
250 mPropertiesToSet.add(Properties.SCALE_Y);
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherViewPropertyAnimator.java 33 SCALE_Y,
212 if (mPropertiesToSet.contains(Properties.SCALE_Y)) {
254 mPropertiesToSet.add(Properties.SCALE_Y);
FocusIndicatorView.java 107 PropertyValuesHolder.ofFloat(View.SCALE_Y, mTargetState.scaleY));
  /frameworks/base/core/java/android/view/
ViewPropertyAnimator.java 147 static final int SCALE_Y = 0x0010;
157 SCALE_X | SCALE_Y | ROTATION | ROTATION_X | ROTATION_Y | X | Y | Z;
711 animateProperty(SCALE_Y, value);
724 animatePropertyBy(SCALE_Y, value);
    [all...]
RenderNodeAnimator.java 43 public static final int SCALE_Y = 4;
72 put(ViewPropertyAnimator.SCALE_Y, SCALE_Y);
  /packages/apps/DeskClock/src/com/android/deskclock/
AnimatorUtils.java 111 PropertyValuesHolder.ofFloat(View.SCALE_Y, values));
  /development/samples/training/AnimationsDemo/src/com/example/android/animationsdemo/
ZoomActivity.java 101 * <li>Animate each of four positioning/sizing properties (X, Y, SCALE_X, SCALE_Y)
160 // Set the pivot point for SCALE_X and SCALE_Y transformations to the top-left corner of
166 // (X, Y, SCALE_X, and SCALE_Y).
174 .with(ObjectAnimator.ofFloat(expandedImageView, View.SCALE_Y, startScale, 1f));
210 .ofFloat(expandedImageView, View.SCALE_Y, startScaleFinal));
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/widget/accessibility/
AccessibilityTabModelListItem.java 488 ObjectAnimator scaleY = ObjectAnimator.ofFloat(this, View.SCALE_Y, 1.f);
505 ObjectAnimator shrinkY = ObjectAnimator.ofFloat(this, View.SCALE_Y, 0.f);
521 ObjectAnimator shrinkY = ObjectAnimator.ofFloat(this, View.SCALE_Y, 0.f);
  /developers/build/prebuilts/gradle/Interpolator/Application/src/main/java/com/example/android/interpolator/
InterpolatorFragment.java 195 * {@link View#SCALE_X} and {@link View#SCALE_Y} properties, with its animation based on a path.
207 ObjectAnimator animator = ObjectAnimator.ofFloat(mView, View.SCALE_X, View.SCALE_Y, path);
  /developers/samples/android/ui/Interpolator/Application/src/main/java/com/example/android/interpolator/
InterpolatorFragment.java 195 * {@link View#SCALE_X} and {@link View#SCALE_Y} properties, with its animation based on a path.
207 ObjectAnimator animator = ObjectAnimator.ofFloat(mView, View.SCALE_X, View.SCALE_Y, path);
  /development/samples/browseable/Interpolator/src/com.example.android.interpolator/
InterpolatorFragment.java 195 * {@link View#SCALE_X} and {@link View#SCALE_Y} properties, with its animation based on a path.
207 ObjectAnimator animator = ObjectAnimator.ofFloat(mView, View.SCALE_X, View.SCALE_Y, path);
  /development/samples/devbytes/animation/PropertyAnimations/src/com/example/android/propertyanimations/
PropertyAnimations.java 76 PropertyValuesHolder pvhY = PropertyValuesHolder.ofFloat(View.SCALE_Y, 2);
  /frameworks/base/libs/hwui/
Animator.h 125 SCALE_Y,
RenderNode.h 85 SCALE_Y = 1 << 6,
Animator.cpp 194 {RenderNode::SCALE_Y, &RenderProperties::getScaleY, &RenderProperties::setScaleY },
  /packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/
SgvAnimationHelper.java 208 View.SCALE_Y, view.getScaleY(), 1.0f);
230 final ObjectAnimator scaleAnimatorY = ObjectAnimator.ofFloat(view, View.SCALE_Y,
  /packages/apps/Calculator/src/com/android/calculator2/
Calculator.java 289 ObjectAnimator.ofFloat(textView, View.SCALE_Y, textScale, 1.0f),
427 ObjectAnimator.ofFloat(mResultEditText, View.SCALE_Y, resultScale),
  /packages/apps/DeskClock/src/com/android/deskclock/alarms/
AlarmActivity.java 210 PropertyValuesHolder.ofFloat(View.SCALE_Y, 0.0f, 1.0f),
396 PropertyValuesHolder.ofFloat(View.SCALE_Y, BUTTON_SCALE_DEFAULT, 1.0f),
  /packages/apps/Browser/src/com/android/browser/
BrowserSnapshotPage.java 221 ObjectAnimator.ofFloat(null, View.SCALE_Y, 0f, 1f));

Completed in 1461 milliseconds

1 2