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

12 3 4 5 6 7 8 91011>>

  /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
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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);
  /art/compiler/optimizing/
parallel_move_test.cc 59 MoveOperands* move = moves_[index]; variable
64 DumpLocationForTest(message_, move->GetSource());
66 DumpLocationForTest(message_, move->GetDestination());
71 MoveOperands* move = moves_[index]; variable
76 DumpLocationForTest(message_, move->GetSource());
78 DumpLocationForTest(message_, move->GetDestination());
130 MoveOperands* move = moves_[index]; variable
135 DumpLocationForTest(message_, move->GetSource());
137 DumpLocationForTest(message_, move->GetDestination());
  /build/make/core/
node_fns.mk 59 # $(call move-var-list,SRC,DST,A B)
68 # $(3): list of variable names to move
70 define move-var-list
249 $(call move-var-list,$(_node_import_context).$(_in),$(1).$(_in),$(3)) \
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
OutputFileDumper.java 121 Files.move(workFile, resultFile);
  /external/e2fsprogs/lib/ext2fs/
brel.h 59 * Move the inode relocation table from one block number to
62 errcode_t (*move)(ext2_brel brel, blk64_t old, blk_t new); member in struct:ext2_block_relocation_table
83 #define ext2fs_brel_move(brel, old, new) ((brel)->move((brel), old, new))
  /external/eigen/Eigen/src/Core/
DenseStorage.h 373 : m_data(std::move(other.m_data))
374 , m_rows(std::move(other.m_rows))
375 , m_cols(std::move(other.m_cols)) function in class:Eigen::DenseStorage
453 : m_data(std::move(other.m_data))
454 , m_cols(std::move(other.m_cols)) function in class:Eigen::DenseStorage
527 : m_data(std::move(other.m_data))
528 , m_rows(std::move(other.m_rows)) function in class:Eigen::DenseStorage
  /external/elfutils/libdwfl/
segment.c 92 const size_t move = dwfl->lookup_elts - i; local
94 move * sizeof dwfl->lookup_addr[0]);
96 move * sizeof dwfl->lookup_segndx[0]);
99 move * sizeof dwfl->lookup_module[0]);
  /external/python/cpython2/Lib/lib-tk/
Tkdnd.py 29 the mouse moves, and at the start and end of a drag-and-drop move, the
248 def move(self, event): member in class:Icon
290 self.canvas.move(self.dndid, x-x1, y-y1)
  /external/python/cpython2/Lib/plat-mac/lib-scriptpackages/Finder/
Standard_Suite.py 89 """delete: Move an item from its container to the trash
200 def move(self, _object, _attributes={}, **_arguments): member in class:Standard_Suite_Events
201 """move: Move object(s) to a new location
202 Required argument: the object(s) to move
211 _subcode = 'move'
  /external/python/cpython3/Lib/tkinter/
dnd.py 29 the mouse moves, and at the start and end of a drag-and-drop move, the
248 def move(self, event): member in class:Icon
290 self.canvas.move(self.dndid, x-x1, y-y1)
  /external/v8/src/crankshaft/arm/
lithium-gap-resolver-arm.cc 12 // moves. We don't need access to roots while resolving the move list and using
35 LMoveOperands move = moves_[i]; local
39 if (!move.IsEliminated() && !move.source()->IsConstantOperand()) {
40 root_index_ = i; // Any cycle is found when by reaching this move again.
68 // moves to perform, ignoring any move that is redundant (the source is
70 // unallocated, or the move was already eliminated).
73 LMoveOperands move = moves->at(i); local
74 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone())
    [all...]
  /external/v8/src/crankshaft/arm64/
lithium-gap-resolver-arm64.cc 40 LMoveOperands move = moves_[i]; local
45 if (!move.IsEliminated() && !move.source()->IsConstantOperand()) {
46 root_index_ = i; // Any cycle is found when we reach this move again.
54 LMoveOperands move = moves_[i]; local
56 if (!move.IsEliminated()) {
57 DCHECK(move.source()->IsConstantOperand());
70 // moves to perform, ignoring any move that is redundant (the source is
72 // unallocated, or the move was already eliminated).
75 LMoveOperands move = moves->at(i) local
    [all...]
  /external/v8/src/crankshaft/mips/
lithium-gap-resolver-mips.cc 26 LMoveOperands move = moves_[i]; local
30 if (!move.IsEliminated() && !move.source()->IsConstantOperand()) {
31 root_index_ = i; // Any cycle is found when by reaching this move again.
53 // moves to perform, ignoring any move that is redundant (the source is
55 // unallocated, or the move was already eliminated).
58 LMoveOperands move = moves->at(i); local
59 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone());
66 // Each call to this function performs a move and deletes it from the mov
    [all...]
  /external/v8/src/crankshaft/mips64/
lithium-gap-resolver-mips64.cc 26 LMoveOperands move = moves_[i]; local
30 if (!move.IsEliminated() && !move.source()->IsConstantOperand()) {
31 root_index_ = i; // Any cycle is found when by reaching this move again.
53 // moves to perform, ignoring any move that is redundant (the source is
55 // unallocated, or the move was already eliminated).
58 LMoveOperands move = moves->at(i); local
59 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone());
66 // Each call to this function performs a move and deletes it from the mov
    [all...]
  /external/v8/src/crankshaft/ppc/
lithium-gap-resolver-ppc.cc 28 LMoveOperands move = moves_[i]; local
32 if (!move.IsEliminated() && !move.source()->IsConstantOperand()) {
33 root_index_ = i; // Any cycle is found when by reaching this move again.
55 // moves to perform, ignoring any move that is redundant (the source is
57 // unallocated, or the move was already eliminated).
60 LMoveOperands move = moves->at(i); local
61 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone());
68 // Each call to this function performs a move and deletes it from the mov
    [all...]
  /external/v8/src/crankshaft/s390/
lithium-gap-resolver-s390.cc 27 LMoveOperands move = moves_[i]; local
31 if (!move.IsEliminated() && !move.source()->IsConstantOperand()) {
32 root_index_ = i; // Any cycle is found when by reaching this move again.
53 // moves to perform, ignoring any move that is redundant (the source is
55 // unallocated, or the move was already eliminated).
58 LMoveOperands move = moves->at(i); local
59 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone());
65 // Each call to this function performs a move and deletes it from the mov
    [all...]
  /external/v8/src/crankshaft/x64/
lithium-gap-resolver-x64.cc 25 LMoveOperands move = moves_[i]; local
29 if (!move.IsEliminated() && !move.source()->IsConstantOperand()) {
48 // moves to perform, ignoring any move that is redundant (the source is
50 // unallocated, or the move was already eliminated).
53 LMoveOperands move = moves->at(i); local
54 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone());
61 // Each call to this function performs a move and deletes it from the move
    [all...]
  /frameworks/base/core/jni/android/graphics/
Utils.cpp 75 bool AssetStreamAdaptor::move(long offset) { function in class:AssetStreamAdaptor
139 return new SkMemoryStream(std::move(data));
  /frameworks/compile/mclinker/include/mcld/ADT/
TreeBase.h 48 void move() { function in class:mcld::TreeIteratorBase
77 inline void TreeIteratorBase::move<TreeIteratorBase::Leftward>() { function in class:mcld::TreeIteratorBase
82 inline void TreeIteratorBase::move<TreeIteratorBase::Rightward>() { function in class:mcld::TreeIteratorBase
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
DragGestureDetector.java 84 move(event, false); method
91 move(event, true); method
104 private void move(MotionEvent event, boolean drop) { method in class:DragGestureDetector
105 mTable.move(mTable.getFocus(),

Completed in 693 milliseconds

12 3 4 5 6 7 8 91011>>