Searched defs:onMove (Results 1 - 14 of 14) sorted by relevance

/frameworks/base/core/java/android/database/
H A DCrossProcessCursor.java77 boolean onMove(int oldPosition, int newPosition); method in interface:CrossProcessCursor
H A DCrossProcessCursorWrapper.java28 * delegates {@link #fillWindow}, {@link #getWindow()} and {@link #onMove} to it.
67 public boolean onMove(int oldPosition, int newPosition) { method in class:CrossProcessCursorWrapper
70 return crossProcessCursor.onMove(oldPosition, newPosition);
H A DBulkCursorNative.java103 onMove(position);
177 public void onMove(int position) throws RemoteException { method in class:BulkCursorProxy
H A DBulkCursorToCursorAdaptor.java74 public boolean onMove(int oldPosition, int newPosition) { method in class:BulkCursorToCursorAdaptor
84 mBulkCursor.onMove(newPosition);
H A DIBulkCursor.java44 public void onMove(int position) throws RemoteException; method in interface:IBulkCursor
H A DCursorToBulkCursorAdaptor.java191 public void onMove(int position) { method in class:CursorToBulkCursorAdaptor
195 mCursor.onMove(mCursor.getPosition(), position);
H A DMergeCursor.java68 public boolean onMove(int oldPosition, int newPosition) method in class:MergeCursor
236 private Cursor mCursor; // updated in onMove
H A DAbstractCursor.java184 public boolean onMove(int oldPosition, int newPosition) { method in class:AbstractCursor
237 boolean result = onMove(mPos, position);
/frameworks/base/packages/SystemUI/src/com/android/systemui/pip/phone/
H A DPipTouchGesture.java32 boolean onMove(PipTouchState touchState) { method in class:PipTouchGesture
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteCursor.java119 public boolean onMove(int oldPosition, int newPosition) { method in class:SQLiteCursor
/frameworks/base/core/java/com/android/internal/database/
H A DSortCursor.java31 private Cursor mCursor; // updated in onMove
104 public boolean onMove(int oldPosition, int newPosition) method in class:SortCursor
123 Log.w(TAG, "onMove: cache results in a null cursor.");
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/helper/
H A DItemTouchHelperTest.java189 public boolean onMove(RecyclerView recyclerView, RecyclerView.ViewHolder viewHolder, method in class:ItemTouchHelperTest.LoggingCalback
/frameworks/base/core/java/com/android/internal/widget/helper/
H A DItemTouchHelper.java52 * {@link Callback#onMove(RecyclerView, ViewHolder, ViewHolder)} and / or
846 if (mCallback.onMove(mRecyclerView, viewHolder, target)) {
1327 * {@link Callback#onMove(RecyclerView, ViewHolder, ViewHolder)
1328 * onMove(recyclerView, dragged, target)}.
1602 public abstract boolean onMove(RecyclerView recyclerView, method in class:ItemTouchHelper.Callback
1857 * Called when {@link #onMove(RecyclerView, ViewHolder, ViewHolder)} returns true.
2136 * directions and this class will handle the flag callbacks. You should still override onMove
2144 * public abstract boolean onMove(RecyclerView recyclerView,
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/helper/
H A DItemTouchHelper.java53 * {@link Callback#onMove(RecyclerView, ViewHolder, ViewHolder)} and / or
844 if (mCallback.onMove(mRecyclerView, viewHolder, target)) {
1325 * {@link Callback#onMove(RecyclerView, ViewHolder, ViewHolder)
1326 * onMove(recyclerView, dragged, target)}.
1608 public abstract boolean onMove(RecyclerView recyclerView, method in class:ItemTouchHelper.Callback
1863 * Called when {@link #onMove(RecyclerView, ViewHolder, ViewHolder)} returns true.
2142 * directions and this class will handle the flag callbacks. You should still override onMove
2150 * public abstract boolean onMove(RecyclerView recyclerView,

Completed in 274 milliseconds