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

12345

/frameworks/base/core/java/android/view/
H A DSoundEffectConstants.java35 * @param direction One of {@link View#FOCUS_UP}, {@link View#FOCUS_DOWN},
41 public static int getContantForFocusDirection(int direction) { argument
42 switch (direction) {
54 throw new IllegalArgumentException("direction must be one of "
H A DFocusFinderHelper.java36 public boolean isBetterCandidate(int direction, Rect source, Rect rect1, Rect rect2) { argument
37 return mFocusFinder.isBetterCandidate(direction, source, rect1, rect2);
40 public boolean beamBeats(int direction, Rect source, Rect rect1, Rect rect2) { argument
41 return mFocusFinder.beamBeats(direction, source, rect1, rect2);
44 public boolean isCandidate(Rect srcRect, Rect destRect, int direction) { argument
45 return mFocusFinder.isCandidate(srcRect, destRect, direction);
48 public boolean beamsOverlap(int direction, Rect rect1, Rect rect2) { argument
49 return mFocusFinder.beamsOverlap(direction, rect1, rect2);
52 public static int majorAxisDistance(int direction, Rect source, Rect dest) { argument
53 return FocusFinder.majorAxisDistance(direction, sourc
56 majorAxisDistanceToFarEdge(int direction, Rect source, Rect dest) argument
[all...]
/frameworks/base/graphics/java/android/graphics/
H A DEmbossMaskFilter.java23 * @param direction array of 3 scalars [x, y, z] specifying the direction of the light source
29 public EmbossMaskFilter(float[] direction, float ambient, float specular, float blurRadius) { argument
30 if (direction.length < 3) {
33 native_instance = nativeConstructor(direction, ambient, specular, blurRadius);
36 private static native long nativeConstructor(float[] direction, float ambient, float specular, float blurRadius); argument
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DEmbossMaskFilter_Delegate.java58 /*package*/ static long nativeConstructor(float[] direction, float ambient, argument
/frameworks/av/media/libstagefright/codecs/aacenc/inc/
H A Dbitbuffer.h29 enum direction enum
/frameworks/base/core/java/android/text/method/
H A DTransformationMethod.java43 boolean focused, int direction,
42 onFocusChanged(View view, CharSequence sourceText, boolean focused, int direction, Rect previouslyFocusedRect) argument
H A DAllCapsTransformationMethod.java50 public void onFocusChanged(View view, CharSequence sourceText, boolean focused, int direction, argument
H A DMovementMethod.java47 public void onTakeFocus(TextView widget, Spannable text, int direction); argument
H A DReplacementTransformationMethod.java103 boolean focused, int direction,
102 onFocusChanged(View view, CharSequence sourceText, boolean focused, int direction, Rect previouslyFocusedRect) argument
/frameworks/base/media/java/android/media/
H A DAudioManagerInternal.java29 public abstract void adjustSuggestedStreamVolumeForUid(int streamType, int direction, argument
33 public abstract void adjustStreamVolumeForUid(int streamType, int direction, int flags, argument
36 public abstract void setStreamVolumeForUid(int streamType, int direction, int flags, argument
H A DVolumeProvider.java128 * @param direction The direction to change the volume in.
130 public void onAdjustVolume(int direction) { argument
/frameworks/base/tools/aidl/
H A Daidl_language_y.y307 direction type IDENTIFIER {
310 arg->direction = $1.buffer;
336 direction: label
/frameworks/support/v4/ics/android/support/v4/view/
H A DViewCompatICS.java29 public static boolean canScrollHorizontally(View v, int direction) { argument
30 return v.canScrollHorizontally(direction);
33 public static boolean canScrollVertically(View v, int direction) { argument
34 return v.canScrollVertically(direction);
/frameworks/support/v4/java/android/support/v4/widget/
H A DListViewAutoScrollHelper.java53 public boolean canTargetScrollHorizontally(int direction) { argument
59 public boolean canTargetScrollVertically(int direction) { argument
70 if (direction > 0) {
78 } else if (direction < 0) {
87 // The behavior for direction 0 is undefined and we can return
/frameworks/support/v7/appcompat/src/android/support/v7/internal/text/
H A DAllCapsTransformationMethod.java43 int direction, Rect previouslyFocusedRect) {
42 onFocusChanged(View view, CharSequence sourceText, boolean focused, int direction, Rect previouslyFocusedRect) argument
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
H A DIconLoader.java34 IconLoader(String iconName, Density density, int platformVersion, LayoutDirection direction) { argument
38 mDirection = direction;
99 * direction into consideration.
H A DStatusBar.java44 public StatusBar(Context context, Density density, int direction, boolean RtlEnabled, argument
46 // FIXME: if direction is RTL but it's not enabled in application manifest, mirror this bar.
/frameworks/base/core/java/android/widget/
H A DAccessibilityIterators.java106 protected int getLineEdgeIndex(int lineNumber, int direction) { argument
108 if (direction * paragraphDirection < 0) {
H A DZoomButton.java101 public boolean dispatchUnhandledMove(View focused, int direction) { argument
103 return super.dispatchUnhandledMove(focused, direction);
/frameworks/base/core/tests/coretests/src/android/widget/focus/
H A DVerticalFocusSearchTest.java49 View findNextFocus(ViewGroup root, View focused, int direction); argument
55 public View findNextFocus(ViewGroup root, View focused, int direction) { argument
57 .findNextFocus(root, focused, direction);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DBrowseFrameLayout.java30 public View onFocusSearch(View focused, int direction); argument
34 public boolean onRequestFocusInDescendants(int direction, argument
63 protected boolean onRequestFocusInDescendants(int direction, argument
66 return mOnChildFocusListener.onRequestFocusInDescendants(direction,
69 return super.onRequestFocusInDescendants(direction, previouslyFocusedRect);
73 public View focusSearch(View focused, int direction) { argument
75 View view = mListener.onFocusSearch(focused, direction);
80 return super.focusSearch(focused, direction);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DControlBar.java40 public boolean requestFocus(int direction, Rect previouslyFocusedRect) { argument
42 if (getChildAt(getChildCount() / 2).requestFocus(direction, previouslyFocusedRect)) {
46 return super.requestFocus(direction, previouslyFocusedRect);
/frameworks/base/core/jni/android/graphics/
H A DMaskFilter.cpp30 SkScalar direction[3]; local
35 direction[i] = values[i];
40 direction, ambient, specular);
/frameworks/base/media/java/android/media/session/
H A DMediaSessionManager.java280 * most relevant audio stream or media session. The direction must be one of
286 * @param direction The direction to adjust volume in.
290 public void dispatchAdjustVolume(int suggestedStream, int direction, int flags) { argument
292 mService.dispatchAdjustVolume(suggestedStream, direction, flags);
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardPinBasedInputView.java60 protected boolean onRequestFocusInDescendants(int direction, Rect previouslyFocusedRect) { argument
62 return mPasswordEntry.requestFocus(direction, previouslyFocusedRect);

Completed in 6911 milliseconds

12345