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

12345

/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/javassist/sample/duplicate/
H A DBall.java13 move(x, y);
35 public void move(int x, int y) { method in class:Ball
/external/webkit/Source/WebCore/rendering/
H A DTransformState.cpp31 void TransformState::move(int x, int y, TransformAccumulation accumulate) function in class:WebCore::TransformState
44 // Just move the point and, optionally, the quad.
45 m_lastPlanarPoint.move(x, y);
47 m_lastPlanarQuad.move(x, y);
H A DTransformState.h57 void move(const IntSize& s, TransformAccumulation accumulate = FlattenTransform) function in class:WebCore::TransformState
59 move(s.width(), s.height(), accumulate);
62 void move(int x, int y, TransformAccumulation = FlattenTransform);
/external/jmonkeyengine/engine/src/test/jme3test/input/combomoves/
H A DComboMoveExecution.java50 public ComboMoveExecution(ComboMove move){ argument
51 moveDef = move;
91 * Check if move needs to be executed.
94 * @return True if move needs to be executed.
/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, blk_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/v8/src/arm/
H A Dlithium-gap-resolver-arm.cc49 LMoveOperands move = moves_[i]; local
53 if (!move.IsEliminated() && !move.source()->IsConstantOperand()) {
54 root_index_ = i; // Any cycle is found when by reaching this move again.
76 // moves to perform, ignoring any move that is redundant (the source is
78 // unallocated, or the move was already eliminated).
81 LMoveOperands move = moves->at(i); local
82 if (!move.IsRedundant()) moves_.Add(move);
89 // Each call to this function performs a move an
[all...]
/external/v8/src/mips/
H A Dlithium-gap-resolver-mips.cc50 LMoveOperands move = moves_[i]; local
54 if (!move.IsEliminated() && !move.source()->IsConstantOperand()) {
55 root_index_ = i; // Any cycle is found when by reaching this move again.
77 // moves to perform, ignoring any move that is redundant (the source is
79 // unallocated, or the move was already eliminated).
82 LMoveOperands move = moves->at(i); local
83 if (!move.IsRedundant()) moves_.Add(move);
90 // Each call to this function performs a move an
[all...]
/external/v8/src/x64/
H A Dlithium-gap-resolver-x64.cc48 LMoveOperands move = moves_[i]; local
52 if (!move.IsEliminated() && !move.source()->IsConstantOperand()) {
71 // moves to perform, ignoring any move that is redundant (the source is
73 // unallocated, or the move was already eliminated).
76 LMoveOperands move = moves->at(i); local
77 if (!move.IsRedundant()) moves_.Add(move);
84 // Each call to this function performs a move and deletes it from the move
[all...]
/external/webkit/Source/WebCore/html/
H A DDataGridColumnList.cpp94 void DataGridColumnList::move(DataGridColumn* col, unsigned long index) function in class:WebCore::DataGridColumnList
/external/webkit/Source/WebKit/chromium/public/
H A DWebFileSystem.h57 virtual void move(const WebString& srcPath, const WebString& destPath, WebFileSystemCallbacks*) { WEBKIT_ASSERT_NOT_REACHED(); } function in class:WebKit::WebFileSystem
/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));
734 hTonCorr->move = hTonCorr->numberOfEstimates - hTonCorr->numberOfEstimatesPerFrame; /* Number of estimates to move when buffering.*/
786 hTonCorr->move,
H A Dton_corr.h124 INT move; /*!< How many estimates to move in the quotaMatrix, when buffering. */ member in struct:__anon269
/external/chromium/base/
H A Dstring16.h97 static char_type* move(char_type* s1, const char_type* s2, int_type n) { function in struct:base::string16_char_traits
/external/chromium/googleurl/base/
H A Dstring16.h110 static char_type* move(char_type* s1, const char_type* s2, int_type n) { function in struct:base::string16_char_traits
/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'}}
1556 // CHECK-NEXT: <string>Calling defaulted move constructor for &apos;MovableWrapper&apos;</string>
1558 // CHECK-NEXT: <string>Calling defaulted move constructo
[all...]
/external/icu4c/common/unicode/
H A Duiter.h44 * Origin constants for UCharIterator.getIndex() and UCharIterator.move().
57 * indicating that the final UTF-16 index is not known, but that the move succeeded.
108 * Function type declaration for UCharIterator.move().
110 * Use iter->move(iter, index, UITER_ZERO) like CharacterIterator::setIndex(index).
124 * move() may return UITER_UNKNOWN_INDEX (-2) to avoid an inefficient
132 * @param origin move relative to the 0, start, limit, length, or current index
244 * getIndex()/move().
252 * (getIndex(UITER_CURRENT) followed by move(pos, UITER_ZERO)) is possible but
263 * the correct text contents and move relative to the current position
293 * the correct text contents and move relativ
399 UCharIteratorMove *move; member in struct:UCharIterator
[all...]
/external/webkit/Source/JavaScriptCore/icu/unicode/
H A Duiter.h44 * Origin constants for UCharIterator.getIndex() and UCharIterator.move().
57 * indicating that the final UTF-16 index is not known, but that the move succeeded.
108 * Function type declaration for UCharIterator.move().
110 * Use iter->move(iter, index, UITER_ZERO) like CharacterIterator::setIndex(index).
124 * move() may return UITER_UNKNOWN_INDEX (-2) to avoid an inefficient
132 * @param origin move relative to the 0, start, limit, length, or current index
244 * getIndex()/move().
252 * (getIndex(UITER_CURRENT) followed by move(pos, UITER_ZERO)) is possible but
263 * the correct text contents and move relative to the current position
293 * the correct text contents and move relativ
399 UCharIteratorMove *move; member in struct:UCharIterator
[all...]
/external/webkit/Source/JavaScriptGlue/icu/unicode/
H A Duiter.h44 * Origin constants for UCharIterator.getIndex() and UCharIterator.move().
57 * indicating that the final UTF-16 index is not known, but that the move succeeded.
108 * Function type declaration for UCharIterator.move().
110 * Use iter->move(iter, index, UITER_ZERO) like CharacterIterator::setIndex(index).
124 * move() may return UITER_UNKNOWN_INDEX (-2) to avoid an inefficient
132 * @param origin move relative to the 0, start, limit, length, or current index
244 * getIndex()/move().
252 * (getIndex(UITER_CURRENT) followed by move(pos, UITER_ZERO)) is possible but
263 * the correct text contents and move relative to the current position
293 * the correct text contents and move relativ
399 UCharIteratorMove *move; member in struct:UCharIterator
[all...]
/external/webkit/Source/WebCore/icu/unicode/
H A Duiter.h44 * Origin constants for UCharIterator.getIndex() and UCharIterator.move().
57 * indicating that the final UTF-16 index is not known, but that the move succeeded.
108 * Function type declaration for UCharIterator.move().
110 * Use iter->move(iter, index, UITER_ZERO) like CharacterIterator::setIndex(index).
124 * move() may return UITER_UNKNOWN_INDEX (-2) to avoid an inefficient
132 * @param origin move relative to the 0, start, limit, length, or current index
244 * getIndex()/move().
252 * (getIndex(UITER_CURRENT) followed by move(pos, UITER_ZERO)) is possible but
263 * the correct text contents and move relative to the current position
293 * the correct text contents and move relativ
399 UCharIteratorMove *move; member in struct:UCharIterator
[all...]
/external/webkit/Source/WebCore/platform/graphics/
H A DFloatPoint.h88 void move(float dx, float dy) function in class:WebCore::FloatPoint
148 a.move(b.width(), b.height());
154 a.move(b.x(), b.y());
160 a.move(-b.width(), -b.height());
H A DFloatQuad.h97 void move(const FloatSize& offset) function in class:WebCore::FloatQuad
105 void move(float dx, float dy) function in class:WebCore::FloatQuad
107 m_p1.move(dx, dy);
108 m_p2.move(dx, dy);
109 m_p3.move(dx, dy);
110 m_p4.move(dx, dy);
122 a.move(b);
128 a.move(-b.width(), -b.height());

Completed in 1617 milliseconds

12345