HomeSort by relevance Sort by last modified time
    Searched defs:cellSet (Results 1 - 25 of 28) sorted by null

1 2

  /external/guava/guava/src/com/google/common/collect/
Tables.java 246 return cellSet().equals(other.cellSet());
252 return cellSet().hashCode();
269 CellSet cellSet;
272 public Set<Cell<C, R, V>> cellSet() {
273 CellSet result = cellSet;
274 return (result == null) ? cellSet = new CellSet() : result
    [all...]
EmptyImmutableTable.java 68 @Override public ImmutableSet<Cell<Object, Object, Object>> cellSet() {
ForwardingTable.java 45 public Set<Cell<R, C, V>> cellSet() {
46 return delegate().cellSet();
SingletonImmutableTable.java 49 @Override public ImmutableSet<Cell<R, C, V>> cellSet() {
125 Cell<?, ?, ?> thatCell = that.cellSet().iterator().next();
Table.java 113 * 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();
ImmutableTable.java 60 * <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();
321 return this.cellSet().equals(that.cellSet());
328 return cellSet().hashCode();
RegularImmutableTable.java 43 private final ImmutableSet<Cell<R, C, V>> cellSet;
45 private RegularImmutableTable(ImmutableSet<Cell<R, C, V>> cellSet) {
46 this.cellSet = cellSet;
68 Iterables.transform(cellSet(), getValueFunction()));
74 return cellSet().size();
85 @Override public final ImmutableSet<Cell<R, C, V>> cellSet() {
86 return cellSet;
96 * This sorting logic leads to a cellSet() ordering that may not be
98 * is provided, cellSet() iterates across the columns in the first row
    [all...]
ArrayTable.java 386 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;
466 public Set<Cell<R, C, V>> cellSet() {
467 CellSet set = cellSet;
468 return (set == null) ? cellSet = new CellSet() : set
    [all...]
StandardTable.java 139 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;
273 @Override public Set<Cell<R, C, V>> cellSet() {
274 CellSet result = cellSet;
275 return (result == null) ? cellSet = new CellSet() : result
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
EmptyImmutableTableTest.java 65 assertEquals(ImmutableSet.of(), INSTANCE.cellSet());
ForwardingTableTest.java 51 forward.cellSet();
52 assertEquals("[cellSet]", getCalls());
ImmutableTableTest.java 169 assertTrue(Iterables.elementsEqual(original.cellSet(), copy.cellSet()));
182 // Even though rowKeySet, columnKeySet, and cellSet have the same
SingletonImmutableTableTest.java 39 testTable.cellSet());
  /external/owasp/sanitizer/distrib/lib/
guava.jar 
  /external/owasp/sanitizer/lib/guava-libraries/
guava.jar 
  /packages/services/Telecomm/libs/
guava.jar 
  /prebuilts/devtools/tools/lib/
guava-13.0.1.jar 
  /prebuilts/tools/common/guava-tools/
guava-13.0.1.jar 
  /prebuilts/tools/common/m2/repository/com/google/guava/guava/13.0.1/
guava-13.0.1.jar 
  /frameworks/testing/espresso/libs/
guava-14.0.1.jar 
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
guava-14.0.1.jar 
  /prebuilts/tools/common/gradle-plugins/repository/com/google/guava/guava/14.0/
guava-14.0.jar 
  /prebuilts/sdk/tools/lib/
guava-10.0.1.jar 
lint.jar 
lint_api.jar 

Completed in 68 milliseconds

1 2