Searched defs:horizontal (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DGridLayout.java152 * The horizontal orientation.
517 * When this property is {@code false} GridLayout is at liberty to place the horizontal column
553 static Alignment getAlignment(int gravity, boolean horizontal) { argument
554 int mask = horizontal ? HORIZONTAL_GRAVITY_MASK : VERTICAL_GRAVITY_MASK;
555 int shift = horizontal ? AXIS_X_SHIFT : AXIS_Y_SHIFT;
572 private int getDefaultMargin(View c, boolean horizontal, boolean leading) { argument
579 private int getDefaultMargin(View c, boolean isAtEdge, boolean horizontal, boolean leading) { argument
580 return isAtEdge ? DEFAULT_CONTAINER_MARGIN : getDefaultMargin(c, horizontal, leading);
583 private int getDefaultMarginValue(View c, LayoutParams p, boolean horizontal, boolean leading) { argument
587 Spec spec = horizontal
595 getMargin1(View view, boolean horizontal, boolean leading) argument
603 getMargin(View view, boolean horizontal, boolean leading) argument
616 getTotalMargin(View child, boolean horizontal) argument
924 getMeasurement(View c, boolean horizontal) argument
928 getMeasurementIncludingMargin(View c, boolean horizontal) argument
941 getAlignment(Alignment alignment, boolean horizontal) argument
1057 public final boolean horizontal; field in class:GridLayout.Axis
1088 Axis(boolean horizontal) argument
[all...]
H A DTextView.java2492 * Sets the horizontal alignment of the text and the
2533 * Returns the horizontal and vertical alignment of this TextView.
5080 private void updateCursorPosition(int cursorIndex, int top, int bottom, float horizontal) { argument
5088 horizontal = Math.max(0.5f, horizontal - 0.5f);
5089 final int left = (int) (horizontal) - mTempRect.left;
11162 * @param x The horizontal absolute position of a point on screen

Completed in 100 milliseconds