Searched defs:direction (Results 1 - 13 of 13) sorted by relevance

/packages/apps/Launcher2/src/com/android/launcher2/
H A DDragLayer.java62 public boolean dispatchUnhandledMove(View focused, int direction) { argument
63 return mDragController.dispatchUnhandledMove(focused, direction);
H A DHandleView.java55 public View focusSearch(int direction) { argument
56 View newFocus = super.focusSearch(direction);
59 workspace.dispatchUnhandledMove(null, direction);
60 return (mOrientation == ORIENTATION_HORIZONTAL && direction == FOCUS_DOWN) ?
H A DSymmetricalLinearTween.java56 * @param direction If direction is true, the value goes towards 1.0f. If direction
59 public void start(boolean direction) { argument
60 start(direction, SystemClock.uptimeMillis());
66 * @param direction If direction is true, the value goes towards 1.0f. If direction
72 public void start(boolean direction, long baseTime) { argument
73 if (direction !
[all...]
H A DAllApps2D.java78 public View focusSearch(int direction) { argument
79 if (direction == FOCUS_UP) return super.focusSearch(direction);
195 protected void onFocusChanged(boolean gainFocus, int direction, android.graphics.Rect prev) { argument
H A DDragController.java357 public boolean dispatchUnhandledMove(View focused, int direction) { argument
358 return mMoveTarget != null && mMoveTarget.dispatchUnhandledMove(focused, direction);
589 void setDirection(int direction) { argument
590 mDirection = direction;
H A DAllApps3D.java340 protected void onFocusChanged(boolean gainFocus, int direction, Rect previouslyFocusedRect) { argument
341 super.onFocusChanged(gainFocus, direction, previouslyFocusedRect);
H A DWorkspace.java570 protected boolean onRequestFocusInDescendants(int direction, Rect previouslyFocusedRect) { argument
574 return openFolder.requestFocus(direction, previouslyFocusedRect);
582 getChildAt(focusableScreen).requestFocus(direction, previouslyFocusedRect);
589 public boolean dispatchUnhandledMove(View focused, int direction) { argument
590 if (direction == View.FOCUS_LEFT) {
595 } else if (direction == View.FOCUS_RIGHT) {
601 return super.dispatchUnhandledMove(focused, direction);
605 public void addFocusables(ArrayList<View> views, int direction, int focusableMode) { argument
609 getChildAt(mCurrentScreen).addFocusables(views, direction);
610 if (direction
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppNotification.java108 int direction; // to indicate sending or receiving field in class:BluetoothOppNotification.NotificationItem
229 item.direction = dir;
230 if (item.direction == BluetoothShare.DIRECTION_OUTBOUND) {
232 } else if (item.direction == BluetoothShare.DIRECTION_INBOUND) {
265 if (item.direction == BluetoothShare.DIRECTION_OUTBOUND) {
268 } else if (item.direction == BluetoothShare.DIRECTION_INBOUND) {
H A DBluetoothOppShareInfo.java70 int direction, String destination, int visibility, int confirm, int status,
77 mDirection = direction;
69 BluetoothOppShareInfo(int id, String uri, String hint, String filename, String mimetype, int direction, String destination, int visibility, int confirm, int status, int totalBytes, int currentBytes, int timestamp, boolean mediaScanned) argument
/packages/apps/Calculator/src/com/android/calculator2/
H A DCalculatorDisplay.java181 protected void onFocusChanged(boolean gain, int direction, Rect prev) { argument
182 //Calculator.log("focus " + gain + "; " + direction + "; " + prev);
/packages/apps/IM/src/com/android/im/app/
H A DChatSwitcher.java680 private void rotateChat(Cursor c, int direction, String contact, long accountId, long providerId) { argument
691 position += direction;
704 public void rotateChat(final int direction, final String contact, final long accountId, final long providerId) { argument
705 if (direction != 1 && direction != -1) {
709 rotateChat(mSwitcherAdapter.getCursor(), direction, contact, accountId, providerId);
713 rotateChat(c, direction, contact, accountId, providerId);
/packages/apps/Music/src/com/android/music/
H A DVerticalTextSpinner.java198 protected void onFocusChanged(boolean gainFocus, int direction, argument
/packages/apps/Gallery3D/src/com/cooliris/media/
H A DRenderView.java917 protected void onFocusChanged(boolean gainFocus, int direction, Rect previouslyFocusedRect) { argument
918 super.onFocusChanged(gainFocus, direction, previouslyFocusedRect);
927 * mCurrentFocusEventDirection = direction; mCurrentEventType =

Completed in 97 milliseconds