Lines Matching defs:axis

117  * If either a weight or alignment were defined along a given axis then the component
136 * given axis. During layout, GridLayout solves the constraints so as to return the unique
325 * To control which axis should be processed first during the layout operation:
326 * when orientation is {@link #HORIZONTAL} the horizontal axis is laid out first.
659 Axis axis = horizontal ? mHorizontalAxis : mVerticalAxis;
662 boolean isAtEdge = leading1 ? (span.min == 0) : (span.max == axis.getCount());
683 Axis axis = horizontal ? mHorizontalAxis : mVerticalAxis;
684 int[] margins = leading ? axis.getLeadingMargins() : axis.getTrailingMargins();
731 final Axis axis = horizontal ? mHorizontalAxis : mVerticalAxis;
732 final int count = (axis.definedCount != UNDEFINED) ? axis.definedCount : 0;
818 Axis axis = horizontal ? mHorizontalAxis : mVerticalAxis;
819 int count = axis.definedCount;
924 Axis axis = horizontal ? mHorizontalAxis : mVerticalAxis;
925 int[] locations = axis.getLocations();
962 // Use the orientation property to decide which axis should be laid out first.
1094 along either the horizontal or vertical axis. A GridLayout uses two instances of this class -
1095 distinguished by the "horizontal" flag which is true for the horizontal axis and false
1813 * The row and column specs contain the leading and trailing indices along each axis
2292 protected final void include(GridLayout gl, View c, Spec spec, Axis axis, int size) {
2294 boolean horizontal = axis.horizontal;
2403 * along the appropriate axis.
2630 * group is specified by the two alignments which act along each axis independently.