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

1 2 3 45 6 7 8 91011>>

  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
unique_ptr.h 132 : _M_t(std::move(__p), std::move(__d)) function in class:unique_ptr::std
141 // Move constructors.
300 : _M_t(std::move(__p), std::move(__d)) function in class:unique_ptr::std
309 // Move constructors.
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/
pod_char_traits.h 144 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
unique_ptr.h 153 : _M_t(std::move(__p), std::move(__d)) function in class:unique_ptr::std
159 // Move constructors.
352 : _M_t(std::move(__p), std::move(__d)) function in class:unique_ptr::std
356 // Move constructor.
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/
pod_char_traits.h 143 move(char_type* __s1, const char_type* __s2, size_t __n) function in struct:char_traits
  /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'
  /cts/tests/tests/view/src/android/view/cts/
VelocityTrackerTest.java 65 move(100, 10);
72 move(100, 10);
84 move(200, 10);
96 move(200, 10);
105 move(100, 10);
109 move(100, 10);
111 move(100, 10);
120 move(100, 10);
125 move(100, 10);
138 move(30, 10)
144 private void move(long duration, long step) { method in class:VelocityTrackerTest
    [all...]
  /external/aac/libSBRenc/src/
mh_det.h 139 INT move; member in struct:__anon2653
184 INT move,
  /external/chromium_org/content/child/fileapi/
webfilesystem_impl.cc 385 void WebFileSystemImpl::move( function in class:content::WebFileSystemImpl
394 &FileSystemDispatcher::Move,
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
ClipRect.h 70 void move(LayoutUnit x, LayoutUnit y) { m_rect.move(x, y); } function in class:WebCore::ClipRect
71 void move(const LayoutSize& size) { m_rect.move(size); } function in class:WebCore::ClipRect
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatRect.h 92 void move(const FloatSize& delta) { m_location += delta; } function in class:WebCore::FloatRect
93 void moveBy(const FloatPoint& delta) { m_location.move(delta.x(), delta.y()); }
94 void move(float dx, float dy) { m_location.move(dx, dy); } function in class:WebCore::FloatRect
208 a.move(b.x(), b.y());
IntRect.h 87 void move(const IntSize& size) { m_location += size; } function in class:WebCore::IntRect
88 void moveBy(const IntPoint& offset) { m_location.move(offset.x(), offset.y()); }
89 void move(int dx, int dy) { m_location.move(dx, dy); } function in class:WebCore::IntRect
LayoutRect.h 90 void move(const LayoutSize& size) { m_location += size; } function in class:WebCore::LayoutRect
91 void moveBy(const LayoutPoint& offset) { m_location.move(offset.x(), offset.y()); }
92 void move(LayoutUnit dx, LayoutUnit dy) { m_location.move(dx, dy); } function in class:WebCore::LayoutRect
97 m_location.move(-box.left(), -box.top());
104 m_location.move(box.left(), box.top());
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/
git.py 126 def move(self, origin, destination): member in class:Git
svn.py 149 def move(self, origin, destination): member in class:SVN
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
filesystem.py 58 # FIXME: This is the only use of sys in this file. It's possible this function should move elsewhere.
177 def move(self, source, destination): member in class:FileSystem
178 shutil.move(source, destination)
  /external/chromium_org/third_party/skia/include/core/
SkStream.h 114 * If an attempt is made to move to a position outside the stream, the position will be set
117 virtual bool move(long offset) { return false; } function in class:SkStream
146 /** SkStreamSeekable is a SkStreamRewindable for which position, seek, move, and fork are required. */
154 virtual bool move(long offset) SK_OVERRIDE = 0;
267 virtual bool move(long offset) SK_OVERRIDE;
339 virtual bool move(long offset) SK_OVERRIDE;
  /external/chromium_org/v8/src/ia32/
lithium-gap-resolver-ia32.cc 52 LMoveOperands move = moves_[i]; local
56 if (!move.IsEliminated() && !move.source()->IsConstantOperand()) {
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()) AddMove(move);
89 // Each call to this function performs a move and deletes it from the move
    [all...]
  /external/clang/test/Analysis/inlining/
path-notes.cpp 52 // 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'}}
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowCursorWrapper.java 29 public boolean move(int i) { method in class:ShadowCursorWrapper
30 return wrappedCursor.move(i);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/database/
TestCursor.java 23 public boolean move(int offset) { method in class:TestCursor
  /external/skia/include/core/
SkStream.h 114 * If an attempt is made to move to a position outside the stream, the position will be set
117 virtual bool move(long offset) { return false; } function in class:SkStream
146 /** SkStreamSeekable is a SkStreamRewindable for which position, seek, move, and fork are required. */
154 virtual bool move(long offset) SK_OVERRIDE = 0;
267 virtual bool move(long offset) SK_OVERRIDE;
339 virtual bool move(long offset) SK_OVERRIDE;
  /external/v8/src/ia32/
lithium-gap-resolver-ia32.cc 52 LMoveOperands move = moves_[i]; local
56 if (!move.IsEliminated() && !move.source()->IsConstantOperand()) {
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()) AddMove(move);
89 // Each call to this function performs a move and deletes it from the move
    [all...]
  /frameworks/base/core/java/android/database/
Cursor.java 74 * Move the cursor by a relative amount, forward or backward, from the
75 * current position. Positive offsets move forwards, negative offsets move
82 * currently on the second entry in the result set and move(-5) is called,
86 * @return whether the requested move fully succeeded.
88 boolean move(int offset); method in interface:Cursor
91 * Move the cursor to an absolute position. The valid
97 * @param position the zero-based position to move to.
98 * @return whether the requested move fully succeeded.
103 * Move the cursor to the first row
    [all...]
CursorWrapper.java 157 public boolean move(int offset) { method in class:CursorWrapper
158 return mCursor.move(offset);
  /frameworks/base/core/java/android/text/
Selection.java 84 * Move the cursor to offset <code>index</code>.
98 * Move the selection edge to offset <code>index</code>.
118 * Move the cursor to the buffer offset physically above the current
140 int move; local
145 move = layout.getOffsetForHorizontal(line - 1, h);
147 move = layout.getLineStart(line - 1);
150 setSelection(text, move);
159 * Move the cursor to the buffer offset physically below the current
181 int move; local
186 move = layout.getOffsetForHorizontal(line + 1, h)
257 int move; local
286 int move; local
    [all...]

Completed in 196 milliseconds

1 2 3 45 6 7 8 91011>>