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

/external/guava/guava/src/com/google/common/collect/
H A DAbstractTable.java85 Iterators.clear(cellSet().iterator());
101 for (Table.Cell<? extends R, ? extends C, ? extends V> cell : table.cellSet()) {
106 private transient Set<Cell<R, C, V>> cellSet; field in class:AbstractTable
109 public Set<Cell<R, C, V>> cellSet() { method in class:AbstractTable
110 Set<Cell<R, C, V>> result = cellSet;
111 return (result == null) ? cellSet = createCellSet() : result;
172 return new TransformedIterator<Cell<R, C, V>, V>(cellSet().iterator()) {
207 return cellSet().hashCode();
H A DForwardingTable.java43 public Set<Cell<R, C, V>> cellSet() { method in class:ForwardingTable
44 return delegate().cellSet();
H A DTable.java115 * equal when their cell views, as returned by {@link #cellSet}, are equal.
122 * as the hash code of its cell view, as returned by {@link #cellSet}.
202 Set<Cell<R, C, V>> cellSet(); method in interface:Table
H A DImmutableTable.java69 * <p>The {@link Table#cellSet()} iteration order of the provided table
94 = Iterables.getOnlyElement(table.cellSet());
101 table.cellSet()) {
144 * #putAll} following the {@link Table#cellSet()} iteration order. However, if
224 for (Cell<? extends R, ? extends C, ? extends V> cell : table.cellSet()) {
252 @Override public ImmutableSet<Cell<R, C, V>> cellSet() { method in class:ImmutableTable
253 return (ImmutableSet<Cell<R, C, V>>) super.cellSet();
H A DArrayTable.java552 public Set<Cell<R, C, V>> cellSet() { method in class:ArrayTable
553 return super.cellSet();
H A DStandardTable.java217 @Override public Set<Cell<R, C, V>> cellSet() { method in class:StandardTable
218 return super.cellSet();
H A DTables.java251 return Iterators.transform(original.cellSet().iterator(), (Function) TRANSPOSE_CELL);
401 return Iterators.transform(fromTable.cellSet().iterator(), cellFunction());
473 public Set<Cell<R, C, V>> cellSet() { method in class:Tables.UnmodifiableTable
474 return Collections.unmodifiableSet(super.cellSet());
604 return table.cellSet().equals(that.cellSet());
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DArrayTable.java528 public Set<Cell<R, C, V>> cellSet() { method in class:ArrayTable
529 return super.cellSet();
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...

Completed in 338 milliseconds