Searched defs:direction (Results 1 - 25 of 82) sorted by last modified time

1234

/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/view/
H A DViewCompat.java115 public boolean canScrollHorizontally(View v, int direction); argument
116 public boolean canScrollVertically(View v, int direction); argument
140 public boolean canScrollHorizontally(View v, int direction) { argument
143 public boolean canScrollVertically(View v, int direction) { argument
236 public boolean canScrollHorizontally(View v, int direction) { argument
237 return ViewCompatICS.canScrollHorizontally(v, direction);
240 public boolean canScrollVertically(View v, int direction) { argument
241 return ViewCompatICS.canScrollVertically(v, direction);
340 * Check if this view can be scrolled horizontally in a certain direction.
343 * @param direction Negativ
346 canScrollHorizontally(View v, int direction) argument
357 canScrollVertically(View v, int direction) argument
[all...]
H A DViewPager.java1793 // direction to be counted as a drag... abort
2420 public boolean arrowScroll(int direction) { argument
2427 direction);
2429 if (direction == View.FOCUS_LEFT) {
2439 } else if (direction == View.FOCUS_RIGHT) {
2450 } else if (direction == FOCUS_LEFT || direction == FOCUS_BACKWARD) {
2453 } else if (direction == FOCUS_RIGHT || direction == FOCUS_FORWARD) {
2458 playSoundEffect(SoundEffectConstants.getContantForFocusDirection(direction));
2509 addFocusables(ArrayList<View> views, int direction, int focusableMode) argument
2572 onRequestFocusInDescendants(int direction, Rect previouslyFocusedRect) argument
[all...]
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompat.java42 public Object focusSearch(Object info, int direction); argument
379 public Object focusSearch(Object info, int direction) { argument
648 public Object focusSearch(Object info, int direction) { argument
649 return AccessibilityNodeInfoCompatJellyBean.focusSearch(info, direction);
1035 * Searches for the nearest view in the specified direction that can take
1038 * @param direction The direction. Can be one of:
1048 public AccessibilityNodeInfoCompat focusSearch(int direction) { argument
1049 return AccessibilityNodeInfoCompat.wrapNonNullInstance(IMPL.focusSearch(mInfo, direction));
/frameworks/support/v4/jellybean/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompatJellyBean.java64 public static Object focusSearch(Object info, int direction) { argument
65 return ((AccessibilityNodeInfo) info).focusSearch(direction);
/frameworks/ex/carousel/java/com/android/ex/carousel/
H A DCarouselController.java668 /** Sets the direction to fill in cards around the carousel.
670 * @param direction Either {@link CarouselRS#FILL_DIRECTION_CCW} or
673 public void setFillDirection(int direction) { argument
674 mFillDirection = direction;
676 mRenderScript.setFillDirection(direction);
H A DCarouselRS.java323 public void setFillDirection(int direction) { argument
324 mScript.set_fillDirection(direction);
/frameworks/ex/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java383 public void onFocusChanged(boolean hasFocus, int direction, Rect previous) { argument
384 super.onFocusChanged(hasFocus, direction, previous);
/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/tools/aidl/
H A Daidl.cpp71 convert_direction(const char* direction) argument
73 if (direction == NULL) {
76 if (0 == strcmp(direction, "in")) {
79 if (0 == strcmp(direction, "out")) {
479 && convert_direction(arg->direction.data) != IN_PARAMETER) {
487 if (arg->direction.data == NULL
497 if (convert_direction(arg->direction.data) != IN_PARAMETER
503 arg->direction.data, arg->type.type.data,
511 m->type.array_token.lineno, index, arg->direction.data,
520 m->type.array_token.lineno, index, arg->direction
[all...]
H A Daidl_language.h36 buffer_type direction; member in struct:arg_type
136 int convert_direction(const char* direction);
H A Daidl_language_y.y264 direction type IDENTIFIER {
267 arg->direction = $1.buffer;
293 direction: label
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DEmbossMaskFilter_Delegate.java58 /*package*/ static int nativeConstructor(float[] direction, float ambient, argument
H A DPath_Delegate.java514 private static Direction getDirection(int direction) { argument
516 if (direction == d.nativeInt) {
739 * @param dir The direction to wind the rectangle's contour
745 Direction direction = getDirection(dir);
747 switch (direction) {
768 * @param dx The amount in the X direction to offset the entire path
769 * @param dy The amount in the Y direction to offset the entire path
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardAbsKeyInputView.java136 protected boolean onRequestFocusInDescendants(int direction, Rect previouslyFocusedRect) { argument
138 return mPasswordEntry.requestFocus(direction, previouslyFocusedRect);
H A DKeyguardAccountView.java128 protected boolean onRequestFocusInDescendants(int direction, argument
131 return mLogin.requestFocus(direction, previouslyFocusedRect);
H A DPagedView.java934 protected boolean onRequestFocusInDescendants(int direction, Rect previouslyFocusedRect) { argument
943 return v.requestFocus(direction, previouslyFocusedRect);
949 public boolean dispatchUnhandledMove(View focused, int direction) { argument
950 if (direction == View.FOCUS_LEFT) {
955 } else if (direction == View.FOCUS_RIGHT) {
961 return super.dispatchUnhandledMove(focused, direction);
965 public void addFocusables(ArrayList<View> views, int direction, int focusableMode) { argument
967 getPageAt(mCurrentPage).addFocusables(views, direction, focusableMode);
969 if (direction == View.FOCUS_LEFT) {
971 getPageAt(mCurrentPage - 1).addFocusables(views, direction, focusableMod
[all...]
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard_obsolete/
H A DAccountUnlockScreen.java129 protected boolean onRequestFocusInDescendants(int direction, argument
132 return mLogin.requestFocus(direction, previouslyFocusedRect);
H A DPasswordUnlockScreen.java255 protected boolean onRequestFocusInDescendants(int direction, Rect previouslyFocusedRect) { argument
257 return mPasswordEntry.requestFocus(direction, previouslyFocusedRect);
/frameworks/base/services/java/com/android/server/accessibility/
H A DAccessibilityManagerService.java1776 int direction, int interactionId,
1806 connection.focusSearch(accessibilityNodeId, direction, interactionId, callback,
1775 focusSearch(int accessibilityWindowId, long accessibilityNodeId, int direction, int interactionId, IAccessibilityInteractionConnectionCallback callback, long interrogatingTid) argument
/frameworks/base/services/java/com/android/server/input/
H A DInputManagerService.java1001 public void switchKeyboardLayout(int deviceId, int direction) { argument
1002 mHandler.obtainMessage(MSG_SWITCH_KEYBOARD_LAYOUT, deviceId, direction).sendToTarget();
1006 private void handleSwitchKeyboardLayout(int deviceId, int direction) { argument
1014 changed = mDataStore.switchKeyboardLayout(inputDeviceDescriptor, direction);
H A DPersistentDataStore.java128 public boolean switchKeyboardLayout(String inputDeviceDescriptor, int direction) { argument
130 if (state != null && state.switchKeyboardLayout(direction)) {
338 public boolean switchKeyboardLayout(int direction) { argument
345 if (direction > 0) {
/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/telephony/java/android/telephony/
H A DPhoneStateListener.java131 * Listen for changes to the direction of data traffic on the data
256 public void onDataActivity(int direction) { argument
332 public void onDataActivity(int direction) {
333 Message.obtain(mHandler, LISTEN_DATA_ACTIVITY, direction, 0, null).sendToTarget();
/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 int nativeConstructor(float[] direction, float ambient, float specular, float blurRadius); argument

Completed in 3199 milliseconds

1234