Home
last modified time | relevance | path

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

/external/guava/guava/src/com/google/common/collect/
DArrayTable.java137 private final ImmutableList<C> columnList; field in ArrayTable
147 this.columnList = ImmutableList.copyOf(columnKeys); in ArrayTable()
149 checkArgument(!columnList.isEmpty()); in ArrayTable()
157 columnKeyToIndex = index(columnList); in ArrayTable()
161 = (V[][]) new Object[rowList.size()][columnList.size()]; in ArrayTable()
182 columnList = table.columnList; in ArrayTable()
186 V[][] copy = (V[][]) new Object[rowList.size()][columnList.size()]; in ArrayTable()
313 return columnList;
333 checkElementIndex(columnIndex, columnList.size());
355 checkElementIndex(columnIndex, columnList.size());
[all …]
DRegularImmutableTable.java168 List<C> columnList = Lists.newArrayList(columnSpace);
169 Collections.sort(columnList, columnComparator);
170 columnSpace = ImmutableSet.copyOf(columnList);
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DArrayTable.java135 private final ImmutableList<C> columnList; field in ArrayTable
145 this.columnList = ImmutableList.copyOf(columnKeys); in ArrayTable()
147 checkArgument(!columnList.isEmpty()); in ArrayTable()
155 columnKeyToIndex = index(columnList); in ArrayTable()
159 = (V[][]) new Object[rowList.size()][columnList.size()]; in ArrayTable()
180 columnList = table.columnList; in ArrayTable()
184 V[][] copy = (V[][]) new Object[rowList.size()][columnList.size()]; in ArrayTable()
311 return columnList;
331 checkElementIndex(columnIndex, columnList.size());
353 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()