HomeSort by relevance Sort by last modified time
    Searched full:interpolator (Results 276 - 300 of 402) sorted by null

<<11121314151617

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/
XmlFormatStyle.java 81 case INTERPOLATOR:
104 case INTERPOLATOR:
  /sdk/common/src/com/android/resources/
ResourceFolderType.java 29 INTERPOLATOR(AndroidConstants.FD_RES_INTERPOLATOR),
FolderTypeRelationship.java 54 add(ResourceType.INTERPOLATOR, ResourceFolderType.INTERPOLATOR);
  /sdk/eclipse/
dictionary.txt 135 interpolator
  /cts/tests/tests/animation/src/android/animation/cts/
AnimatorTest.java 88 AccelerateInterpolator interpolator = new AccelerateInterpolator(); local
89 ValueAnimator mValueAnimator = mActivity.createAnimatorWithInterpolator(interpolator);
91 assertTrue(interpolator.equals(mValueAnimator.getInterpolator()));
LayoutAnimationTest.java 105 TimeInterpolator interpolator = new AccelerateInterpolator(); local
106 mLayoutTransition.setInterpolator(LayoutTransition.APPEARING, interpolator);
107 assertEquals(interpolator, mLayoutTransition.getInterpolator(
ValueAnimatorTest.java 102 AccelerateInterpolator interpolator = new AccelerateInterpolator(); local
103 ValueAnimator mValueAnimator = mActivity.createAnimatorWithInterpolator(interpolator);
105 assertTrue(interpolator.equals(mValueAnimator.getInterpolator()));
  /frameworks/base/docs/html/sdk/api_diff/11/changes/
pkg_android.view.animation.html 91 <A NAME="Interpolator"></A>
92 <nobr><A HREF="android.view.animation.Interpolator.html"><I>Interpolator</I></A></nobr>
android.widget.OverScroller.html 85 <A NAME="android.widget.OverScroller.ctor_added(android.content.Context, android.view.animation.Interpolator, float, float, boolean)"></A>
86 <nobr><A HREF="../../../../reference/android/widget/OverScroller.html#OverScroller(android.content.Context, android.view.animation.Interpolator, float, float, boolean)" target="_top"><code>OverScroller</code></A>(<code>Context,</nobr> Interpolator<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> boolean<nobr><nobr></code>)</nobr>
android.widget.Scroller.html 85 <A NAME="android.widget.Scroller.ctor_added(android.content.Context, android.view.animation.Interpolator, boolean)"></A>
86 <nobr><A HREF="../../../../reference/android/widget/Scroller.html#Scroller(android.content.Context, android.view.animation.Interpolator, boolean)" target="_top"><code>Scroller</code></A>(<code>Context,</nobr> Interpolator<nobr>,</nobr> boolean<nobr><nobr></code>)</nobr>
  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherViewPropertyAnimator.java 38 INTERPOLATOR
162 mPropertiesToSet.add(Properties.INTERPOLATOR);
213 if (mPropertiesToSet.contains(Properties.INTERPOLATOR)) {
SmoothPagedView.java 21 import android.view.animation.Interpolator;
36 private Interpolator mScrollInterpolator;
38 public static class OvershootInterpolator implements Interpolator {
DragLayer.java 40 import android.view.animation.Interpolator;
523 * @param motionInterpolator The interpolator to use for the location of the view.
524 * @param alphaInterpolator The interpolator to use for the alpha of the view.
535 final Interpolator motionInterpolator, final Interpolator alphaInterpolator,
553 // Fall back to cubic ease out interpolator for the animation if none is specified
554 TimeInterpolator interpolator = null; local
556 interpolator = mCubicEaseOutInterpolator;
597 animateView(view, updateCb, duration, interpolator, onCompleteRunnable, animationEndStyle,
602 TimeInterpolator interpolator, final Runnable onCompleteRunnable
    [all...]
  /frameworks/base/core/java/android/widget/
ProgressBar.java 55 import android.view.animation.Interpolator;
220 private Interpolator mInterpolator;
282 android.R.anim.linear_interpolator); // default to linear interpolator
903 * The interpolator is loaded as a resource from the specified context.
906 * @param resID The resource identifier of the interpolator to load
916 * @param interpolator The interpolator which defines the acceleration curve
918 public void setInterpolator(Interpolator interpolator) {
919 mInterpolator = interpolator;
    [all...]
  /packages/apps/MusicFX/src/com/android/musicfx/seekbar/
ProgressBar.java 51 import android.view.animation.Interpolator;
214 private Interpolator mInterpolator;
275 android.R.anim.linear_interpolator); // default to linear interpolator
843 * The interpolator is loaded as a resource from the specified context.
846 * @param resID The resource identifier of the interpolator to load
856 * @param interpolator The interpolator which defines the acceleration curve
858 public void setInterpolator(Interpolator interpolator) {
859 mInterpolator = interpolator;
    [all...]
  /frameworks/base/core/jni/android/graphics/
Interpolator.cpp 93 "android/graphics/Interpolator",
  /frameworks/av/media/libeffects/testlibs/
AudioShelvingFilter.h 135 // A coefficient interpolator, used for mapping the high level parameters to
138 // A coefficient interpolator, used for mapping the high level parameters to
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
Paper.java 22 import android.view.animation.Interpolator;
106 private final Interpolator mInterpolator;
PhotoFallbackEffect.java 22 import android.view.animation.Interpolator;
33 private static final Interpolator ANIM_INTERPOLATE = new DecelerateInterpolator(1.5f);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/animator/
AnimationContentAssist.java 54 private static final String INTERPOLATOR_PROPERTY_NAME = "interpolator"; //$NON-NLS-1$
77 // Add value completion for the interpolator and propertyName attributes
  /frameworks/base/core/java/android/view/animation/
Animation.java 171 * The interpolator used by the animation to smooth the movement.
173 Interpolator mInterpolator;
217 * Creates a new animation with a duration of 0ms, the default interpolator, with
383 * Sets the acceleration curve for this animation. The interpolator is loaded as
387 * @param resID The resource identifier of the interpolator to load
398 * @param i The interpolator which defines the acceleration curve
401 public void setInterpolator(Interpolator i) {
658 * @return the {@link Interpolator} associated to this animation
661 public Interpolator getInterpolator() {
804 * Gurantees that this animation has an interpolator. Will us
    [all...]
  /frameworks/base/core/java/android/view/
ViewPropertyAnimator.java 83 * The interpolator of the underlying Animator object. By default, we don't set the interpolator
84 * on the Animator and just use its default interpolator. If the interpolator is ever set on
85 * this Animator, then we use the interpolator that it was set to.
90 * A flag indicating whether the interpolator has been set on this object. If not, we don't set
91 * the interpolator on the underlying Animator, but instead just use its default interpolator.
312 * Sets the interpolator for the underlying animator that animates the requested properties.
313 * By default, the animator uses the default interpolator for ValueAnimator. Calling this metho
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
GlobalScreenshot.java 56 import android.view.animation.Interpolator;
471 final Interpolator flashAlphaInterpolator = new Interpolator() {
481 final Interpolator scaleInterpolator = new Interpolator() {
560 final Interpolator scaleInterpolator = new Interpolator() {
  /external/kernel-headers/original/linux/
timex.h 260 * than the standard clock since the interpolator may only correct by having
265 * The interpolator will self-tune the clock by slowing down if no
283 unsigned long offset; /* nsec offset at last update of interpolator */
  /frameworks/base/core/java/android/animation/
Animator.java 104 * The time interpolator used in calculating the elapsed fraction of this animation. The
105 * interpolator determines whether the animation runs with linear or non-linear motion,
109 * @param value the interpolator to be used by this animation

Completed in 330 milliseconds

<<11121314151617