/external/guava/android/guava/src/com/google/common/collect/ |
D | Tables.java | 65 Cell<R, C, V> immutableCell( in immutableCell() 75 @ParametricNullness private final R rowKey; field in Tables.ImmutableCell 79 ImmutableCell( in ImmutableCell() 189 public boolean contains(@CheckForNull Object rowKey, @CheckForNull Object columnKey) { in contains() 199 public boolean containsRow(@CheckForNull Object rowKey) { in containsRow() 210 public V get(@CheckForNull Object rowKey, @CheckForNull Object columnKey) { in get() 216 public V put( in put() 230 public V remove(@CheckForNull Object rowKey, @CheckForNull Object columnKey) { in remove() 235 public Map<R, V> row(@ParametricNullness C rowKey) { in row() 369 public boolean contains(@CheckForNull Object rowKey, @CheckForNull Object columnKey) { in contains() [all …]
|
D | StandardTable.java | 80 public boolean contains(@CheckForNull Object rowKey, @CheckForNull Object columnKey) { in contains() 98 public boolean containsRow(@CheckForNull Object rowKey) { in containsRow() 109 public V get(@CheckForNull Object rowKey, @CheckForNull Object columnKey) { in get() 134 private Map<C, V> getOrCreate(R rowKey) { in getOrCreate() 146 public V put(R rowKey, C columnKey, V value) { in put() 156 public V remove(@CheckForNull Object rowKey, @CheckForNull Object columnKey) { in remove() 188 private boolean containsMapping( in containsMapping() 194 private boolean removeMapping( in removeMapping() 296 public Map<C, V> row(R rowKey) { in row() 301 final R rowKey; field in StandardTable.Row [all …]
|
D | ForwardingTable.java | 72 public boolean contains(@CheckForNull Object rowKey, @CheckForNull Object columnKey) { in contains() 82 public boolean containsRow(@CheckForNull Object rowKey) { in containsRow() 93 public V get(@CheckForNull Object rowKey, @CheckForNull Object columnKey) { in get() 105 public V put( in put() 118 public V remove(@CheckForNull Object rowKey, @CheckForNull Object columnKey) { in remove() 123 public Map<C, V> row(@ParametricNullness R rowKey) { in row()
|
D | Table.java | 72 boolean contains( in contains() 81 boolean containsRow(@CompatibleWith("R") @CheckForNull Object rowKey); in containsRow() 105 V get( in get() 146 V put(@ParametricNullness R rowKey, @ParametricNullness C columnKey, @ParametricNullness V value); in put() 165 V remove( in remove() 181 Map<C, V> row(@ParametricNullness R rowKey); in row()
|
D | AbstractTable.java | 42 public boolean containsRow(@CheckForNull Object rowKey) { in containsRow() 72 public boolean contains(@CheckForNull Object rowKey, @CheckForNull Object columnKey) { in contains() 79 public V get(@CheckForNull Object rowKey, @CheckForNull Object columnKey) { in get() 97 public V remove(@CheckForNull Object rowKey, @CheckForNull Object columnKey) { in remove() 105 public V put( in put()
|
D | ImmutableTable.java | 59 public static <R, C, V> ImmutableTable<R, C, V> of(R rowKey, C columnKey, V value) { in of() 108 static <R, C, V> Cell<R, C, V> cellOf(R rowKey, C columnKey, V value) { in cellOf() 172 public Builder<R, C, V> put(R rowKey, C columnKey, V value) { in put() 309 public ImmutableMap<C, V> row(R rowKey) { in row() 330 public boolean contains(@CheckForNull Object rowKey, @CheckForNull Object columnKey) { in contains() 363 public final V put(R rowKey, C columnKey, V value) { in put() 391 public final V remove(@CheckForNull Object rowKey, @CheckForNull Object columnKey) { in remove()
|
D | TreeBasedTable.java | 173 public SortedMap<C, V> row(R rowKey) { in row() 181 TreeRow(R rowKey) { in TreeRow() 185 TreeRow(R rowKey, @CheckForNull C lowerBound, @CheckForNull C upperBound) { in TreeRow()
|
D | DenseImmutableTable.java | 70 R rowKey = cell.getRowKey(); in DenseImmutableTable() local 259 public V get(@CheckForNull Object rowKey, @CheckForNull Object columnKey) { in get() 274 R rowKey = rowKeySet().asList().get(rowIndex); in getCell() local
|
D | SingletonImmutableTable.java | 36 SingletonImmutableTable(R rowKey, C columnKey, V value) { in SingletonImmutableTable()
|
D | SparseImmutableTable.java | 63 R rowKey = cell.getRowKey(); in SparseImmutableTable() local
|
D | RegularImmutableTable.java | 178 final void checkNoDuplicate(R rowKey, C columnKey, @CheckForNull V existingValue, V newValue) { in checkNoDuplicate()
|
/external/guava/guava/src/com/google/common/collect/ |
D | StandardTable.java | 82 public boolean contains(@CheckForNull Object rowKey, @CheckForNull Object columnKey) { in contains() 100 public boolean containsRow(@CheckForNull Object rowKey) { in containsRow() 111 public V get(@CheckForNull Object rowKey, @CheckForNull Object columnKey) { in get() 136 private Map<C, V> getOrCreate(R rowKey) { in getOrCreate() 148 public V put(R rowKey, C columnKey, V value) { in put() 158 public V remove(@CheckForNull Object rowKey, @CheckForNull Object columnKey) { in remove() 190 private boolean containsMapping( in containsMapping() 196 private boolean removeMapping( in removeMapping() 312 public Map<C, V> row(R rowKey) { in row() 317 final R rowKey; field in StandardTable.Row [all …]
|
D | Tables.java | 125 Cell<R, C, V> immutableCell( in immutableCell() 135 @ParametricNullness private final R rowKey; field in Tables.ImmutableCell 139 ImmutableCell( in ImmutableCell() 249 public boolean contains(@CheckForNull Object rowKey, @CheckForNull Object columnKey) { in contains() 259 public boolean containsRow(@CheckForNull Object rowKey) { in containsRow() 270 public V get(@CheckForNull Object rowKey, @CheckForNull Object columnKey) { in get() 276 public V put( in put() 290 public V remove(@CheckForNull Object rowKey, @CheckForNull Object columnKey) { in remove() 295 public Map<R, V> row(@ParametricNullness C rowKey) { in row() 435 public boolean contains(@CheckForNull Object rowKey, @CheckForNull Object columnKey) { in contains() [all …]
|
D | ForwardingTable.java | 72 public boolean contains(@CheckForNull Object rowKey, @CheckForNull Object columnKey) { in contains() 82 public boolean containsRow(@CheckForNull Object rowKey) { in containsRow() 93 public V get(@CheckForNull Object rowKey, @CheckForNull Object columnKey) { in get() 105 public V put( in put() 118 public V remove(@CheckForNull Object rowKey, @CheckForNull Object columnKey) { in remove() 123 public Map<C, V> row(@ParametricNullness R rowKey) { in row()
|
D | Table.java | 72 boolean contains( in contains() 81 boolean containsRow(@CompatibleWith("R") @CheckForNull Object rowKey); in containsRow() 105 V get( in get() 146 V put(@ParametricNullness R rowKey, @ParametricNullness C columnKey, @ParametricNullness V value); in put() 165 V remove( in remove() 181 Map<C, V> row(@ParametricNullness R rowKey); in row()
|
D | AbstractTable.java | 43 public boolean containsRow(@CheckForNull Object rowKey) { in containsRow() 73 public boolean contains(@CheckForNull Object rowKey, @CheckForNull Object columnKey) { in contains() 80 public V get(@CheckForNull Object rowKey, @CheckForNull Object columnKey) { in get() 98 public V remove(@CheckForNull Object rowKey, @CheckForNull Object columnKey) { in remove() 106 public V put( in put()
|
D | ImmutableTable.java | 103 public static <R, C, V> ImmutableTable<R, C, V> of(R rowKey, C columnKey, V value) { in of() 152 static <R, C, V> Cell<R, C, V> cellOf(R rowKey, C columnKey, V value) { in cellOf() 216 public Builder<R, C, V> put(R rowKey, C columnKey, V value) { in put() 358 public ImmutableMap<C, V> row(R rowKey) { in row() 379 public boolean contains(@CheckForNull Object rowKey, @CheckForNull Object columnKey) { in contains() 412 public final V put(R rowKey, C columnKey, V value) { in put() 440 public final V remove(@CheckForNull Object rowKey, @CheckForNull Object columnKey) { in remove()
|
D | TreeBasedTable.java | 173 public SortedMap<C, V> row(R rowKey) { in row() 181 TreeRow(R rowKey) { in TreeRow() 185 TreeRow(R rowKey, @CheckForNull C lowerBound, @CheckForNull C upperBound) { in TreeRow()
|
D | DenseImmutableTable.java | 70 R rowKey = cell.getRowKey(); in DenseImmutableTable() local 259 public V get(@CheckForNull Object rowKey, @CheckForNull Object columnKey) { in get() 274 R rowKey = rowKeySet().asList().get(rowIndex); in getCell() local
|
D | SingletonImmutableTable.java | 36 SingletonImmutableTable(R rowKey, C columnKey, V value) { in SingletonImmutableTable()
|
D | SparseImmutableTable.java | 63 R rowKey = cell.getRowKey(); in SparseImmutableTable() local
|
D | RegularImmutableTable.java | 178 final void checkNoDuplicate(R rowKey, C columnKey, @CheckForNull V existingValue, V newValue) { in checkNoDuplicate()
|
/external/guava/android/guava-tests/test/com/google/common/collect/ |
D | SynchronizedTableTest.java | 104 public boolean contains(Object rowKey, Object columnKey) { in contains() 116 public boolean containsRow(Object rowKey) { in containsRow() 122 public V get(Object rowKey, Object columnKey) { in get() 128 public V put(R rowKey, C columnKey, V value) { in put() 140 public V remove(Object rowKey, Object columnKey) { in remove() 146 public Map<C, V> row(R rowKey) { in row()
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | SynchronizedTableTest.java | 104 public boolean contains(Object rowKey, Object columnKey) { in contains() 116 public boolean containsRow(Object rowKey) { in containsRow() 122 public V get(Object rowKey, Object columnKey) { in get() 128 public V put(R rowKey, C columnKey, V value) { in put() 140 public V remove(Object rowKey, Object columnKey) { in remove() 146 public Map<C, V> row(R rowKey) { in row()
|