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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/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;
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue19137.go 26 func move(a, b [20]byte) [20]byte { func
  /prebuilts/go/linux-x86/test/fixedbugs/
issue19137.go 26 func move(a, b [20]byte) [20]byte { func
  /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.27/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/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
emplace_constructible.h 22 : copied(Other.copied + 1), value(std::move(Other.value)) {}
34 value(std::move(Other.value)) {} function in struct:EmplaceConstructibleAndMoveable
40 value = std::move(Other.value);
56 value(std::move(Other.value)) {} function in struct:EmplaceConstructibleMoveableAndAssignable
62 value = std::move(Other.value);
67 value = std::move(xvalue);
  /external/python/cpython2/Demo/tkinter/guido/
brownian2.py 28 canvas.move(p, dx, dy)
34 def move(particle): # move the particle at random time function
37 root.after(int(dt*1000), move, particle)
48 move(particle(canvas))
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowAnimationSetTest.java 25 final Animation move = new TranslateAnimation(0, 100, 0, 100); local
26 move.setDuration(1000);
27 move.setAnimationListener(moveListener);
36 verify(moveListener).onAnimationStart(move);
40 verify(moveListener).onAnimationEnd(move);
  /frameworks/base/libs/protoutil/include/android/util/
EncodedBuffer.h 53 Pointer* move(size_t amt);
54 inline Pointer* move() { return move(1); }; function in class:android::util::EncodedBuffer::Pointer
130 * Read a single byte at ep, and move ep to next byte;
135 * Read varint starting at ep, ep will move to pos of next byte.
140 * Read 4 bytes starting at ep, ep will move to pos of next byte.
145 * Read 8 bytes starting at ep, ep will move to pos of next byte.
  /frameworks/native/libs/input/
VelocityControl.cpp 52 void VelocityControl::move(nsecs_t eventTime, float* deltaX, float* deltaY) { function in class:android::VelocityControl
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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
  /system/core/adb/
range.h 24 explicit Range(std::string data) : data_(std::move(data)) {}
29 Range(Range&& move) = default; member in struct:Range
30 Range& operator=(Range&& move) = default; member in struct:Range
  /system/core/debuggerd/tombstoned/
intercept_manager.h 54 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);

Completed in 342 milliseconds

1 2 3 4 5 6 7 8 91011>>