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

1 23 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
char_traits.h 113 move(char_type* __s1, const char_type* __s2, std::size_t __n);
180 move(char_type* __s1, const char_type* __s2, std::size_t __n) function in class:char_traits
266 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
337 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
433 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
526 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
shared_ptr.h 166 : __shared_ptr<_Tp>(__p, __d, std::move(__a)) { }
185 : __shared_ptr<_Tp>(__p, __d, std::move(__a)) { }
222 * @brief Move-constructs a %shared_ptr instance from @a __r.
227 : __shared_ptr<_Tp>(std::move(__r)) { } function in class:shared_ptr
230 * @brief Move-constructs a %shared_ptr instance from @a __r.
237 : __shared_ptr<_Tp>(std::move(__r)) { } function in class:shared_ptr
258 : __shared_ptr<_Tp>(std::move(__r)) { }
283 this->__shared_ptr<_Tp>::operator=(std::move(__r));
291 this->__shared_ptr<_Tp>::operator=(std::move(__r));
299 this->__shared_ptr<_Tp>::operator=(std::move(__r))
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
char_traits.h 113 move(char_type* __s1, const char_type* __s2, std::size_t __n);
180 move(char_type* __s1, const char_type* __s2, std::size_t __n) function in class:char_traits
266 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
337 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
433 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
526 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
shared_ptr.h 166 : __shared_ptr<_Tp>(__p, __d, std::move(__a)) { }
185 : __shared_ptr<_Tp>(__p, __d, std::move(__a)) { }
222 * @brief Move-constructs a %shared_ptr instance from @a __r.
227 : __shared_ptr<_Tp>(std::move(__r)) { } function in class:shared_ptr
230 * @brief Move-constructs a %shared_ptr instance from @a __r.
237 : __shared_ptr<_Tp>(std::move(__r)) { } function in class:shared_ptr
258 : __shared_ptr<_Tp>(std::move(__r)) { }
283 this->__shared_ptr<_Tp>::operator=(std::move(__r));
291 this->__shared_ptr<_Tp>::operator=(std::move(__r));
299 this->__shared_ptr<_Tp>::operator=(std::move(__r))
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/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)
  /prebuilts/gdb/darwin-x86/lib/python2.7/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'
  /prebuilts/gdb/linux-x86/lib/python2.7/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)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/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)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/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'
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/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)
  /art/compiler/optimizing/
parallel_move_resolver.cc 26 // moves to perform, ignoring any move that is redundant (the source is
28 // unallocated, or the move was already eliminated).
30 MoveOperands* move = parallel_move->MoveOperandsAt(i); local
31 if (!move->IsRedundant()) {
32 moves_.push_back(move);
42 // Move stack/stack slot to take advantage of a free register on constrained machines.
44 const MoveOperands& move = *moves_[i]; local
46 if (move.IsEliminated() || move.GetSource().IsConstant()) {
50 if ((move.GetSource().IsStackSlot() || move.GetSource().IsDoubleStackSlot()) &
57 const MoveOperands& move = *moves_[i]; local
68 MoveOperands* move = moves_[i]; local
127 MoveOperands* move = moves_[index]; local
314 const MoveOperands& move = *moves_[i]; local
327 MoveOperands* move = moves_[i]; local
347 MoveOperands* move = moves_[i]; local
407 MoveOperands* move = moves_[index]; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
shutil.py 26 "copytree", "move", "rmtree", "Error", "SpecialFileError",
265 def move(src, dst): function
266 """Recursively move a file or directory to another location. This is
298 raise Error, "Cannot move a directory '%s' into itself '%s'." % (src, dst)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
shutil.py 26 "copytree", "move", "rmtree", "Error", "SpecialFileError",
261 def move(src, dst): function
262 """Recursively move a file or directory to another location. This is
294 raise Error, "Cannot move a directory '%s' into itself '%s'." % (src, dst)
  /external/aac/libSBRenc/src/
ton_corr.cpp 147 INT move = hTonCorr->move; local
174 for (i = 0; i < move; i++) {
181 FDKmemmove(nrgVector, nrgVector + noEstPerFrame, move * sizeof(FIXP_DBL));
766 hTonCorr->move = hTonCorr->numberOfEstimates -
768 to move when
770 if (hTonCorr->move < 0) {
811 noQmfChannels, hTonCorr->numberOfEstimates, hTonCorr->move,
    [all...]
ton_corr.h 145 INT move; /*!< How many estimates to move in the quotaMatrix, when buffering. member in struct:__anon14080
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p11-1y.cpp 70 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/deqp/framework/delibs/decpp/
deUniquePtr.hpp 190 * 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/e2fsprogs/lib/ext2fs/
irel.h 83 * Move the inode relocation table from one inode number to
84 * 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/icu/icu4c/source/common/
uchriter.cpp 297 UCharCharacterIterator::move(int32_t delta, CharacterIterator::EOrigin origin) { function in class:UCharCharacterIterator
  /external/icu/icu4c/source/common/unicode/
uiter.h 46 * 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 relative to the current positio
401 UCharIteratorMove *move; member in struct:UCharIterator
    [all...]
  /external/libcxx/src/experimental/filesystem/
directory_iterator.cpp 70 : __stream_(__ds.__stream_), __root_(std::move(__ds.__root_)),
71 __entry_(std::move(__ds.__entry_)) { function in class:__dir_stream
131 : __stream_(other.__stream_), __root_(std::move(other.__root_)),
132 __entry_(std::move(other.__entry_))
243 __imp_->__stack_.push(_VSTD::move(new_s));
323 __imp_->__stack_.push(_VSTD::move(new_it));
  /external/python/cpython2/Demo/turtle/
tdemo_nim.py 40 move = (z, s)
41 return move
66 def move(self, row, col): member in class:NimModel
77 self.move(row, col)
86 self.move(row, col)
  /external/python/cpython2/Lib/
shutil.py 26 "copytree", "move", "rmtree", "Error", "SpecialFileError",
265 def move(src, dst): function
266 """Recursively move a file or directory to another location. This is
298 raise Error, "Cannot move a directory '%s' into itself '%s'." % (src, dst)
  /external/python/cpython3/Lib/turtledemo/
nim.py 40 move = (z, s)
41 return move
66 def move(self, row, col): member in class:NimModel
77 self.move(row, col)
86 self.move(row, col)
  /external/skia/src/utils/win/
SkDWriteFontFileStream.cpp 103 bool SkDWriteFontFileStream::move(long offset) { function in class:SkDWriteFontFileStream

Completed in 1997 milliseconds

1 23 4 5 6 7 8 91011>>