Home | History | Annotate | Download | only in grid

Lines Matching refs:UNDEFINED

80     static final int UNDEFINED = Integer.MIN_VALUE;
100 /** The declared count of rows (which may be {@link #UNDEFINED} if not specified) */
103 /** The declared count of columns (which may be {@link #UNDEFINED} if not specified) */
278 if (baseline == UNDEFINED) {
404 declaredRowCount = getGridAttribute(layout, ATTR_ROW_COUNT, UNDEFINED);
405 declaredColumnCount = getGridAttribute(layout, ATTR_COLUMN_COUNT, UNDEFINED);
419 declaredRowCount == UNDEFINED ? children.length : declaredRowCount,
420 declaredColumnCount == UNDEFINED ? children.length : declaredColumnCount);
426 mBaselines[i] = UNDEFINED;
436 if (declaredRowCount != UNDEFINED) {
446 if (extraRows != null && declaredRowCount != UNDEFINED) {
456 if (declaredColumnCount != UNDEFINED) {
466 if (extraColumns != null && declaredColumnCount != UNDEFINED) {
508 if (declaredColumn != UNDEFINED) {
524 if (view.row != UNDEFINED) {
552 if (declaredRow != UNDEFINED) {
566 if (view.column != UNDEFINED) {
745 mLeft[i] = UNDEFINED;
751 mTop[i] = UNDEFINED;
764 if (mLeft[column] == UNDEFINED) {
769 if (mTop[row] == UNDEFINED) {
778 if (mLeft[i] == UNDEFINED) {
783 if (mLeft[i - 1] != UNDEFINED && mLeft[i] < mLeft[i - 1]) {
792 if (mTop[i] == UNDEFINED) {
797 if (mTop[i - 1] != UNDEFINED && mTop[i] < mTop[i - 1]) {
907 INode newView = addColumn(newColumn, null, UNDEFINED, false, UNDEFINED, UNDEFINED);
922 * added (which may be {@link #UNDEFINED}
932 if (declaredColumnCount != UNDEFINED) {
962 split ? row : UNDEFINED,
963 split ? newColumn - 1 : UNDEFINED,
964 columnWidthDp != UNDEFINED ? columnWidthDp : DEFAULT_CELL_WIDTH,
1008 columnWidthDp != UNDEFINED ? columnWidthDp : DEFAULT_CELL_WIDTH,
1046 if (declaredColumnCount != UNDEFINED) {
1064 ViewData spacer = addSpacer(layout, index, UNDEFINED, UNDEFINED,
1098 //if (declaredColumnCount != UNDEFINED) {
1120 INode newView = addRow(newRow, null, UNDEFINED, false, UNDEFINED, UNDEFINED);
1135 * (which may be {@link #UNDEFINED}
1144 if (declaredRowCount != UNDEFINED) {
1158 if (declaredColumnCount != UNDEFINED && !split) {
1162 split ? newRow - 1 : UNDEFINED,
1163 split ? column : UNDEFINED,
1165 rowHeightDp != UNDEFINED ? rowHeightDp : DEFAULT_CELL_HEIGHT);
1200 ViewData newViewData = addSpacer(layout, -1, UNDEFINED, UNDEFINED,
1202 rowHeightDp != UNDEFINED ? rowHeightDp : DEFAULT_CELL_HEIGHT);
1208 if (declaredColumnCount != UNDEFINED && !split) {
1249 if (declaredRowCount != UNDEFINED) {
1629 if (declaredColumnCount != UNDEFINED) {
1759 if (declaredRowCount != UNDEFINED) {
1842 column = getGridAttribute(n, ATTR_LAYOUT_COLUMN, UNDEFINED);
1844 row = getGridAttribute(n, ATTR_LAYOUT_ROW, UNDEFINED);
1994 declaredRowCount = UNDEFINED;
2142 addSpacer(layout, -1, UNDEFINED, columnMap[start], columnWidthDp, DEFAULT_CELL_HEIGHT);
2214 addSpacer(layout, -1, rowMap[start], UNDEFINED, DEFAULT_CELL_WIDTH, rowWidthDp);
2239 if (declaredColumnCount != UNDEFINED) {
2243 if (declaredRowCount != UNDEFINED) {
2254 * @param row the row to add the spacer to (or {@link #UNDEFINED} to not set a row yet
2255 * @param column the column to add the spacer to (or {@link #UNDEFINED} to not set a
2280 if (row != UNDEFINED) {
2284 if (column != UNDEFINED) {