Lines Matching refs:spans

363      * @param spans the return value of how much to allocated to
368 * in the offsets and spans parameters
370 protected void layoutColumns(int targetSpan, int[] offsets, int[] spans,
372 //clean offsets and spans
374 Arrays.fill(spans, 0);
375 colIterator.setLayoutArrays(offsets, spans, targetSpan);
383 * maximum of minimum, preferred, and maximum spans along the
457 * check the requirements of a table cell that spans a single column.
466 * check the requirements of a table cell that spans multiple
485 * the columns that this cell spans need adjustment to fit
492 int[] spans = new int[ncols];
495 offsets, spans);
499 req.minimum = Math.max(spans[i], req.minimum);
509 * the columns that this cell spans need adjustment to fit
516 int[] spans = new int[ncols];
519 offsets, spans);
523 req.preferred = Math.max(spans[i], req.preferred);
640 * @param spans the span of each child view; this is a return
643 * offsets and spans parameters
645 protected void layoutMinorAxis(int targetSpan, int axis, int[] offsets, int[] spans) {
656 // calculate column spans
660 super.layoutMinorAxis(targetSpan, axis, offsets, spans);
683 * @param spans the span of each child view; this is a return
686 * offsets and spans parameters
688 protected void layoutMajorAxis(int targetSpan, int axis, int[] offsets, int[] spans) {
689 rowIterator.setLayoutArrays(offsets, spans);
696 spans[captionIndex] = h;
1057 public void setLayoutArrays(int offsets[], int spans[], int targetSpan) {
1059 this.spans = spans;
1082 spans[col] = span;
1086 return spans[col];
1138 private int[] spans;
1206 void setLayoutArrays(int[] offsets, int[] spans) {
1208 this.spans = spans;
1231 spans[rv.viewIndex] = span;
1238 return spans[rv.viewIndex];
1296 private int[] spans;
1531 * @param spans the span of each child view; this is a return
1534 * offsets and spans parameters
1536 protected void layoutMajorAxis(int targetSpan, int axis, int[] offsets, int[] spans) {
1546 spans[cell] = columnSpans[col];
1555 spans[cell] += columnSpans[col+j];
1556 spans[cell] += cellSpacing;
1574 * the span for any cell that spans multiple rows.
1582 * @param spans the span of each child view; this is a return
1585 * offsets and spans parameters
1587 protected void layoutMinorAxis(int targetSpan, int axis, int[] offsets, int[] spans) {
1588 super.layoutMinorAxis(targetSpan, axis, offsets, spans);
1600 spans[cell] = getMultiRowSpan(row0, row1);
1724 * @param spans the span of each child view; this is a return
1727 * offsets and spans parameters
1729 protected void layoutMajorAxis(int targetSpan, int axis, int[] offsets, int[] spans) {
1730 super.layoutMajorAxis(targetSpan, axis, offsets, spans);
1733 int n = spans.length;
1735 used += spans[i];