Searched defs:move (Results 51 - 75 of 154) sorted by last modified time

1234567

/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/e2fsprogs/lib/ext2fs/
H A Dbrel.h62 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))
H A Direl.h84 * another. Note that the inode references also must move.
86 errcode_t (*move)(ext2_irel irel, ext2_ino_t old, ext2_ino_t new); member in struct:ext2_inode_relocation_table
112 #define ext2fs_irel_move(irel, old, new) ((irel)->move((irel), old, new))
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DCode.java53 * another with {@link #move move()}.
276 * instructions to move parameters into their initial registers. These
493 public <T> void move(Local<T> target, Local<T> source) { method in class:Code
/external/deqp/framework/delibs/decpp/
H A DdeUniquePtr.hpp190 * from a UniquePtr only explicitly with the move() member function.
206 MovePtr<T, Deleter> move (void);
238 inline MovePtr<T, Deleter> UniquePtr<T, Deleter>::move (void) function in class:de::details::UniquePtr
/external/clang/test/Analysis/inlining/
H A Dpath-notes.cpp52 // A simplified version of std::move.
54 T &&move(T &obj) { function
103 // expected-note@-1 {{Calling move constructor for 'Dereferencer'}}
106 // expected-note@-1 {{Calling move assignment operator for 'Dereferencer'}}
128 MovableWrapper w{move(input)};
129 // expected-note@-1 {{Calling defaulted move constructor for 'MovableWrapper'}}
145 w = move(input);
146 // expected-note@-1 {{Calling defaulted move assignment operator for 'MovableWrapper'}}
1797 // CHECK-NEXT: <string>Calling defaulted move constructor for &apos;MovableWrapper&apos;</string>
1799 // CHECK-NEXT: <string>Calling defaulted move constructo
[all...]
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
H A Dp5-0x.cpp209 // A simplified version of std::move.
211 T &&move(T &obj) { function in namespace:bitfields
219 int && ir4 = move(lvalue<IntBitfield>()).i; // no-warning
224 volatile int && vir4 = move(lvalue<IntBitfield>()).i; // no-warning
229 const int && cir4 = move(lvalue<IntBitfield>()).i; // no-warning
234 const volatile int && cvir4 = move(lvalue<IntBitfield>()).i; // no-warning
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/dcl.fct.def.default/
H A Dp2.cpp5 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 assignmen
[all...]
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Dp11-1y.cpp69 template<typename T> decltype(auto) move(T &&t) { return static_cast<typename remove_reference<T>::type&&>(t); } function
70 auto s = [s(move(S()))] {};
/external/clang/test/CXX/special/class.copy/
H A Dimplicit-move.cpp3 // Tests for implicit (non-)declaration of move constructor and
6 // This class, used as a member, allows to distinguish move from copy because
7 // move operations are no-throw, copy operations aren't.
31 HasMoveConstructor(HasMoveConstructor &&) noexcept; // expected-note {{copy assignment operator is implicitly deleted because 'HasMoveConstructor' has a user-declared move constructor}}
194 // longer inhibits the declaration of a move operation.
204 // DR1402: A non-trivially-move-assignable virtual base class no longer
205 // inhibits the declaration of a move assignment (even though it might
206 // move-assign the base class multiple times).
232 MoveOnly(MoveOnly&&); // expected-note {{user-declared move}}
278 template<typename T> void move( function in namespace:DR1402::VbaseMove
[all...]
/external/clang/test/SemaCXX/
H A Dconstexpr-turing.cpp31 constexpr Tape move(const Tape &old, Dir dir) { return Tape(old, dir); } function
37 run(tm, move(update(tape, tm[state][tape.val].tape),
H A Drval-references-examples.cpp43 template <class T> typename remove_reference<T>::type&& move(T&& t) { function
76 p2 = move(p);
84 accept_unique_ptr(move(p2));
/external/chromium_org/v8/src/arm/
H A Dlithium-codegen-arm.cc1083 void LCodeGen::DoParallelMove(LParallelMove* move) { argument
1084 resolver_.Resolve(move);
1093 LParallelMove* move = gap->GetParallelMove(inner_pos); local
1094 if (move != NULL) DoParallelMove(move);
5666 // Nothing to see here, move on!
5671 // Nothing to see here, move on!
H A Dlithium-gap-resolver-arm.cc14 // moves. We don't need access to roots while resolving the move list and using
37 LMoveOperands move = moves_[i]; local
41 if (!move.IsEliminated() && !move.source()->IsConstantOperand()) {
42 root_index_ = i; // Any cycle is found when by reaching this move again.
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
76 if (!move.IsRedundant()) moves_.Add(move, cgen
[all...]
/external/chromium_org/v8/src/arm64/
H A Dlithium-codegen-arm64.cc1456 LParallelMove* move = gap->GetParallelMove(inner_pos); local
1457 if (move != NULL) {
1458 resolver_.Resolve(move);
2357 // 32 bits of lo_reg, and move to a floating point register.
2846 // Nothing to see here, move on!
2851 // Nothing to see here, move on!
H A Dlithium-gap-resolver-arm64.cc42 LMoveOperands move = moves_[i]; local
47 if (!move.IsEliminated() && !move.source()->IsConstantOperand()) {
48 root_index_ = i; // Any cycle is found when we reach this move again.
56 LMoveOperands move = moves_[i]; local
58 if (!move.IsEliminated()) {
59 DCHECK(move.source()->IsConstantOperand());
72 // moves to perform, ignoring any move that is redundant (the source is
74 // unallocated, or the move was already eliminated).
77 LMoveOperands move local
[all...]
/external/chromium_org/v8/src/compiler/
H A Dcode-generator.cc173 ParallelMove* move = instr->GetParallelMove(inner_pos); local
174 if (move != NULL) resolver()->Resolve(move);
H A Dinstruction.cc115 for (ZoneList<MoveOperands>::iterator move = pm.move_operands()->begin();
116 move != pm.move_operands()->end(); ++move) {
117 if (move->IsEliminated()) continue;
120 os << *move; local
H A Dregister-allocator.cc713 ParallelMove* move = local
716 const ZoneList<MoveOperands>* move_operands = move->move_operands();
723 move->AddMove(cur.source(), to, code_zone());
729 move->AddMove(from, to, code_zone());
783 // and insert a gap move from the fixed output to the operand.
800 // This move to spill operand is not a real use. Liveness analysis
805 ParallelMove* move = local
807 move->AddMove(output, range->GetSpillOperand(), code_zone());
853 // Make sure we add a gap move for spilling (if we have not done
858 // This move t
863 ParallelMove* move = local
961 ParallelMove* move = local
1236 ParallelMove* move = GetConnectingParallelMove(pos); local
1311 ParallelMove* move = local
[all...]
/external/chromium_org/v8/src/ia32/
H A Dlithium-codegen-ia32.cc1046 void LCodeGen::DoParallelMove(LParallelMove* move) { argument
1047 resolver_.Resolve(move);
1056 LParallelMove* move = gap->GetParallelMove(inner_pos); local
1057 if (move != NULL) DoParallelMove(move);
5467 // Nothing to see here, move on!
5472 // Nothing to see here, move on!
H A Dlithium-gap-resolver-ia32.cc29 LMoveOperands move = moves_[i]; local
33 if (!move.IsEliminated() && !move.source()->IsConstantOperand()) {
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()) AddMove(move);
66 // Each call to this function performs a move and deletes it from the move
130 AddMove(LMoveOperands move) argument
[all...]
/external/chromium_org/v8/src/
H A Dlithium-allocator.cc732 LParallelMove* move = gap->GetOrCreateParallelMove(LGap::START, local
735 const ZoneList<LMoveOperands>* move_operands = move->move_operands();
742 move->AddMove(cur.source(), to, chunk()->zone());
748 move->AddMove(from, to, chunk()->zone());
805 // This move to spill operand is not a real use. Liveness analysis
810 LParallelMove* move = gap->GetOrCreateParallelMove(LGap::BEFORE, local
812 move->AddMove(first_output, range->GetSpillOperand(),
896 LParallelMove* move = gap->GetOrCreateParallelMove(LGap::START, local
898 const ZoneList<LMoveOperands>* move_operands = move->move_operands();
907 // This is a phi resolving move
1215 LParallelMove* move = GetConnectingParallelMove(pos); local
1286 LParallelMove* move = gap->GetOrCreateParallelMove(LGap::START, local
[all...]
/external/chromium_org/v8/src/mips/
H A Dlithium-codegen-mips.cc1043 void LCodeGen::DoParallelMove(LParallelMove* move) { argument
1044 resolver_.Resolve(move);
1053 LParallelMove* move = gap->GetParallelMove(inner_pos); local
1054 if (move != NULL) DoParallelMove(move);
5679 // Nothing to see here, move on!
5684 // Nothing to see here, move on!
H A Dlithium-gap-resolver-mips.cc27 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.
54 // moves to perform, ignoring any move that is redundant (the source is
56 // unallocated, or the move was already eliminated).
59 LMoveOperands move = moves->at(i); local
60 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone());
67 // Each call to this function performs a move an
[all...]
/external/chromium_org/v8/src/mips64/
H A Dlithium-codegen-mips64.cc993 void LCodeGen::DoParallelMove(LParallelMove* move) { argument
994 resolver_.Resolve(move);
1003 LParallelMove* move = gap->GetParallelMove(inner_pos); local
1004 if (move != NULL) DoParallelMove(move);
5712 // Nothing to see here, move on!
5717 // Nothing to see here, move on!

Completed in 7467 milliseconds

1234567