Home
last modified time | relevance | path

Searched refs:columnList (Results 1 – 3 of 3) sorted by relevance

/external/guava/android/guava/src/com/google/common/collect/
DArrayTable.java127 private final ImmutableList<C> columnList; field in ArrayTable
136 this.columnList = ImmutableList.copyOf(columnKeys); in ArrayTable()
137 checkArgument(rowList.isEmpty() == columnList.isEmpty()); in ArrayTable()
146 columnKeyToIndex = Maps.indexMap(columnList); in ArrayTable()
149 V[][] tmpArray = (V[][]) new Object[rowList.size()][columnList.size()]; in ArrayTable()
162 columnList = table.columnList; in ArrayTable()
166 V[][] copy = (V[][]) new Object[rowList.size()][columnList.size()]; in ArrayTable()
288 return columnList;
306 checkElementIndex(columnIndex, columnList.size());
327 checkElementIndex(columnIndex, columnList.size());
[all …]
/external/guava/guava/src/com/google/common/collect/
DArrayTable.java128 private final ImmutableList<C> columnList; field in ArrayTable
137 this.columnList = ImmutableList.copyOf(columnKeys); in ArrayTable()
138 checkArgument(rowList.isEmpty() == columnList.isEmpty()); in ArrayTable()
147 columnKeyToIndex = Maps.indexMap(columnList); in ArrayTable()
150 V[][] tmpArray = (V[][]) new Object[rowList.size()][columnList.size()]; in ArrayTable()
163 columnList = table.columnList; in ArrayTable()
167 V[][] copy = (V[][]) new Object[rowList.size()][columnList.size()]; in ArrayTable()
292 return columnList;
310 checkElementIndex(columnIndex, columnList.size());
331 checkElementIndex(columnIndex, columnList.size());
[all …]
/external/emma/core/java12/com/vladium/emma/report/
DReportProperties.java325 …final String columnList = getReportProperty (properties, type, IReportProperties.COLUMNS, false, I… in parseProperties() local
330 …for (StringTokenizer tokenizer = new StringTokenizer (columnList, ","); tokenizer.hasMoreTokens ()… in parseProperties()