Searched refs:move (Results 1 - 25 of 41) sorted by relevance

12

/frameworks/base/core/java/android/text/
H A DSelection.java141 int move;
146 move = layout.getOffsetForHorizontal(line - 1, h);
148 move = layout.getLineStart(line - 1);
151 setSelection(text, move);
187 int move;
192 move = layout.getOffsetForHorizontal(line + 1, h);
194 move = layout.getLineStart(line + 1);
197 setSelection(text, move);
211 * at the left edge of the line and there is not another line to move it to.
236 * to move i
[all...]
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DSystemGesturesPointerEventListener.java142 private int detectSwipe(MotionEvent move) { argument
143 final int historySize = move.getHistorySize();
144 final int pointerCount = move.getPointerCount();
146 final int pointerId = move.getPointerId(p);
150 final long time = move.getHistoricalEventTime(h);
151 final float x = move.getHistoricalX(p, h);
152 final float y = move.getHistoricalY(p, h);
158 final int swipe = detectSwipe(i, move.getEventTime(), move.getX(p), move
[all...]
/frameworks/compile/mclinker/include/mcld/ADT/
H A DTreeBase.h58 void move() { assert(0 && "not allowed"); } function in class:mcld::TreeIteratorBase
80 void TreeIteratorBase::move<TreeIteratorBase::Leftward>() function in class:mcld::TreeIteratorBase
86 void TreeIteratorBase::move<TreeIteratorBase::Rightward>() function in class:mcld::TreeIteratorBase
H A DBinTree.h180 * TreeIterator is bi-directional. Incremental direction means to move
228 this->move<TreeIteratorBase::Rightward>();
234 this->move<TreeIteratorBase::Rightward>();
239 this->move<TreeIteratorBase::Leftward>();
245 this->move<TreeIteratorBase::Leftward>();
/frameworks/compile/mclinker/unittests/
H A DBinTreeTest.cpp131 pos.move<InputTree::Inclusive>();
134 pos.move<InputTree::Inclusive>();
159 pos.move<InputTree::Inclusive>();
161 pos.move<InputTree::Positional>();
163 pos.move<InputTree::Positional>();
165 pos.move<InputTree::Positional>();
205 pos.move<InputTree::Inclusive>();
208 pos.move<InputTree::Inclusive>();
235 pos.move<InputTree::Inclusive>();
237 pos.move<InputTre
[all...]
H A DInputTreeTest.cpp157 node.move<InputTree::Inclusive>();
162 node.move<InputTree::Inclusive>();
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DOpReorderer.java36 // since move operations breaks continuity, their effects on ADD/RM are hard to handle.
63 // check if move is nulled out by remove
85 // move is removed.
107 // if effects of move is reverted by remove, we are done.
115 // now find out the new locations for move actions
159 private void swapMoveAdd(List<UpdateOp> list, int move, UpdateOp moveOp, int add, argument
176 list.set(move, addOp);
180 void swapMoveUpdate(List<UpdateOp> list, int move, UpdateOp moveOp, int update, argument
203 list.set(move, updateOp);
205 list.remove(move);
[all...]
/frameworks/native/include/input/
H A DVelocityControl.h91 void move(nsecs_t eventTime, float* deltaX, float* deltaY);
/frameworks/native/services/inputflinger/
H A DPointerControllerInterface.h47 virtual void move(float deltaX, float deltaY) = 0;
/frameworks/base/core/java/android/database/
H A DCursorWrapper.java157 public boolean move(int offset) { method in class:CursorWrapper
158 return mCursor.move(offset);
H A DCursor.java75 * 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
97 * @param position the zero-based position to move to.
98 * @return whether the requested move fully succeeded.
107 * @return whether the move succeeded.
116 * @return whether the move succeeded.
126 * @return whether the move succeede
[all...]
/frameworks/compile/mclinker/include/mcld/MC/
H A DInputBuilder.h113 m_pMove->move(m_Root);
128 m_pMove->move(m_Root);
/frameworks/compile/mclinker/
H A Dmcld-device-build.mk4 # We move them from global build/core/combo/TARGET_linux-arm.mk
/frameworks/compile/mclinker/lib/Support/
H A DMemoryArea.cpp31 m_pMemoryBuffer = std::move(buffer_or_error.get());
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DOpReorderTest.java568 private void swapMoveUpdate(List<UpdateOp> list, int move) { argument
569 mOpReorderer.swapMoveUpdate(list, move, list.get(move), move + 1, list.get(move + 1));
572 private void swapMoveRemove(List<UpdateOp> list, int move) { argument
573 mOpReorderer.swapMoveRemove(list, move, list.get(move), move + 1, list.get(move
[all...]
/frameworks/base/core/tests/coretests/src/android/provider/
H A DSearchRecentSuggestionsProviderTest.java170 c.move(GROUP_3_COUNT - 1);
175 c.move(1);
178 c.move(GROUP_2_COUNT - 1);
183 c.move(1);
186 c.move(newGroup1Count - 1);
/frameworks/compile/mclinker/include/mcld/
H A DInputTree.h242 * Mover is a function object (functor). @ref Mover::move moves
248 virtual void move(TreeIteratorBase& pNode) const = 0;
260 void move(TreeIteratorBase& pNode) const { function in struct:mcld::InputTree::Succeeder
261 pNode.move<Positional>();
273 void move(TreeIteratorBase& pNode) const { function in struct:mcld::InputTree::Includer
274 pNode.move<Inclusive>();
/frameworks/base/test-runner/src/android/test/mock/
H A DMockCursor.java118 public boolean move(int offset) { method in class:MockCursor
/frameworks/native/libs/input/
H A DVelocityControl.cpp52 void VelocityControl::move(nsecs_t eventTime, float* deltaX, float* deltaY) { function in class:android::VelocityControl
/frameworks/compile/mclinker/lib/LD/
H A DGNUArchiveReader.cpp394 pArchive.inputs().insert(parent->lastPos, *(parent->move), *member);
396 // move the iterator to new created node, and also adjust the
398 parent->move->move(parent->lastPos);
399 parent->move = &InputTree::Afterward;
/frameworks/ex/common/java/com/android/common/contacts/
H A DDataUsageStatUpdater.java130 cursor.move(-1);
180 cursor.move(-1);
/frameworks/base/libs/input/
H A DPointerController.h83 virtual void move(float deltaX, float deltaY);
/frameworks/compile/libbcc/lib/Core/
H A DSource.cpp97 std::unique_ptr<llvm::MemoryBuffer> input_data = std::move(mb_or_error.get());
/frameworks/compile/mclinker/include/mcld/LD/
H A DArchive.h86 InputTree::Mover* move; member in struct:mcld::Archive::ArchiveMember
/frameworks/compile/mclinker/lib/MC/
H A DInputBuilder.cpp66 m_pMove->move(m_Root);

Completed in 2684 milliseconds

12