Searched defs:move (Results 1 - 25 of 26) sorted by relevance

12

/frameworks/native/libs/input/
H A DVelocityControl.cpp52 void VelocityControl::move(nsecs_t eventTime, float* deltaX, float* deltaY) { function in class:android::VelocityControl
/frameworks/base/tools/aapt2/util/
H A DMaybe.h99 Maybe& move(Maybe<U>&& rhs);
144 new (&mStorage) T(std::move(reinterpret_cast<T&>(rhs.mStorage)));
157 new (&mStorage) T(std::move(reinterpret_cast<U&>(rhs.mStorage)));
200 return move(std::forward<Maybe<T>>(rhs));
206 return move(std::forward<Maybe<U>>(rhs));
211 Maybe<T>& Maybe<T>::move(Maybe<U>&& rhs) { function in class:aapt::Maybe
216 // We both are something, so move assign rhs to us.
218 reinterpret_cast<T&>(mStorage) = std::move(reinterpret_cast<U&>(rhs.mStorage));
226 new (&mStorage) T(std::move(reinterpret_cast<U&>(rhs.mStorage)));
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/services/
H A DFileOperations.java99 return FileOperations.move(activity, srcDocs, srcParent, stack);
135 * Starts the service for a move operation.
141 * @param destination The move destination stack.
143 public static String move( method in class:FileOperations
147 if (DEBUG) Log.d(TAG, "Initiating 'move' operation id: " + jobId);
/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/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/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);
H A DAbstractCursor.java175 * may have. If it returns false the move function will also do so and the
180 * @return true if the move is successful, false otherwise
252 public final boolean move(int offset) { method in class:AbstractCursor
/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
H A DStorageNotification.java129 final MoveInfo move = new MoveInfo();
130 move.moveId = moveId;
131 move.extras = extras;
133 move.packageName = extras.getString(Intent.EXTRA_PACKAGE_NAME);
134 move.label = extras.getString(Intent.EXTRA_TITLE);
135 move.volumeUuid = extras.getString(VolumeRecord.EXTRA_FS_UUID);
137 mMoves.put(moveId, move);
142 final MoveInfo move = mMoves.get(moveId);
143 if (move == null) {
144 Log.w(TAG, "Ignoring unknown move "
454 onMoveProgress(MoveInfo move, int status, long estMillis) argument
495 onMoveFinished(MoveInfo move, int status) argument
656 buildWizardMigratePendingIntent(MoveInfo move) argument
670 buildWizardMovePendingIntent(MoveInfo move) argument
[all...]
/frameworks/base/test-runner/src/android/test/mock/
H A DMockCursor.java147 public boolean move(int offset) { method in class:MockCursor
/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
/frameworks/compile/mclinker/include/mcld/LD/
H A DArchive.h79 InputTree::Mover* move; member in struct:mcld::Archive::ArchiveMember
/frameworks/support/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/widget/touch/
H A DItemTouchHelperActivity.java114 mAdapter.move(viewHolder.getAdapterPosition(), target.getAdapterPosition());
270 public void move(int from, int to) { method in class:ItemTouchHelperActivity.ItemTouchAdapter
/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/widget/touch/
H A DItemTouchHelperActivity.java114 mAdapter.move(viewHolder.getAdapterPosition(), target.getAdapterPosition());
270 public void move(int from, int to) { method in class:ItemTouchHelperActivity.ItemTouchAdapter
/frameworks/base/graphics/java/android/graphics/drawable/
H A DRippleForeground.java149 public void move(float x, float y) { method in class:RippleForeground
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/customize/
H A DTileAdapter.java303 move(mAccessibilityFromIndex, position, v);
320 move(position, info.isSystem ? mEditIndex : mTileDividerIndex, v);
345 private boolean move(int from, int to, View v) { method in class:TileAdapter
350 move(from, to, mTiles);
408 private <T> void move(int from, int to, List<T> list) { method in class:TileAdapter
564 return move(from, to, target.itemView);
/frameworks/base/services/core/java/com/android/server/policy/
H A DSystemGesturesPointerEventListener.java190 private int detectSwipe(MotionEvent move) { argument
191 final int historySize = move.getHistorySize();
192 final int pointerCount = move.getPointerCount();
194 final int pointerId = move.getPointerId(p);
198 final long time = move.getHistoricalEventTime(h);
199 final float x = move.getHistoricalX(p, h);
200 final float y = move.getHistoricalY(p, h);
206 final int swipe = detectSwipe(i, move.getEventTime(), move.getX(p), move
[all...]
/frameworks/support/v7/recyclerview/jvm-tests/src/android/support/v7/util/
H A DDiffUtilTest.java166 move(2, 0);
177 move(2, 0);
185 move(0, 2);
192 move(0, 1);
193 move(1, 2);
201 move(2, 0);
202 move(2, 3);
209 move(3, 0);
210 move(2, 1);
217 move(
445 private void move(int from, int to) { method in class:DiffUtilTest
[all...]
/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCameraMetadataNative.java290 public static CameraMetadataNative move(CameraMetadataNative other) { method in class:CameraMetadataNative
/frameworks/base/libs/input/
H A DPointerController.cpp171 void PointerController::move(float deltaX, float deltaY) { function in class:android::PointerController
311 // Add or move spots for fingers that are down.
/frameworks/support/v7/recyclerview/jvm-tests/src/android/support/v7/widget/
H A DOpReorderTest.java608 private void swapMoveUpdate(List<UpdateOp> list, int move) { argument
609 mOpReorderer.swapMoveUpdate(list, move, list.get(move), move + 1, list.get(move + 1));
612 private void swapMoveRemove(List<UpdateOp> list, int move) { argument
613 mOpReorderer.swapMoveRemove(list, move, list.get(move), move + 1, list.get(move
[all...]
H A DAdapterHelperTest.java1018 mTestAdapter.move(from, to);
1076 public void move(int from, int to) { method in class:AdapterHelperTest.TestAdapter
/frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
H A DPduPersister.java1524 public Uri move(Uri from, Uri to) throws MmsException { method in class:PduPersister
/frameworks/native/services/inputflinger/tests/
H A DInputReader_test.cpp98 virtual void move(float deltaX, float deltaY) { function in class:android::FakePointerController
2919 // Keep moving out of bounds. Should generate a pointer move.
3613 // move a little
3685 // move a little
5040 // move a little
5112 // move a little
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerService.java8416 // We haven't run dex-opt for this move (since we've moved the compiled output too)
12795 final MoveInfo move; field in class:PackageManagerService.InstallParams
12807 InstallParams(OriginInfo origin, MoveInfo move, IPackageInstallObserver2 observer, argument
12813 this.move = move;
13235 if (params.move != null) {
13246 * when cleaning up old installs, or used as a move source.
13276 /** @see InstallParams#move */
13277 final MoveInfo move; field in class:PackageManagerService.InstallArgs
13294 // if we move de
13297 InstallArgs(OriginInfo origin, MoveInfo move, IPackageInstallObserver2 observer, int installFlags, String installerPackageName, String volumeUuid, UserHandle user, String[] instructionSets, String abiOverride, String[] installGrantPermissions, String traceMethod, int traceCookie, Certificate[][] certificates) argument
[all...]

Completed in 1183 milliseconds

12