HomeSort by relevance Sort by last modified time
    Searched full:move (Results 651 - 675 of 10530) sorted by null

<<21222324252627282930>>

  /dalvik/vm/mterp/mips/
OP_INSTANCE_OF.S 59 move a0, v0 # fall through to ${opcode}_store
71 move a1, a3 # a1 <- BBBB
76 move a1, v0 # a1 <- class resolved from BBB
  /external/chromium/base/
file_descriptor_shuffle.h 36 // Destructively move |src| to |dest|, overwriting |dest|. Returns true iff
38 virtual bool Move(int src, int dest) = 0;
50 virtual bool Move(int src, int dest);
  /external/chromium/net/disk_cache/
cache_util_win.cc 45 // I don't want to use the shell version of move because if something goes
46 // wrong, that version will attempt to move file by file and fail at the end.
48 LOG(ERROR) << "Unable to move the cache: " << GetLastError();
  /external/chromium_org/base/posix/
file_descriptor_shuffle.h 38 // Destructively move |src| to |dest|, overwriting |dest|. Returns true iff
40 virtual bool Move(int src, int dest) = 0;
52 virtual bool Move(int src, int dest) OVERRIDE;
  /external/chromium_org/chrome/browser/resources/file_manager/common/js/
progress_center_common.js 44 // The item is file move operation.
45 MOVE: 'move',
  /external/chromium_org/chrome/browser/sync/test/integration/
single_client_bookmarks_sync_test.cc 18 using bookmarks_helper::Move;
103 Move(0, tier1_a, bar, 1);
114 Move(0, tier1_a_url2, tier1_a, 0);
115 Move(0, tier1_a_url1, tier1_a, 2);
122 Move(0, tier1_a_url0, bar, bar->child_count());
126 Move(0, tier1_a_url0, top, top->child_count());
135 Move(0, tier1_b_url0, tier2_b, 0);
136 Move(0, porsche, bar, 0);
146 Move(0, wired, tier1_b, 0);
147 Move(0, porsche, bar, 3)
    [all...]
  /external/chromium_org/third_party/WebKit/ManualTests/
left-overflow-repaint.html 16 In each test, &ldquo;Lorem&rdquo; will move down along with &ldquo;ipsum&rdquo;.
28 Move block with left overflow
41 Move line with left overflow
  /external/chromium_org/ui/views/
view_model_unittest.cc 51 TEST(ViewModel, Move) {
60 model.Move(0, 2);
63 model.Move(2, 0);
  /external/clang/test/CXX/special/class.copy/
implicit-move-def.cpp 86 // move assignment ops
96 // VirtualWithEmptyBase move assignment operatpr
106 // move ctors
  /external/llvm/test/CodeGen/Mips/
llcarry.ll 18 ; 16: move ${{[0-9]+}}, $t8
31 ; 16: move ${{[0-9]+}}, $t8
44 ; 16: move ${{[0-9]+}}, $t8
  /external/speex/libspeex/
misc_bfin.h 44 "LOOP move%= LC0 = %2;\n\t"
45 "LOOP_BEGIN move%=;\n\t"
47 "LOOP_END move%=;\n\t"
  /external/valgrind/main/memcheck/tests/
origin2-not-quite.stderr.exp 3 Conditional jump or move depends on uninitialised value(s)
13 Conditional jump or move depends on uninitialised value(s)
23 Conditional jump or move depends on uninitialised value(s)
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
strstream 251 : istream(_VSTD::move(__rhs)),
252 __sb_(_VSTD::move(__rhs.__sb_))
260 istream::operator=(_VSTD::move(__rhs));
261 __sb_ = _VSTD::move(__rhs.__sb_);
300 : ostream(_VSTD::move(__rhs)),
301 __sb_(_VSTD::move(__rhs.__sb_))
309 ostream::operator=(_VSTD::move(__rhs));
310 __sb_ = _VSTD::move(__rhs.__sb_);
360 : iostream(_VSTD::move(__rhs)),
361 __sb_(_VSTD::move(__rhs.__sb_)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/priority.queue/priqueue.cons.alloc/
ctor_move_alloc.pass.cpp 48 const test_allocator<int>& a) : base(comp, std::move(c), a) {}
49 test(test&& q, const test_allocator<int>& a) : base(std::move(q), a) {}
63 test<MoveOnly> q(std::move(qo), test_allocator<MoveOnly>(6));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/queue/queue.cons.alloc/
ctor_rqueue_alloc.pass.cpp 45 test(container_type&& c, const allocator_type& a) : base(std::move(c), a) {}
46 test(test&& q, const allocator_type& a) : base(std::move(q), a) {}
56 test<MoveOnly> q2(std::move(q), test_allocator<MoveOnly>(5));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/stack/stack.cons.alloc/
ctor_rqueue_alloc.pass.cpp 45 test(container_type&& c, const allocator_type& a) : base(std::move(c), a) {}
46 test(test&& q, const allocator_type& a) : base(std::move(q), a) {}
56 test<MoveOnly> q2(std::move(q), test_allocator<MoveOnly>(5));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/list.cons/
move.pass.cpp 31 std::list<MoveOnly, test_allocator<MoveOnly> > l2 = std::move(l);
44 std::list<MoveOnly, other_allocator<MoveOnly> > l2 = std::move(l);
58 std::list<MoveOnly, min_allocator<MoveOnly> > l2 = std::move(l);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector.bool/
move.pass.cpp 30 std::vector<bool, test_allocator<bool> > l2 = std::move(l);
43 std::vector<bool, other_allocator<bool> > l2 = std::move(l);
57 std::vector<bool, min_allocator<bool> > l2 = std::move(l);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.format/output.streams/ostream.cons/
move.pass.cpp 37 : base(std::move(s)) {}
48 test_ostream<char> os(std::move(os1));
62 test_ostream<wchar_t> os(std::move(os1));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.promise/
set_rvalue.pass.cpp 39 p.set_value(std::move(i));
43 p.set_value(std::move(i));
58 p.set_value(std::move(i));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/
move_convert09.fail.cpp 14 // Test unique_ptr converting move assignment
16 // test converting move assignment with reference deleters
52 s2 = boost::move(s);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/
move_convert13.fail.cpp 14 // Test unique_ptr converting move ctor
16 // test converting move ctor. Should only require a MoveConstructible deleter, or if
49 std::unique_ptr<A[]> s2(std::move(s));
move_convert14.fail.cpp 14 // Test unique_ptr converting move ctor
16 // test converting move ctor. Should only require a MoveConstructible deleter, or if
51 std::unique_ptr<A[], Deleter<A[]> > s2(std::move(s));
move_convert15.fail.cpp 14 // Test unique_ptr converting move ctor
16 // test converting move ctor. Should only require a MoveConstructible deleter, or if
67 std::unique_ptr<A[], CDeleter<A>&> s2(std::move(s));
move_convert16.fail.cpp 14 // Test unique_ptr converting move ctor
16 // test converting move ctor. Should only require a MoveConstructible deleter, or if
49 std::unique_ptr<A[]> s2 = std::move(s);

Completed in 763 milliseconds

<<21222324252627282930>>