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

1 2 3 4 5 67 8 91011>>

  /external/mesa3d/src/gallium/drivers/r600/sb/
sb_ir.cpp 110 void container_node::move(iterator b, iterator e) { function in class:r600_sb::container_node
  /external/python/cpython2/Lib/plat-mac/lib-scriptpackages/SystemEvents/
Standard_Suite.py 193 def move(self, _object, _attributes={}, **_arguments): member in class:Standard_Suite_Events
194 """move: Move object(s) to a new location.
200 _subcode = 'move'
  /external/python/cpython2/Lib/plat-mac/lib-scriptpackages/Terminal/
Standard_Suite.py 193 def move(self, _object, _attributes={}, **_arguments): member in class:Standard_Suite_Events
194 """move: Move object(s) to a new location.
200 _subcode = 'move'
  /frameworks/base/core/java/android/text/
Selection.java 149 * Move the cursor to offset <code>index</code>.
163 * Move the selection edge to offset <code>index</code>.
170 * Move the selection edge to offset <code>index</code> and update the memory horizontal.
193 * Move the cursor to the buffer offset physically above the current
233 int move; local
242 move = layout.getOffsetForHorizontal(line + direction, h);
247 move = layout.getOffsetForHorizontal(line + direction, h);
251 move = layout.getLineStart(line + direction);
256 extendSelection(text, move, newMemory);
258 setSelection(text, move, move, newMemory)
    [all...]
  /frameworks/base/libs/input/
PointerController.cpp 167 void PointerController::move(float deltaX, float deltaY) { function in class:android::PointerController
169 ALOGD("Move pointer by deltaX=%0.3f, deltaY=%0.3f", deltaX, deltaY);
307 // Add or move spots for fingers that are down.
  /frameworks/support/v7/recyclerview/src/test/java/androidx/recyclerview/widget/
DiffUtilTest.java 167 move(2, 0);
178 move(2, 0);
186 move(0, 2);
193 move(0, 1);
194 move(1, 2);
202 move(2, 0);
203 move(2, 3);
210 move(3, 0);
211 move(2, 1);
218 move(3, 2)
446 private void move(int from, int to) { method in class:DiffUtilTest
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/file/
DefaultSecureDirectoryStreamTest.java 347 ds_path_dir1.move(path_f1, ds_path_dir1, Paths.get("f1"));
352 ds_path_dir1.move(path_dir2, ds_path_dir1, Paths.get(path_dir4.toString(), "path_dir2"));
357 ds_path_dir1.move(path_dir3, ds_path_dir1, Paths.get("path_dir2"));
362 ds_path_dir1.move(path_dir1, ds_path_dir1, Paths.get(path_root.getParent().toString(),
370 ds_path_dir1.move(null, ds_path_dir1,
376 ds_path_dir1.move(path_dir1, null,
382 ds_path_dir1.move(path_dir1, ds_path_dir1,
390 ds_path_dir1.move(path_root, ds_path_dir1, path_f3);
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixSecureDirectoryStream.java 241 * Rename/move file in this directory to another (open) directory
244 public void move(Path fromObj, SecureDirectoryStream<Path> dir, Path toObj) method in class:UnixSecureDirectoryStream
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
MessageMove.java 28 /** The URI for dealing with message move data. */
46 * Projection for a query to get all columns necessary for an actual move.
148 LogUtils.w(LOG_TAG, "existing move's dst not same as this move's src");
168 final MessageMove move = movesMap.valueAt(i); local
170 if ((move.mServerId == null || move.mServerId.length() == 0) ||
171 move.mSrcFolderKey == move.mDstFolderKey) {
172 unmovedMessages[unmovedMessagesCount] = move.mMessageKey
    [all...]
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PhotoTouchListener.java 177 log("move " + mDX + ", " + mDY);
190 mTable.move(target,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
stl_algobase.h 70 #include <bits/move.h> // For std::swap and _GLIBCXX_MOVE
319 *__result = std::move(*__first);
354 *__result = std::move(*__first);
483 move(_II __first, _II __last, _OI __result) function
495 #define _GLIBCXX_MOVE3(_Tp, _Up, _Vp) std::move(_Tp, _Up, _Vp)
522 *--__result = std::move(*--__last);
552 *--__result = std::move(*--__last);
643 * The function has the same effect as move, but starts at the end of the
650 * Result may not be in the range (first,last]. Use move instead. Note
    [all...]
stl_vector.h 96 : _Tp_alloc_type(std::move(__a)),
140 : _M_impl(std::move(__a)) { }
143 : _M_impl(std::move(__x._M_get_Tp_allocator()))
321 * @brief %Vector move constructor.
328 : _Base(std::move(__x)) { } function in class:vector
339 /// Move constructor with alternative allocator
341 : _Base(std::move(__rv), __m)
431 * @brief %Vector move assignment operator.
444 _M_move_assign(std::move(__x),
920 { emplace_back(std::move(__x));
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/
vstring.h 154 * @brief String move constructor.
162 : __vstring_base(std::move(__str)) { } function in class:__versa_string
265 * @brief String move assignment operator.
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
stl_algobase.h 70 #include <bits/move.h> // For std::swap and _GLIBCXX_MOVE
319 *__result = std::move(*__first);
354 *__result = std::move(*__first);
483 move(_II __first, _II __last, _OI __result) function
495 #define _GLIBCXX_MOVE3(_Tp, _Up, _Vp) std::move(_Tp, _Up, _Vp)
522 *--__result = std::move(*--__last);
552 *--__result = std::move(*--__last);
643 * The function has the same effect as move, but starts at the end of the
650 * Result may not be in the range (first,last]. Use move instead. Note
    [all...]
stl_vector.h 96 : _Tp_alloc_type(std::move(__a)),
140 : _M_impl(std::move(__a)) { }
143 : _M_impl(std::move(__x._M_get_Tp_allocator()))
321 * @brief %Vector move constructor.
328 : _Base(std::move(__x)) { } function in class:vector
339 /// Move constructor with alternative allocator
341 : _Base(std::move(__rv), __m)
431 * @brief %Vector move assignment operator.
444 _M_move_assign(std::move(__x),
920 { emplace_back(std::move(__x));
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
vstring.h 154 * @brief String move constructor.
162 : __vstring_base(std::move(__str)) { } function in class:__versa_string
265 * @brief String move assignment operator.
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/SystemEvents/
Standard_Suite.py 193 def move(self, _object, _attributes={}, **_arguments): member in class:Standard_Suite_Events
194 """move: Move object(s) to a new location.
200 _subcode = 'move'
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/Terminal/
Standard_Suite.py 193 def move(self, _object, _attributes={}, **_arguments): member in class:Standard_Suite_Events
194 """move: Move object(s) to a new location.
200 _subcode = 'move'
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/src/
ios.cpp 385 ios_base::move(ios_base& rhs) function in class:ios_base
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/SystemEvents/
Standard_Suite.py 193 def move(self, _object, _attributes={}, **_arguments): member in class:Standard_Suite_Events
194 """move: Move object(s) to a new location.
200 _subcode = 'move'
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Terminal/
Standard_Suite.py 193 def move(self, _object, _attributes={}, **_arguments): member in class:Standard_Suite_Events
194 """move: Move object(s) to a new location.
200 _subcode = 'move'
  /art/compiler/optimizing/
graph_visualizer.cc 340 MoveOperands* move = instruction->MoveOperandsAt(i); variable
342 DumpLocation(str, move->GetSource());
344 DumpLocation(str, move->GetDestination());
    [all...]
  /external/aac/libSBRenc/src/
mh_det.cpp 319 const UCHAR *freqBandTable, INT nSfb, INT noEstPerFrame, INT move) {
326 diff(pQuotaBuffer[est + move], tonalityDiff[est + move], freqBandTable,
329 calculateFlatnessMeasure(pQuotaBuffer[est + move], indexVector,
330 pSfmOrig[est + move], pSfmSbr[est + move],
1027 INT move = h_sbrMHDet->move; local
    [all...]
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
p5-0x.cpp 189 MoveRef Move(int);
191 Value x = Move(0);
192 Value y(Move(0));
209 // 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/special/class.copy/
implicit-move.cpp 3 // 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(T t) { t = static_cast<T&&>(t); function in namespace:DR1402::VbaseMove
    [all...]

Completed in 1562 milliseconds

1 2 3 4 5 67 8 91011>>