Searched defs:move (Results 1 - 25 of 139) sorted by relevance

123456

/external/clang/test/Analysis/
H A Ddelayed-template-parsing-crash.cpp9 typename remove_reference<T>::type&& move(T&& arg) { // this used to crash function
/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/fmtlib/test/
H A Dmock-allocator.h62 void move(AllocatorRef &other) { function in class:AllocatorRef
69 move(other);
74 move(other);
/external/javassist/sample/duplicate/
H A DBall.java13 move(x, y);
35 public void move(int x, int y) { method in class:Ball
/external/libcxx/test/support/
H A Dconstexpr_char_traits.hpp40 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
/external/chromium-trace/catapult/telemetry/third_party/pyfakefs/pyfakefs/
H A Dfake_filesystem_shutil.py194 def move(self, src, dst): member in class:FakeShutilModule
/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/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/eigen/Eigen/src/Core/
H A DDenseStorage.h373 : 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/
H A Dsegment.c92 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/libcxx/test/std/input.output/iostreams.base/ios/basic.ios.members/
H A Dmove.pass.cpp16 // void move(basic_ios&& rhs);
34 void move(std::ios& x) {std::ios::move(x);} function in struct:testios
107 ios1.move(ios2);
/external/v8/src/crankshaft/arm/
H A Dlithium-gap-resolver-arm.cc12 // 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
[all...]
/external/v8/src/crankshaft/mips64/
H A Dlithium-gap-resolver-mips64.cc26 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 an
[all...]
/external/v8/src/crankshaft/ppc/
H A Dlithium-gap-resolver-ppc.cc28 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 an
[all...]
/external/v8/src/crankshaft/s390/
H A Dlithium-gap-resolver-s390.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.
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 an
[all...]
/external/aac/libSBRenc/src/
H A Dton_corr.cpp131 INT move = hTonCorr->move; local
162 for(i = 0 ; i < move; i++){
167 FDKmemmove(nrgVector,nrgVector+noEstPerFrame,move*sizeof(FIXP_DBL));
732 hTonCorr->move = hTonCorr->numberOfEstimates - hTonCorr->numberOfEstimatesPerFrame; /* Number of estimates to move when buffering.*/
784 hTonCorr->move,
H A Dton_corr.h124 INT move; /*!< How many estimates to move in the quotaMatrix, when buffering. */ member in struct:__anon443
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Dp11-1y.cpp70 template<typename T> decltype(auto) move(T &&t) { return static_cast<typename remove_reference<T>::type&&>(t); } function
71 auto s = [s(move(S()))] {};
/external/icu/icu4c/source/common/unicode/
H A Duiter.h46 * Origin constants for UCharIterator.getIndex() and UCharIterator.move().
59 * indicating that the final UTF-16 index is not known, but that the move succeeded.
110 * Function type declaration for UCharIterator.move().
112 * Use iter->move(iter, index, UITER_ZERO) like CharacterIterator::setIndex(index).
126 * move() may return UITER_UNKNOWN_INDEX (-2) to avoid an inefficient
134 * @param origin move relative to the 0, start, limit, length, or current index
246 * getIndex()/move().
254 * (getIndex(UITER_CURRENT) followed by move(pos, UITER_ZERO)) is possible but
265 * the correct text contents and move relative to the current position
295 * the correct text contents and move relativ
401 UCharIteratorMove *move; member in struct:UCharIterator
[all...]
/external/v8/src/compiler/
H A Dgap-resolver.cc22 inline bool Blocks(MoveOperands* move, InstructionOperand destination) { argument
23 return !move->IsEliminated() && move->source().InterferesWith(destination);
26 // Splits a FP move between two location operands into the equivalent series of
27 // moves between smaller sub-operands, e.g. a double move to two single moves.
30 MoveOperands* Split(MoveOperands* move, MachineRepresentation smaller_rep, argument
35 const LocationOperand& src_loc = LocationOperand::cast(move->source());
36 const LocationOperand& dst_loc = LocationOperand::cast(move->destination());
70 // Reuse 'move' for the first fragment. It is not pending.
71 move
91 MoveOperands* move = (*moves)[i]; local
111 auto move = (*moves)[i]; local
119 auto move = (*moves)[i]; local
129 auto move = (*moves)[i]; local
134 PerformMove(ParallelMove* moves, MoveOperands* move) argument
[all...]
/external/v8/src/crankshaft/arm64/
H A Dlithium-gap-resolver-arm64.cc40 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 local
[all...]
/external/v8/src/crankshaft/mips/
H A Dlithium-gap-resolver-mips.cc26 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 an
[all...]
/external/v8/src/crankshaft/x64/
H A Dlithium-gap-resolver-x64.cc24 LMoveOperands move = moves_[i]; local
28 if (!move.IsEliminated() && !move.source()->IsConstantOperand()) {
47 // moves to perform, ignoring any move that is redundant (the source is
49 // unallocated, or the move was already eliminated).
52 LMoveOperands move = moves->at(i); local
53 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone());
60 // Each call to this function performs a move and deletes it from the move
[all...]

Completed in 650 milliseconds

123456