Searched defs:cellSet (Results 1 - 9 of 9) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
H A DEmptyImmutableTable.java68 @Override public ImmutableSet<Cell<Object, Object, Object>> cellSet() { method in class:EmptyImmutableTable
H A DForwardingTable.java45 public Set<Cell<R, C, V>> cellSet() { method in class:ForwardingTable
46 return delegate().cellSet();
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 DSingletonImmutableTable.java49 @Override public ImmutableSet<Cell<R, C, V>> cellSet() { method in class:SingletonImmutableTable
125 Cell<?, ?, ?> thatCell = that.cellSet().iterator().next();
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 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 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 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 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();

Completed in 56 milliseconds