Searched defs:direction (Results 101 - 107 of 107) sorted by relevance

12345

/frameworks/base/media/java/android/media/
H A DAudioService.java473 // previous volume adjustment direction received by checkForRingerModeChange()
969 public void adjustSuggestedStreamVolume(int direction, int suggestedStreamType, int flags, argument
971 adjustSuggestedStreamVolume(direction, suggestedStreamType, flags, callingPackage,
975 private void adjustSuggestedStreamVolume(int direction, int suggestedStreamType, int flags, argument
995 direction = 0;
1001 adjustStreamVolume(streamType, direction, flags, callingPackage, uid);
1005 public void adjustStreamVolume(int streamType, int direction, int flags, argument
1007 adjustStreamVolume(streamType, direction, flags, callingPackage, Binder.getCallingUid());
1010 private void adjustStreamVolume(int streamType, int direction, int flags, argument
1015 if (DEBUG_VOL) Log.d(TAG, "adjustStreamVolume() stream="+streamType+", dir="+direction
1367 findVolumeDelta(int direction, int volume) argument
3098 checkForRingerModeChange(int oldIndex, int direction, int step) argument
3230 ensureValidDirection(int direction) argument
5801 adjustSuggestedStreamVolumeForUid(int streamType, int direction, int flags, String callingPackage, int uid) argument
5809 adjustStreamVolumeForUid(int streamType, int direction, int flags, String callingPackage, int uid) argument
5815 setStreamVolumeForUid(int streamType, int direction, int flags, String callingPackage, int uid) argument
[all...]
/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java376 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) { argument
377 super.onFocusChanged(focused, direction, previouslyFocusedRect);
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java1295 // Set the layout direction if it has not been set before (inherit is the default)
4051 int direction = 0;
4055 direction = View.FOCUS_LEFT;
4060 direction = View.FOCUS_RIGHT;
4065 direction = View.FOCUS_UP;
4070 direction = View.FOCUS_DOWN;
4075 direction = View.FOCUS_FORWARD;
4077 direction = View.FOCUS_BACKWARD;
4081 if (direction != 0) {
4084 View v = focused.focusSearch(direction);
5380 focusSearch(View focused, int direction) argument
6900 focusSearch(long accessibilityNodeId, int direction, Region interactiveRegion, int interactionId, IAccessibilityInteractionConnectionCallback callback, int flags, int interrogatingPid, long interrogatingTid, MagnificationSpec spec) argument
[all...]
H A DView.java505 * given direction. In rare cases, the default algorithm may not match the
539 * Any time a user hits a directional key, such as a D-pad direction, the view device will
1901 * Horizontal layout direction of this view is from Left to Right.
1907 * Horizontal layout direction of this view is from Right to Left.
1913 * Horizontal layout direction of this view is inherited from its parent.
1919 * Horizontal layout direction of this view is from deduced from the default language
1925 * Bit shift to get the horizontal layout direction. (bits after DRAG_HOVERED)
1931 * Mask for use with private flags indicating bits used for horizontal layout direction.
1937 * Indicates whether the view horizontal layout direction has been resolved and drawn to the
1938 * right-to-left direction
4944 handleFocusGainInternal(@ocusRealDirection int direction, Rect previouslyFocusedRect) argument
5179 onFocusChanged(boolean gainFocus, @FocusDirection int direction, @Nullable Rect previouslyFocusedRect) argument
7293 focusSearch(@ocusRealDirection int direction) argument
7312 dispatchUnhandledMove(View focused, @FocusRealDirection int direction) argument
7324 findUserSetNextFocus(View root, @FocusDirection int direction) argument
7374 getFocusables(@ocusDirection int direction) argument
7388 addFocusables(ArrayList<View> views, @FocusDirection int direction) argument
7408 addFocusables(ArrayList<View> views, @FocusDirection int direction, @FocusableMode int focusableMode) argument
7623 requestFocus(int direction) argument
7656 requestFocus(int direction, Rect previouslyFocusedRect) argument
7660 requestFocusNoSearch(int direction, Rect previouslyFocusedRect) argument
12817 canScrollHorizontally(int direction) argument
12834 canScrollVertically(int direction) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DTextView.java7891 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) { argument
7894 super.onFocusChanged(focused, direction, previouslyFocusedRect);
7898 if (mEditor != null) mEditor.onFocusChanged(focused, direction);
7910 mTransformation.onFocusChanged(this, mText, focused, direction, previouslyFocusedRect);
7913 super.onFocusChanged(focused, direction, previouslyFocusedRect);
8955 // Always need to resolve layout direction first
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowManagerService.java5598 public void switchKeyboardLayout(int deviceId, int direction) { argument
5599 mInputManager.switchKeyboardLayout(deviceId, direction);
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java1033 * @return Whether any scroll was consumed in either direction.
1453 public View focusSearch(View focused, int direction) { argument
1454 View result = mLayout.onInterceptFocusSearch(focused, direction);
1459 result = ff.findNextFocus(this, focused, direction);
1462 result = mLayout.onFocusSearchFailed(focused, direction, mRecycler, mState);
1465 return result != null ? result : super.focusSearch(focused, direction);
1485 public void addFocusables(ArrayList<View> views, int direction, int focusableMode) { argument
1486 if (!mLayout.onAddFocusables(this, views, direction, focusableMode)) {
1487 super.addFocusables(views, direction, focusableMode);
5045 * negative and scrolling proceeeded in that direction
6114 onFocusSearchFailed(View focused, int direction, Recycler recycler, State state) argument
6135 onInterceptFocusSearch(View focused, int direction) argument
6263 onAddFocusables(RecyclerView recyclerView, ArrayList<View> views, int direction, int focusableMode) argument
[all...]

Completed in 1596 milliseconds

12345