HomeSort by relevance Sort by last modified time
    Searched defs:move (Results 1 - 25 of 545) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/v850/
move.s 3 .global move
4 move: label
  /external/clang/test/Analysis/
delayed-template-parsing-crash.cpp 9 typename remove_reference<T>::type&& move(T&& arg) { // this used to crash function
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/move/d/
T_move_1.java 17 package dot.junit.opcodes.move.d;
  /external/fmtlib/test/
mock-allocator.h 62 void move(AllocatorRef &other) { function in class:AllocatorRef
69 move(other);
74 move(other);
  /frameworks/base/core/tests/coretests/src/android/transition/
AutoTransitionTest.java 41 Transition move = autoTransition.getTransitionAt(1); local
42 assertNotNull(move);
43 assertTrue(move instanceof ChangeBounds);
  /libcore/ojluni/src/main/java/java/nio/file/
SecureDirectoryStream.java 209 * Move a file from this directory to another directory.
211 * <p> This method works in a similar manner to {@link Files#move move}
225 * the name of the file to move
246 void move(T srcpath, SecureDirectoryStream<T> targetdir, T targetpath) method in interface:SecureDirectoryStream
  /prebuilts/go/darwin-x86/doc/play/
solitaire.go 12 // fields in each direction so that move()
48 var moves int // number of times move is called
50 // move tests if there is a peg at position pos that
52 // move is valid, it is executed and move returns true.
53 // Otherwise, move returns false.
54 func move(pos, dir int) bool { func
65 // unmove reverts a previously executed valid move.
76 // each move in a backward fashion (i.e., the last
87 if move(pos, dir)
    [all...]
  /prebuilts/go/darwin-x86/test/
solitaire.go 19 // so that move() doesn't need to check the board boundaries. Periods
52 var moves int // number of times move is called
54 // move tests if there is a peg at position pos that can jump over another peg
55 // in direction dir. If the move is valid, it is executed and move returns true.
56 // Otherwise, move returns false.
57 func move(pos, dir int) bool { func
68 // unmove reverts a previously executed valid move.
77 // If a solution is found, solve prints the board after each move in a backward
88 if move(pos, dir)
    [all...]
  /prebuilts/go/linux-x86/doc/play/
solitaire.go 12 // fields in each direction so that move()
48 var moves int // number of times move is called
50 // move tests if there is a peg at position pos that
52 // move is valid, it is executed and move returns true.
53 // Otherwise, move returns false.
54 func move(pos, dir int) bool { func
65 // unmove reverts a previously executed valid move.
76 // each move in a backward fashion (i.e., the last
87 if move(pos, dir)
    [all...]
  /prebuilts/go/linux-x86/test/
solitaire.go 19 // so that move() doesn't need to check the board boundaries. Periods
52 var moves int // number of times move is called
54 // move tests if there is a peg at position pos that can jump over another peg
55 // in direction dir. If the move is valid, it is executed and move returns true.
56 // Otherwise, move returns false.
57 func move(pos, dir int) bool { func
68 // unmove reverts a previously executed valid move.
77 // If a solution is found, solve prints the board after each move in a backward
88 if move(pos, dir)
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
maverick.s 124 move: label
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/move/
Test_move.java 17 package dot.junit.opcodes.move;
21 import dot.junit.opcodes.move.d.T_move_1;
25 * @title test move functionality
37 load("dot.junit.opcodes.move.d.T_move_2", VerifyError.class);
45 load("dot.junit.opcodes.move.d.T_move_3", VerifyError.class);
53 load("dot.junit.opcodes.move.d.T_move_4", VerifyError.class);
61 load("dot.junit.opcodes.move.d.T_move_5", VerifyError.class);
69 load("dot.junit.opcodes.move.d.T_move_6", VerifyError.class);
79 load("dot.junit.opcodes.move.d.T_move_7", VerifyError.class);
  /external/chromium-trace/catapult/telemetry/third_party/pyfakefs/pyfakefs/
fake_filesystem_shutil.py 194 def move(self, src, dst): member in class:FakeShutilModule
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/dcl.fct.def.default/
p2.cpp 5 namespace move { namespace
7 Const(const Const&&) = default; // expected-error {{the parameter for an explicitly-defaulted move constructor may not be const}}
8 Const& operator=(const Const&&) = default; // expected-error {{the parameter for an explicitly-defaulted move assignment operator may not be const}}
12 Volatile(volatile Volatile&&) = default; // expected-error {{the parameter for an explicitly-defaulted move constructor may not be volatile}}
13 Volatile& operator=(volatile Volatile&&) = default; // expected-error {{the parameter for an explicitly-defaulted move assignment operator may not be volatile}}
17 AssignmentRet1&& operator=(AssignmentRet1&&) = default; // expected-error {{explicitly-defaulted move assignment operator must return 'move::AssignmentRet1 &'}}
21 const AssignmentRet2& operator=(AssignmentRet2&&) = default; // expected-error {{explicitly-defaulted move assignment operator must return 'move::AssignmentRet2 &'}}
25 ConstAssignment& operator=(ConstAssignment&&) const = default; // expected-error {{an explicitly-defaulted move assignment operator may not have 'const', 'constexpr' or 'volatile' qualifiers}
    [all...]
  /external/javassist/sample/duplicate/
Ball.java 13 move(x, y); method
35 public void move(int x, int y) { method in class:Ball
  /external/libcxx/test/support/
constexpr_char_traits.hpp 40 static TEST_CONSTEXPR_CXX14 char_type* move(char_type* __s1, const char_type* __s2, size_t __n);
100 constexpr_char_traits<_CharT>::move(char_type* __s1, const char_type* __s2, size_t __n) function in class:constexpr_char_traits
  /frameworks/native/libs/input/
VelocityControl.cpp 52 void VelocityControl::move(nsecs_t eventTime, float* deltaX, float* deltaY) { function in class:android::VelocityControl
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/support/
constexpr_char_traits.hpp 39 static TEST_CONSTEXPR_CXX14 char_type* move(char_type* __s1, const char_type* __s2, size_t __n);
99 constexpr_char_traits<_CharT>::move(char_type* __s1, const char_type* __s2, size_t __n) function in class:constexpr_char_traits
  /system/core/debuggerd/tombstoned/
intercept_manager.h 51 InterceptManager(InterceptManager&& move) = delete; member in struct:InterceptManager
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
FileStoreAdapter.java 128 public void move(IFileStore destination, int options, IProgressMonitor monitor) method in class:FileStoreAdapter
130 mStore.move(destination, options, monitor);
  /external/clang/test/SemaCXX/
constexpr-turing.cpp 31 constexpr Tape move(const Tape &old, Dir dir) { return Tape(old, dir); } function
37 run(tm, move(update(tape, tm[state][tape.val].tape),
rval-references-examples.cpp 43 template <class T> typename remove_reference<T>::type&& move(T&& t) { function
67 // Move construction
75 // Move assignment
76 p2 = move(p);
84 accept_unique_ptr(move(p2));
  /external/libcxx/test/std/input.output/iostreams.base/ios/basic.ios.members/
move.pass.cpp 16 // void move(basic_ios&& rhs);
34 void move(std::ios& x) {std::ios::move(x);} function in struct:testios
107 ios1.move(ios2);
  /frameworks/base/tools/aapt2/util/
Maybe.h 102 Maybe& move(Maybe<U>&& rhs);
141 // Move the value from rhs.
142 new (&storage_) T(std::move(reinterpret_cast<T&>(rhs.storage_)));
153 // Move the value from rhs.
154 new (&storage_) T(std::move(reinterpret_cast<U&>(rhs.storage_)));
197 return move(std::forward<Maybe<T>>(rhs));
203 return move(std::forward<Maybe<U>>(rhs));
208 Maybe<T>& Maybe<T>::move(Maybe<U>&& rhs) { function in class:aapt::Maybe
213 // We both are something, so move assign rhs to us.
216 std::move(reinterpret_cast<U&>(rhs.storage_))
    [all...]
  /libcore/luni/src/test/filesystems/src/mypackage/
MockFileSystemProvider.java 92 public void move(Path source, Path target, CopyOption... options) throws IOException { method in class:MockFileSystemProvider

Completed in 1755 milliseconds

1 2 3 4 5 6 7 8 91011>>