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

123

/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/services/core/java/com/android/server/policy/
H A DSystemGesturesPointerEventListener.java144 private int detectSwipe(MotionEvent move) { argument
145 final int historySize = move.getHistorySize();
146 final int pointerCount = move.getPointerCount();
148 final int pointerId = move.getPointerId(p);
152 final long time = move.getHistoricalEventTime(h);
153 final float x = move.getHistoricalX(p, h);
154 final float y = move.getHistoricalY(p, h);
160 final int swipe = detectSwipe(i, move.getEventTime(), move.getX(p), move
[all...]
/frameworks/compile/mclinker/include/mcld/ADT/
H A DTreeBase.h48 void move() { function in class:mcld::TreeIteratorBase
77 inline void TreeIteratorBase::move<TreeIteratorBase::Leftward>() { function in class:mcld::TreeIteratorBase
82 inline void TreeIteratorBase::move<TreeIteratorBase::Rightward>() { function in class:mcld::TreeIteratorBase
/frameworks/compile/mclinker/unittests/
H A DBinTreeTest.cpp120 pos.move<InputTree::Inclusive>();
123 pos.move<InputTree::Inclusive>();
147 pos.move<InputTree::Inclusive>();
149 pos.move<InputTree::Positional>();
151 pos.move<InputTree::Positional>();
153 pos.move<InputTree::Positional>();
190 pos.move<InputTree::Inclusive>();
193 pos.move<InputTree::Inclusive>();
219 pos.move<InputTree::Inclusive>();
221 pos.move<InputTre
[all...]
/frameworks/base/tools/aapt2/
H A DMaybe.h97 Maybe& move(Maybe<U>&& rhs);
142 new (&mStorage) T(std::move(reinterpret_cast<T&>(rhs.mStorage)));
155 new (&mStorage) T(std::move(reinterpret_cast<U&>(rhs.mStorage)));
198 return move(std::forward<Maybe<T>>(rhs));
204 return move(std::forward<Maybe<U>>(rhs));
209 Maybe<T>& Maybe<T>::move(Maybe<U>&& rhs) { function in class:aapt::Maybe
214 // We both are something, so move assign rhs to us.
216 reinterpret_cast<T&>(mStorage) = std::move(reinterpret_cast<U&>(rhs.mStorage));
224 new (&mStorage) T(std::move(reinterpret_cast<U&>(rhs.mStorage)));
H A DXmlDom.cpp63 stack->nodeStack.top()->addChild(std::move(node));
65 stack->root = std::move(node);
86 addToStack(stack, parser, std::move(ns));
117 el->attributes.insert(iter, std::move(attribute));
120 el->comment = std::move(stack->pendingComment);
121 addToStack(stack, parser, std::move(el));
129 stack->nodeStack.top()->comment = std::move(stack->pendingComment);
156 addToStack(stack, parser, std::move(text));
198 return std::move(stack.root);
222 el->attributes.push_back(std::move(att
[all...]
H A DBigBuffer.cpp47 mBlocks.push_back(std::move(block));
H A DResourceTable.cpp151 return addResourceImpl(name, ResourceId{}, config, source, std::move(value), kValidNameChars);
157 return addResourceImpl(name, resId, config, source, std::move(value), kValidNameChars);
164 return addResourceImpl(name, ResourceId{}, config, source, std::move(value),
232 entry->values.insert(iter, ResourceConfigValue{ config, source, {}, std::move(value) });
237 *iter = ResourceConfigValue{ config, source, {}, std::move(value) };
352 type->publicStatus = std::move(otherType->publicStatus);
373 entry->publicStatus = std::move(otherEntry->publicStatus);
384 iter->source = std::move(otherValue.source);
385 iter->comment = std::move(otherValue.comment);
399 std::move(otherValu
[all...]
H A DBigBuffer.h118 mBlockSize(rhs.mBlockSize), mSize(rhs.mSize), mBlocks(std::move(rhs.mBlocks)) {
132 std::move(buffer.mBlocks.begin(), buffer.mBlocks.end(), std::back_inserter(mBlocks));
H A DLinker_test.cpp56 addResource(ResourceName{ {}, ResourceType::kAttr, u"flags" }, std::move(flagAttr));
64 return mTable->addResource(name, {}, SourceLine{ "test.xml", 21 }, std::move(value));
87 std::move(style)));
102 std::move(style)));
116 std::move(style)));
134 std::move(style)));
/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
H A DStorageNotification.java123 final MoveInfo move = new MoveInfo();
124 move.moveId = moveId;
125 move.extras = extras;
127 move.packageName = extras.getString(Intent.EXTRA_PACKAGE_NAME);
128 move.label = extras.getString(Intent.EXTRA_TITLE);
129 move.volumeUuid = extras.getString(VolumeRecord.EXTRA_FS_UUID);
131 mMoves.put(moveId, move);
136 final MoveInfo move = mMoves.get(moveId);
137 if (move == null) {
138 Log.w(TAG, "Ignoring unknown move "
437 onMoveProgress(MoveInfo move, int status, long estMillis) argument
477 onMoveFinished(MoveInfo move, int status) argument
635 buildWizardMigratePendingIntent(MoveInfo move) argument
648 buildWizardMovePendingIntent(MoveInfo move) argument
[all...]
/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
204 list.set(move, updateOp);
206 list.remove(move);
[all...]
/frameworks/compile/mclinker/lib/Support/
H A DMemoryArea.cpp30 m_pMemoryBuffer = std::move(buffer_or_error.get());
/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/compile/mclinker/include/mcld/MC/
H A DInputBuilder.h111 m_pMove->move(m_Root);
126 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/tools/mcld/
H A DMain.cpp90 args_(std::move(args)),
826 actions.push_back(std::move(action));
829 actions.push_back(std::move(action));
833 actions.push_back(std::move(action));
844 script_.defsyms().push_back(std::move(expr));
846 actions.push_back(std::move(action));
854 actions.push_back(std::move(action));
857 actions.push_back(std::move(action));
861 actions.push_back(std::move(action));
870 actions.push_back(std::move(actio
[all...]
/frameworks/base/core/java/android/database/
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...]
H A DCursorWrapper.java191 public boolean move(int offset) { method in class:CursorWrapper
192 return mCursor.move(offset);
/frameworks/compile/libbcc/lib/Core/
H A DSource.cpp42 llvm::ErrorOr<llvm::Module *> moduleOrError = llvm::getLazyBitcodeModule(std::move(pInput), pContext);
74 std::move(input_memory));
96 std::unique_ptr<llvm::MemoryBuffer> input_data = std::move(mb_or_error.get());
100 std::move(input_memory));
/frameworks/support/v7/recyclerview/jvm-tests/src/android/support/v7/widget/
H A DOpReorderTest.java606 private void swapMoveUpdate(List<UpdateOp> list, int move) { argument
607 mOpReorderer.swapMoveUpdate(list, move, list.get(move), move + 1, list.get(move + 1));
610 private void swapMoveRemove(List<UpdateOp> list, int move) { argument
611 mOpReorderer.swapMoveRemove(list, move, list.get(move), move + 1, list.get(move
[all...]
/frameworks/base/cmds/hid/jni/
H A Dcom_android_commands_hid_Device.cpp123 return new Device(id, fd, std::move(callback), looper);
127 mId(id), mFd(fd), mDeviceCallback(std::move(callback)), mLooper(looper) {
201 std::move(desc), size, std::move(cb), std::move(looper));
/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.h233 * Mover is a function object (functor). @ref Mover::move moves
239 virtual void move(TreeIteratorBase& pNode) const = 0;
251 void move(TreeIteratorBase& pNode) const { pNode.move<Positional>(); } function in struct:mcld::InputTree::Succeeder
262 void move(TreeIteratorBase& pNode) const { pNode.move<Inclusive>(); } function in struct:mcld::InputTree::Includer

Completed in 626 milliseconds

123