HomeSort by relevance Sort by last modified time
    Searched defs:move (Results 126 - 150 of 324) sorted by null

1 2 3 4 56 7 8 91011>>

  /frameworks/base/services/input/
PointerController.cpp 127 void PointerController::move(float deltaX, float deltaY) { function in class:android::PointerController
129 ALOGD("Move pointer by deltaX=%0.3f, deltaY=%0.3f", deltaX, deltaY);
262 // Add or move spots for fingers that are down.
  /frameworks/base/test-runner/src/android/test/mock/
MockCursor.java 120 public boolean move(int offset) { method in class:MockCursor
  /frameworks/compile/mclinker/include/mcld/
InputTree.h 246 * Mover is a function object (functor). @ref Mover::move moves
253 virtual void move(TreeIteratorBase& pNode) const = 0;
264 virtual void move(TreeIteratorBase& pNode) const { function in struct:mcld::InputTree::Succeeder
265 pNode.move<Positional>();
277 virtual void move(TreeIteratorBase& pNode) const { function in struct:mcld::InputTree::Includer
278 pNode.move<Inclusive>();
  /frameworks/compile/mclinker/include/mcld/LD/
Archive.h 91 InputTree::Mover* move; member in struct:mcld::Archive::ArchiveMember
  /packages/apps/Mms/src/com/android/mms/transaction/
MmsMessageSender.java 99 // Move the message into MMS Outbox.
119 p.move(mMessageUri, Mms.Outbox.CONTENT_URI);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
stl_algobase.h 72 #include <bits/move.h> // For std::swap and _GLIBCXX_MOVE
327 *__result = std::move(*__first);
362 *__result = std::move(*__first);
491 move(_II __first, _II __last, _OI __result) function
504 #define _GLIBCXX_MOVE3(_Tp, _Up, _Vp) std::move(_Tp, _Up, _Vp)
531 *--__result = std::move(*--__last);
561 *--__result = std::move(*--__last);
652 * The function has the same effect as move, but starts at the end of the
659 * Result may not be in the range [first,last). Use move instead. Note
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_algobase.h 72 #include <bits/move.h> // For std::swap and _GLIBCXX_MOVE
327 *__result = std::move(*__first);
362 *__result = std::move(*__first);
491 move(_II __first, _II __last, _OI __result) function
504 #define _GLIBCXX_MOVE3(_Tp, _Up, _Vp) std::move(_Tp, _Up, _Vp)
531 *--__result = std::move(*--__last);
561 *--__result = std::move(*--__last);
652 * The function has the same effect as move, but starts at the end of the
659 * Result may not be in the range [first,last). Use move instead. Note
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_algobase.h 72 #include <bits/move.h> // For std::swap and _GLIBCXX_MOVE
327 *__result = std::move(*__first);
362 *__result = std::move(*__first);
491 move(_II __first, _II __last, _OI __result) function
504 #define _GLIBCXX_MOVE3(_Tp, _Up, _Vp) std::move(_Tp, _Up, _Vp)
531 *--__result = std::move(*--__last);
561 *--__result = std::move(*--__last);
652 * The function has the same effect as move, but starts at the end of the
659 * Result may not be in the range [first,last). Use move instead. Note
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_algobase.h 72 #include <bits/move.h> // For std::swap and _GLIBCXX_MOVE
327 *__result = std::move(*__first);
362 *__result = std::move(*__first);
491 move(_II __first, _II __last, _OI __result) function
504 #define _GLIBCXX_MOVE3(_Tp, _Up, _Vp) std::move(_Tp, _Up, _Vp)
531 *--__result = std::move(*--__last);
561 *--__result = std::move(*--__last);
652 * The function has the same effect as move, but starts at the end of the
659 * Result may not be in the range [first,last). Use move instead. Note
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/
stl_algobase.h 72 #include <bits/move.h> // For std::swap and _GLIBCXX_MOVE
327 *__result = std::move(*__first);
362 *__result = std::move(*__first);
491 move(_II __first, _II __last, _OI __result) function
504 #define _GLIBCXX_MOVE3(_Tp, _Up, _Vp) std::move(_Tp, _Up, _Vp)
531 *--__result = std::move(*--__last);
561 *--__result = std::move(*--__last);
652 * The function has the same effect as move, but starts at the end of the
659 * Result may not be in the range [first,last). Use move instead. Note
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
Canvas.py 79 def move(self, xamount, yamount): member in class:CanvasItem
80 self.canvas.move(self.id, xamount, yamount)
180 def move(self, xAmount, yAmount): member in class:Group
181 self._do('move', xAmount, yAmount)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/SystemEvents/
Disk_Folder_File_Suite.py 19 def move(self, _object, _attributes={}, **_arguments): member in class:Disk_Folder_File_Suite_Events
20 """move: Move disk item(s) to a new location.
27 _subcode = 'move'
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
shutil.py 26 "copytree", "move", "rmtree", "Error", "SpecialFileError",
264 def move(src, dst): function
265 """Recursively move a file or directory to another location. This is
297 raise Error, "Cannot move a directory '%s' into itself '%s'." % (src, dst)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
Canvas.py 79 def move(self, xamount, yamount): member in class:CanvasItem
80 self.canvas.move(self.id, xamount, yamount)
180 def move(self, xAmount, yAmount): member in class:Group
181 self._do('move', xAmount, yAmount)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
shutil.py 26 "copytree", "move", "rmtree", "Error", "SpecialFileError",
264 def move(src, dst): function
265 """Recursively move a file or directory to another location. This is
297 raise Error, "Cannot move a directory '%s' into itself '%s'." % (src, dst)
  /external/chromium/chrome/browser/bookmarks/
bookmark_utils.cc 225 int move = ui::DragDropTypes::DRAG_MOVE; local
227 move = 0;
229 return ui::DragDropTypes::DRAG_COPY | ui::DragDropTypes::DRAG_LINK | move;
231 return ui::DragDropTypes::DRAG_COPY | move;
248 // User is dragging from this profile: move.
266 // Drag from same profile. Move nodes.
268 model->Move(dragged_nodes[i], parent_node, index);
600 model->Move(node, new_parent, new_parent->child_count());
  /external/chromium_org/content/browser/renderer_host/
render_widget_host_view_base.cc 226 const WebPluginGeometry& move = moves[i]; local
227 HWND window = move.window;
240 // The renderer should only be trying to move plugin windows. However,
258 // We move the intermediate parent window which doesn't result in cross-
266 if (move.visible)
274 // move. However when software compositing is used the clipping region is
285 if (move.rects_valid) {
286 gfx::Rect clip_rect_in_pixel = gfx::win::DIPToScreenRect(move.clip_rect);
291 gfx::SubtractRectanglesFromRegion(hrgn, move.cutout_rects);
295 ::SetWindowRgn(window, hrgn, !move.clip_rect.IsEmpty())
335 const WebPluginGeometry& move = moves[i]; local
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
filesystem_mock.py 270 def move(self, source, destination): member in class:MockFileSystem
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
BlenderInputStream.java 371 long move = position % bytesAmount; local
372 if (move > 0) {
373 position += bytesAmount - move;
  /external/jmonkeyengine/engine/src/test/jme3test/games/
CubeField.java 265 player.move(speed * tpf * fpsRate, 0, 0);
317 player.move(0, 0, -(speed / 2f) * value * fpsRate);
320 player.move(0, 0, (speed / 2f) * value * fpsRate);
  /libcore/luni/src/main/java/java/lang/
AbstractStringBuilder.java 316 move(chars.length, index); method
327 move(length, index); method
344 move(1, index);
356 move(min, index); method
384 private void move(int size, int index) { method in class:AbstractStringBuilder
429 move(-diff, end);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
ios.cpp 370 ios_base::move(ios_base& rhs) function in class:ios_base
  /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/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
stl_algobase.h 71 #include <bits/move.h> // For std::swap and _GLIBCXX_MOVE
313 *__result = std::move(*__first);
348 *__result = std::move(*__first);
477 move(_II __first, _II __last, _OI __result) function
489 #define _GLIBCXX_MOVE3(_Tp, _Up, _Vp) std::move(_Tp, _Up, _Vp)
516 *--__result = std::move(*--__last);
546 *--__result = std::move(*--__last);
637 * The function has the same effect as move, but starts at the end of the
644 * Result may not be in the range (first,last]. Use move instead. Note
    [all...]

Completed in 199 milliseconds

1 2 3 4 56 7 8 91011>>