Searched defs:directions (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/text/
H A DAndroidBidi.java59 * @return the directions
61 public static Directions directions(int dir, byte[] levels, int lstart, method in class:AndroidBidi
H A DTextLine.java130 * @param directions the directions information of this line
135 Directions directions, boolean hasTabs, TabStops tabStops) {
141 mDirections = directions;
155 mCharsValid = hasReplacement || hasTabs || directions != Layout.DIRS_ALL_LEFT_TO_RIGHT;
134 set(TextPaint paint, CharSequence text, int start, int limit, int dir, Directions directions, boolean hasTabs, TabStops tabStops) argument
/frameworks/support/v4/java/android/support/v4/widget/
H A DViewDragHelper.java1304 * @param directions Combination of direction flags, see {@link #DIRECTION_HORIZONTAL},
1308 public boolean checkTouchSlop(int directions) { argument
1311 if (checkTouchSlop(directions, i)) {
1328 * @param directions Combination of direction flags, see {@link #DIRECTION_HORIZONTAL},
1333 public boolean checkTouchSlop(int directions, int pointerId) { argument
1338 final boolean checkHorizontal = (directions & DIRECTION_HORIZONTAL) == DIRECTION_HORIZONTAL;
1339 final boolean checkVertical = (directions & DIRECTION_VERTICAL) == DIRECTION_VERTICAL;
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/helper/
H A DItemTouchHelper.java953 // mDx and mDy are only set in allowed directions. We use custom x/y here instead of
1453 * @param dragFlags The directions in which the item can be dragged.
1454 * @param swipeFlags The directions in which the item can be swiped.
1469 * @param directions The direction flags. Can be composed from {@link #UP}, {@link #DOWN},
1471 * @return And integer that represents the given directions in the provided actionState.
1473 public static int makeFlag(int actionState, int directions) { argument
1474 return directions << (actionState * DIRECTION_FLAG_COUNT);
1478 * Should return a composite flag which defines the enabled move directions in each state
1748 * If you are returning relative directions ({@link #START} , {@link #END}) from the
1750 * will also use relative directions
[all...]

Completed in 148 milliseconds