Searched defs:reverse (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/core/java/android/animation/
H A DAnimator.java419 // Hide reverse() and canReverse() for now since reverse() only work for simple
421 // TODO: make reverse() works for all the Animators.
432 public void reverse() { method in class:Animator
517 * <li>State change requests ({@link #cancel()}, {@link #end()}, {@link #reverse()}, etc...)
H A DAnimatorSet.java954 // Loop to make sure all the Nodes can reverse.
967 public void reverse() { method in class:AnimatorSet
970 node.animation.reverse();
H A DValueAnimator.java111 * Used to indicate whether the animation is currently playing in reverse. This causes the
117 * Flag to indicate whether this animator is playing in reverse mode, specifically
118 * by being started or interrupted by a call to reverse(). This flag is different than
120 * animator is playing in reverse. It is used in corner cases to determine proper end
205 * will reverse directions on each iteration.
989 * whether the animation should play in reverse. The flag is usually false, but may be set
990 * to true if called from the reverse() method.
998 * @param playBackwards Whether the ValueAnimator should start playing in reverse.
1121 * Plays the ValueAnimator in reverse. If the animation is already running,
1122 * it will stop itself and play backwards from the point reached when reverse wa
1128 public void reverse() { method in class:ValueAnimator
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskStackViewLayoutAlgorithm.java330 static float reverse(float x) { method in class:TaskStackViewLayoutAlgorithm
335 return 1f - (float) (Math.pow(LogBase, reverse(x))) / (LogBase);
339 return (float) (Math.log((1f - reverse(y)) * (LogBase - 1) + 1) / Math.log(LogBase));
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DAbsActionBarView.java241 protected int positionChild(View child, int x, int y, int contentHeight, boolean reverse) { argument
246 if (reverse) {
252 return (reverse ? -childWidth : childWidth);
/frameworks/base/core/java/com/android/internal/widget/
H A DAbsActionBarView.java257 protected int positionChild(View child, int x, int y, int contentHeight, boolean reverse) { argument
262 if (reverse) {
268 return (reverse ? -childWidth : childWidth);
/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimatedVectorDrawable.java464 * Reverses ongoing animations or starts pending animations in reverse.
466 * NOTE: Only works if all animations support reverse. Otherwise, this will
470 public void reverse() { method in class:AnimatedVectorDrawable
471 // Only reverse when all the animators can be reverse. Otherwise, partially
472 // reverse is confusing.
474 Log.w(LOGTAG, "AnimatedVectorDrawable can't reverse()");
481 animator.reverse();
H A DAnimatedStateListDrawable.java168 currentTransition.reverse();
238 public void reverse() { method in class:AnimatedStateListDrawable.Transition
298 public void reverse() { method in class:AnimatedStateListDrawable.AnimationDrawableTransition
299 mAnim.reverse();
337 reverse();
344 public void reverse() { method in class:AnimatedStateListDrawable.AnimatedVectorDrawableTransition
346 mAvd.reverse();
348 Log.w(LOGTAG, "Can't reverse, either the reversible is set to false,"
349 + " or the AnimatedVectorDrawable can't reverse");
/frameworks/base/core/java/com/google/android/util/
H A DAbstractMessageParser.java334 if (matches(getResources().getDomainSuffixes(), reverse(domain))) {
381 // prefix matches, we reverse all the strings to get suffix comparisons.
1329 /** Returns the reverse of the given string. */
1330 protected static String reverse(String str) { method in class:AbstractMessageParser
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DActivatableNotificationView.java254 startActivateAnimation(false /* reverse */);
261 private void startActivateAnimation(boolean reverse) { argument
269 if (reverse) {
279 if (!reverse) {
288 if (reverse) {
304 .alpha(reverse ? 0f : 1f)
316 startActivateAnimation(true /* reverse */);
/frameworks/base/libs/hwui/
H A DSpotShadow.cpp338 reverse(polygon, len);
348 void SpotShadow::reverse(Vector2* polygon, int len) { function in class:android::uirenderer::SpotShadow

Completed in 1776 milliseconds