Lines Matching defs:axis

113  * If either a weight or alignment were defined along a given axis then the component
132 * given axis. During layout, GridLayout solves the constraints so as to return the unique
327 * To control which axis should be processed first during the layout operation:
328 * when orientation is {@link #HORIZONTAL} the horizontal axis is laid out first.
666 Axis axis = horizontal ? mHorizontalAxis : mVerticalAxis;
669 boolean isAtEdge = leading1 ? (span.min == 0) : (span.max == axis.getCount());
686 Axis axis = horizontal ? mHorizontalAxis : mVerticalAxis;
687 int[] margins = leading ? axis.getLeadingMargins() : axis.getTrailingMargins();
734 final Axis axis = horizontal ? mHorizontalAxis : mVerticalAxis;
735 final int count = (axis.definedCount != UNDEFINED) ? axis.definedCount : 0;
833 Axis axis = horizontal ? mHorizontalAxis : mVerticalAxis;
834 int count = axis.definedCount;
1019 Axis axis = horizontal ? mHorizontalAxis : mVerticalAxis;
1020 int[] locations = axis.getLocations();
1057 // Use the orientation property to decide which axis should be laid out first.
1194 along either the horizontal or vertical axis. A GridLayout uses two instances of this class -
1195 distinguished by the "horizontal" flag which is true for the horizontal axis and false
1913 * The row and column specs contain the leading and trailing indices along each axis
2393 protected final void include(GridLayout gl, View c, Spec spec, Axis axis, int size) {
2395 boolean horizontal = axis.horizontal;
2396 Alignment alignment = spec.getAbsoluteAlignment(axis.horizontal);
2504 * along the appropriate axis.
2731 * group is specified by the two alignments which act along each axis independently.