HomeSort by relevance Sort by last modified time
    Searched refs:reverse (Results 226 - 250 of 2235) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/python/cpython3/Lib/test/
sortperf.py 50 temp.reverse()
94 L.reverse()
  /external/tensorflow/tensorflow/contrib/layers/python/layers/
rev_block_lib.py 260 # Reverse variable containers to go backward
261 f_vars.reverse()
262 g_vars.reverse()
265 f.reverse()
266 g.reverse()
289 # Variable gradients were collected in reverse layer order. Reverse to match
291 f_var_grads.reverse()
292 g_var_grads.reverse()
335 f.reverse()
    [all...]
  /frameworks/base/core/java/android/animation/
Animator.java 450 // Hide reverse() and canReverse() for now since reverse() only work for simple
452 // TODO: make reverse() works for all the Animators.
463 public void reverse() { method in class:Animator
464 throw new IllegalStateException("Reverse is not supported");
476 * This call starts the animation in regular or reverse direction without requiring them to
481 * @param inReverse whether the animation should play in reverse direction
485 reverse(); method
496 * @param inReverse whether the end value is based on a reverse direction. If yes, this is
533 * @param isReverse Whether the animation is playing in reverse
    [all...]
  /frameworks/base/libs/hwui/
PropertyValuesAnimatorSet.cpp 93 void PropertyValuesAnimatorSet::reverse(AnimationListener* listener) { function in class:android::uirenderer::PropertyValuesAnimatorSet
97 BaseRenderNodeAnimator::reverse();
173 // Check the play direction (i.e. reverse or restart) every other iteration, and calculate the
175 if (iteration % 2 && mRepeatMode == RepeatMode::Reverse) {
  /frameworks/support/room/integration-tests/testapp/src/main/java/androidx/room/integration/testapp/database/
LastNameAscCustomerDataSource.java 88 Collections.reverse(list);
121 Collections.reverse(list);
  /packages/apps/UnifiedEmail/src/com/android/mail/bitmap/
FlipDrawable.java 242 mFlipAnimator.reverse();
247 mFlipAnimator.reverse();
  /platform_testing/libraries/launcher-helper/src/android/support/test/launcherhelper/
BaseLauncher3Strategy.java 102 allAppsContainer, Direction.reverse(getAllAppsScrollDirection()));
133 allWidgetsContainer, Direction.reverse(getAllWidgetsScrollDirection()));
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
sortperf.py 50 temp.reverse()
94 L.reverse()
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
sortperf.py 50 temp.reverse()
94 L.reverse()
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/algorithms/alg.sorting/alg.sort/sort/
sort.pass.cpp 104 // test reverse sorted pattern
105 std::reverse(array, array+N);
112 // test reverse swap ranges 2 pattern
113 std::reverse(array, array+N);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/algorithms/alg.sorting/alg.sort/stable.sort/
stable_sort.pass.cpp 104 // test reverse sorted pattern
105 std::reverse(array, array+N);
112 // test reverse swap ranges 2 pattern
113 std::reverse(array, array+N);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
sortperf.py 50 temp.reverse()
94 L.reverse()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
sortperf.py 50 temp.reverse()
94 L.reverse()
  /system/tools/aidl/tests/
aidl_test_client_parcelables.cpp 58 cout << "Attempting to reverse an array of SimpleParcelable objects." << endl;
69 std::reverse(reversed.begin(), reversed.end());
71 cout << "Failed to reverse an array of SimpleParcelable objects." << endl;
122 cout << "Attempting to reverse an array of PersistableBundle objects."
139 std::reverse(reversed.begin(), reversed.end());
141 cout << "Failed to reverse an array of PersistableBundle objects." << endl;
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/d30v/
mul.s 6 # executions in the reverse order (b)-> (a) nor consecutive execution of
  /external/libvncserver/webclients/java-applet/ssl/
ss_vncviewer 121 # -listen (or -reverse) set up a reverse connection.
210 reverse=""
287 "-listen") reverse=1
289 "-reverse") reverse=1
338 elif [ "X$reverse" != "X" ]; then
369 if [ "X$reverse" != "X" ]; then
372 # check proxy usage under reverse connection:
409 if [ "X$showcert" = "X1" -a "X$SSVNC_USE_S_CLIENT" = "X" -a "X$reverse" = "X" ]; the
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/world/
world 18 reverse lookup is attempted. This script will search the country names and
19 print a list of matching entries. You can force reverse mappings with the
70 --reverse
72 Force reverse lookup. In this mode the address can be any Python
75 this flag), reverse lookup is performed on addresses if no matching
122 def reverse(regexp):
219 ['parse=', 'reverse', 'outputdict', 'help', 'dump'])
232 elif opt in ('-r', '--reverse'):
255 args = filter(None, map(reverse, args))
292 # was adopted for top-level DNS zone names (although in the reverse order
    [all...]
  /external/autotest/client/tools/
diffprofile 63 keys = sorted(diff.keys(), key=lambda x : diff[x], reverse = True)
  /external/eigen/bench/
bench_reverse.cpp 39 b = a.reverse();
  /external/fonttools/Lib/fontTools/misc/
textTools.py 51 items.reverse()
  /external/guava/guava/src/com/google/common/collect/
DescendingImmutableSortedSet.java 32 super(Ordering.from(forward.comparator()).reverse());
EmptyImmutableSortedMap.java 110 return new EmptyImmutableSortedMap<K, V>(Ordering.from(comparator()).reverse(), this);
EmptyImmutableSortedSet.java 128 return new EmptyImmutableSortedSet<E>(Ordering.from(comparator).reverse());
SingletonImmutableList.java 71 @Override public ImmutableList<E> reverse() { method in class:SingletonImmutableList
  /external/icu/tools/srcgen/src/main/java/com/android/icu4j/srcgen/
TagMatchingDeclarations.java 53 // Tackle nodes in reverse order to avoid messing up the ASTNode offsets.
56 for (BodyDeclaration bodyDeclaration : Lists.reverse(matchingNodes)) {

Completed in 900 milliseconds

1 2 3 4 5 6 7 8 91011>>