Searched refs:direction (Results 126 - 136 of 136) sorted by relevance

123456

/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DStaggeredGridLayoutManager.java178 * If a full span item is invalid / or created in reverse direction; it may create gaps in
213 * When a full span item is laid out in reverse direction, it sets a flag which we check when
408 * For horizontal layouts, it depends on the layout direction.
521 * Not that this value is not affected by RecyclerView's layout direction.
672 // Layout direction may change but we should select the child depending on the latest
673 // layout direction. Otherwise, we'll choose the wrong child.
719 // Item does not fit. Fix depending on layout direction.
741 // Child is not visible. Set anchor coordinate depending on in which direction
1309 * Keep in mind, it is still the line in layout direction which means; to calculate the
1697 final int direction
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DRenderSessionImpl.java1582 private StatusBar createStatusBar(BridgeContext context, Density density, int direction, argument
1585 direction, isRtlSupported, platformVersion);
/frameworks/base/core/java/android/widget/
H A DAbsListView.java507 * How many positions in either direction we will search to try to
1958 protected void onFocusChanged(boolean gainFocus, int direction, Rect previouslyFocusedRect) { argument
1959 super.onFocusChanged(gainFocus, direction, previouslyFocusedRect);
4479 // Flip sign to convert finger direction to list items direction
4789 * Check if the items in the list can be scrolled in a certain direction.
4791 * @param direction Negative to check scrolling up, positive to check
4793 * @return true if the list can be scrolled in the specified direction,
4797 public boolean canScrollList(int direction) { argument
4805 if (direction >
5463 getDistance(Rect source, Rect dest, int direction) argument
[all...]
H A DTextView.java7875 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) { argument
7878 super.onFocusChanged(focused, direction, previouslyFocusedRect);
7882 if (mEditor != null) mEditor.onFocusChanged(focused, direction);
7894 mTransformation.onFocusChanged(this, mText, focused, direction, previouslyFocusedRect);
7897 super.onFocusChanged(focused, direction, previouslyFocusedRect);
8926 // Always need to resolve layout direction first
H A DEditor.java903 void onFocusChanged(boolean focused, int direction) { argument
930 mMovement.onTakeFocus(mTextView, (Spannable) mTextView.getText(), direction);
/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/opt/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java464 public void onFocusChanged(boolean hasFocus, int direction, Rect previous) { argument
465 super.onFocusChanged(hasFocus, direction, previous);
713 * the layout direction is LTR or RTL.
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindowManager.java2367 int direction = keyCode == KeyEvent.KEYCODE_BRIGHTNESS_UP ? 1 : -1;
2384 int step = (max - min + BRIGHTNESS_STEPS - 1) / BRIGHTNESS_STEPS * direction;
2500 int direction = (metaState & KeyEvent.META_SHIFT_MASK) != 0 ? -1 : 1;
2501 mWindowManagerFuncs.switchKeyboardLayout(event.getDeviceId(), direction);
5094 // The idea is that the user rotation expresses a weak preference for the direction
H A DPhoneWindow.java1735 int direction = keyCode == KeyEvent.KEYCODE_VOLUME_UP ? AudioManager.ADJUST_RAISE
1740 mMediaController.adjustVolume(direction, AudioManager.FLAG_SHOW_UI);
1743 mVolumeControlStreamType, direction,
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DAccessibilityManagerService.java2398 int direction, int interactionId,
2434 connection.focusSearch(accessibilityNodeId, direction, partialInteractiveRegion,
2397 focusSearch(int accessibilityWindowId, long accessibilityNodeId, int direction, int interactionId, IAccessibilityInteractionConnectionCallback callback, long interrogatingTid) argument
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowManagerService.java5519 public void switchKeyboardLayout(int deviceId, int direction) { argument
5520 mInputManager.switchKeyboardLayout(deviceId, direction);

Completed in 759 milliseconds

123456