Searched refs:cellSet (Results 1 - 18 of 18) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
H A DRegularImmutableTable.java43 private final ImmutableSet<Cell<R, C, V>> cellSet; field in class:RegularImmutableTable
45 private RegularImmutableTable(ImmutableSet<Cell<R, C, V>> cellSet) { argument
46 this.cellSet = cellSet;
68 Iterables.transform(cellSet(), getValueFunction()));
74 return cellSet().size();
85 @Override public final ImmutableSet<Cell<R, C, V>> cellSet() { method in class:RegularImmutableTable
86 return cellSet;
96 * This sorting logic leads to a cellSet() ordering that may not be
98 * is provided, cellSet() iterate
201 SparseImmutableTable(ImmutableSet<Cell<R, C, V>> cellSet, ImmutableSet<R> rowSpace, ImmutableSet<C> columnSpace) argument
293 DenseImmutableTable(ImmutableSet<Cell<R, C, V>> cellSet, ImmutableSet<R> rowSpace, ImmutableSet<C> columnSpace) argument
[all...]
H A DImmutableTable.java60 * <p>The {@link Table#cellSet()} iteration order of the provided table
85 = Iterables.getOnlyElement(table.cellSet());
92 table.cellSet()) {
135 * #putAll} following the {@link Table#cellSet()} iteration order. However, if
215 for (Cell<? extends R, ? extends C, ? extends V> cell : table.cellSet()) {
243 @Override public abstract ImmutableSet<Cell<R, C, V>> cellSet(); method in class:ImmutableTable
321 return this.cellSet().equals(that.cellSet());
328 return cellSet().hashCode();
H A DTables.java246 return cellSet().equals(other.cellSet());
252 return cellSet().hashCode();
269 CellSet cellSet; field in class:Tables.TransposeTable
272 public Set<Cell<C, R, V>> cellSet() { method in class:Tables.TransposeTable
273 CellSet result = cellSet;
274 return (result == null) ? cellSet = new CellSet() : result;
282 super(original.cellSet(), (Function) TRANSPOSE_CELL);
306 return original.cellSet().contains(immutableCell(
315 return original.cellSet()
514 CellSet cellSet; field in class:Tables.TransformedTable
516 @Override public Set<Cell<R, C, V2>> cellSet() { method in class:Tables.TransformedTable
623 public Set<Cell<R, C, V>> cellSet() { method in class:Tables.UnmodifiableTable
[all...]
H A DForwardingTable.java45 public Set<Cell<R, C, V>> cellSet() { method in class:ForwardingTable
46 return delegate().cellSet();
H A DArrayTable.java386 for (Cell<? extends R, ? extends C, ? extends V> cell : table.cellSet()) {
434 return cellSet().equals(other.cellSet());
440 return cellSet().hashCode();
450 private transient CellSet cellSet; field in class:ArrayTable
466 public Set<Cell<R, C, V>> cellSet() { method in class:ArrayTable
467 CellSet set = cellSet;
468 return (set == null) ? cellSet = new CellSet() : set;
H A DSingletonImmutableTable.java49 @Override public ImmutableSet<Cell<R, C, V>> cellSet() { method in class:SingletonImmutableTable
125 Cell<?, ?, ?> thatCell = that.cellSet().iterator().next();
H A DEmptyImmutableTable.java68 @Override public ImmutableSet<Cell<Object, Object, Object>> cellSet() { method in class:EmptyImmutableTable
H A DTable.java113 * equal when their cell views, as returned by {@link #cellSet}, are equal.
120 * as the hash code of its cell view, as returned by {@link #cellSet}.
200 Set<Cell<R, C, V>> cellSet(); method in interface:Table
H A DStandardTable.java139 return cellSet().equals(other.cellSet());
145 return cellSet().hashCode();
179 for (Cell<? extends R, ? extends C, ? extends V> cell : table.cellSet()) {
261 private transient CellSet cellSet; field in class:StandardTable
273 @Override public Set<Cell<R, C, V>> cellSet() { method in class:StandardTable
274 CellSet result = cellSet;
275 return (result == null) ? cellSet = new CellSet() : result;
913 final Iterator<Cell<R, C, V>> cellIterator = cellSet().iterator();
/external/guava/guava-tests/test/com/google/common/collect/
H A DAbstractImmutableTableTest.java89 assertEquals(testInstance.cellSet().hashCode(), testInstance.hashCode());
H A DEmptyImmutableTableTest.java65 assertEquals(ImmutableSet.of(), INSTANCE.cellSet());
H A DForwardingTableTest.java51 forward.cellSet();
52 assertEquals("[cellSet]", getCalls());
H A DSingletonImmutableTableTest.java39 testTable.cellSet());
H A DArrayTableTest.java263 table.cellSet().toString());
409 Cell<String, Integer, Character> cell = table.cellSet().iterator().next();
H A DImmutableTableTest.java169 assertTrue(Iterables.elementsEqual(original.cellSet(), copy.cellSet()));
182 // Even though rowKeySet, columnKeySet, and cellSet have the same
H A DRegularImmutableTableTest.java58 assertEquals(CELLS, testInstance.cellSet());
H A DTableCollectionTest.java442 return table.cellSet();
448 .named("ArrayTable.cellSet")
460 .named("HashBasedTable.cellSet")
470 .named("TreeBasedTable.cellSet")
482 .named("TransposedTable.cellSet")
501 return Tables.transformValues(table, Functions.<Character>identity()).cellSet();
504 .named("TransformValues.cellSet")
522 return Tables.unmodifiableTable(table).cellSet();
525 .named("unmodifiableTable[HashBasedTable].cellSet")
544 return Tables.unmodifiableRowSortedTable(table).cellSet();
[all...]
H A DTreeBasedTableTest.java184 table.cellSet().toString());

Completed in 122 milliseconds