Searched defs:direction (Results 76 - 82 of 82) sorted by relevance

1234

/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/media/java/android/media/
H A DAudioService.java398 // previous volume adjustment direction received by checkForRingerModeChange()
758 public void adjustVolume(int direction, int flags) { argument
759 adjustSuggestedStreamVolume(direction, AudioManager.USE_DEFAULT_STREAM_TYPE, flags);
764 public void adjustLocalOrRemoteStreamVolume(int streamType, int direction) { argument
765 if (DEBUG_VOL) Log.d(TAG, "adjustLocalOrRemoteStreamVolume(dir="+direction+")");
767 adjustRemoteVolume(AudioSystem.STREAM_MUSIC, direction, 0);
769 adjustStreamVolume(AudioSystem.STREAM_MUSIC, direction, 0);
774 public void adjustSuggestedStreamVolume(int direction, int suggestedStreamType, int flags) { argument
795 adjustRemoteVolume(AudioSystem.STREAM_MUSIC, direction, flags);
797 adjustStreamVolume(streamType, direction, flag
802 adjustStreamVolume(int streamType, int direction, int flags) argument
1010 findVolumeDelta(int direction, int volume) argument
2327 checkForRingerModeChange(int oldIndex, int direction, int step) argument
2400 ensureValidDirection(int direction) argument
5565 adjustRemoteVolume(int streamType, int direction, int flags) argument
5588 sendVolumeUpdateToRemote(int rccId, int direction) argument
[all...]
/frameworks/base/media/java/android/media/videoeditor/
H A DMediaArtistNativeHelper.java934 /** Invert the default rotation direction of the AlphaMagic effect. */
941 /** Defines the direction of the Slide transition. */
963 public int direction; field in class:MediaArtistNativeHelper.SlideTransitionSettings
3449 * Maps the transition slide direction used in JAVA layer
3450 * to transition slide direction used in native layer
3452 * @param slideDirection The transition slide direction
3455 * @return The transition slide direction in native layer
/frameworks/base/core/java/android/widget/
H A DTextView.java7303 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) { argument
7306 super.onFocusChanged(focused, direction, previouslyFocusedRect);
7310 if (mEditor != null) mEditor.onFocusChanged(focused, direction);
7322 mTransformation.onFocusChanged(this, mText, focused, direction, previouslyFocusedRect);
7325 super.onFocusChanged(focused, direction, previouslyFocusedRect);
8232 // TODO: take care of the content direction to show the password text and dots justified
8237 // Always need to resolve layout direction first
/frameworks/base/services/java/com/android/server/wm/
H A DWindowManagerService.java5410 public void switchKeyboardLayout(int deviceId, int direction) { argument
5411 mInputManager.switchKeyboardLayout(deviceId, direction);
/frameworks/base/core/java/android/view/
H A DView.java489 * given direction. In rare cases, the default algorithm may not match the
523 * Any time a user hits a directional key, such as a D-pad direction, the view device will
1798 * Horizontal layout direction of this view is from Left to Right.
1804 * Horizontal layout direction of this view is from Right to Left.
1810 * Horizontal layout direction of this view is inherited from its parent.
1816 * Horizontal layout direction of this view is from deduced from the default language
1822 * Bit shift to get the horizontal layout direction. (bits after DRAG_HOVERED)
1828 * Mask for use with private flags indicating bits used for horizontal layout direction.
1834 * Indicates whether the view horizontal layout direction has been resolved and drawn to the
1835 * right-to-left direction
4363 handleFocusGainInternal(int direction, Rect previouslyFocusedRect) argument
4562 onFocusChanged(boolean gainFocus, int direction, Rect previouslyFocusedRect) argument
6272 focusSearch(int direction) argument
6291 dispatchUnhandledMove(View focused, int direction) argument
6303 findUserSetNextFocus(View root, int direction) argument
6353 getFocusables(int direction) argument
6367 addFocusables(ArrayList<View> views, int direction) argument
6387 addFocusables(ArrayList<View> views, int direction, int focusableMode) argument
6605 requestFocus(int direction) argument
6638 requestFocus(int direction, Rect previouslyFocusedRect) argument
6642 requestFocusNoSearch(int direction, Rect previouslyFocusedRect) argument
11309 canScrollHorizontally(int direction) argument
11326 canScrollVertically(int direction) argument
[all...]
/frameworks/base/core/java/android/webkit/
H A DWebViewClassic.java5505 public void onFocusChanged(boolean focused, int direction, argument
5508 Log.v(LOGTAG, "MT focusChanged " + focused + ", " + direction);
5722 * 2. If there is a dramitic direction change, let it go;
7022 public boolean requestFocus(int direction, Rect previouslyFocusedRect) { argument
7029 result = mWebViewPrivate.super_requestFocus(direction, previouslyFocusedRect);
7032 // For cases such as GMail, where we gain focus from a direction,
7036 switch(direction) {
7364 int direction = msg.arg1;
7365 View focusSearch = mWebView.focusSearch(direction);
8464 int direction
[all...]

Completed in 2342 milliseconds

1234