HomeSort by relevance Sort by last modified time
    Searched refs:columnKey (Results 1 - 25 of 136) sorted by null

1 2 3 4 5 6

  /external/guava/guava/src/com/google/common/collect/
ForwardingTable.java 53 public Map<R, V> column(C columnKey) {
54 return delegate().column(columnKey);
68 public boolean contains(Object rowKey, Object columnKey) {
69 return delegate().contains(rowKey, columnKey);
73 public boolean containsColumn(Object columnKey) {
74 return delegate().containsColumn(columnKey);
88 public V get(Object rowKey, Object columnKey) {
89 return delegate().get(rowKey, columnKey);
98 public V put(R rowKey, C columnKey, V value) {
99 return delegate().put(rowKey, columnKey, value)
    [all...]
Table.java 68 * @param columnKey key of column to search for
70 boolean contains(@Nullable Object rowKey, @Nullable Object columnKey);
84 * @param columnKey key of column to search for
86 boolean containsColumn(@Nullable Object columnKey);
101 * @param columnKey key of column to search for
103 V get(@Nullable Object rowKey, @Nullable Object columnKey);
138 * @param columnKey column key that the value should be associated with
143 V put(R rowKey, C columnKey, V value);
158 * @param columnKey column key of mapping to be removed
162 V remove(@Nullable Object rowKey, @Nullable Object columnKey);
    [all...]
HashBasedTable.java 40 * column(columnKey).get(rowKey)} still runs quickly, since the row key is
41 * provided. However, {@code column(columnKey).size()} takes longer, since an
118 @Nullable Object rowKey, @Nullable Object columnKey) {
119 return super.contains(rowKey, columnKey);
122 @Override public boolean containsColumn(@Nullable Object columnKey) {
123 return super.containsColumn(columnKey);
134 @Override public V get(@Nullable Object rowKey, @Nullable Object columnKey) {
135 return super.get(rowKey, columnKey);
143 @Nullable Object rowKey, @Nullable Object columnKey) {
144 return super.remove(rowKey, columnKey);
    [all...]
SingletonImmutableTable.java 36 SingletonImmutableTable(R rowKey, C columnKey, V value) {
38 this.singleColumnKey = checkNotNull(columnKey);
46 @Override public ImmutableMap<R, V> column(C columnKey) {
47 checkNotNull(columnKey);
48 return containsColumn(columnKey)
StandardTable.java 56 * column(columnKey).get(rowKey)} still runs quickly, since the row key is
57 * provided. However, {@code column(columnKey).size()} takes longer, since an
80 @Nullable Object rowKey, @Nullable Object columnKey) {
81 return rowKey != null && columnKey != null && super.contains(rowKey, columnKey);
84 @Override public boolean containsColumn(@Nullable Object columnKey) {
85 if (columnKey == null) {
89 if (safeContainsKey(map, columnKey)) {
104 @Override public V get(@Nullable Object rowKey, @Nullable Object columnKey) {
105 return (rowKey == null || columnKey == null
    [all...]
Tables.java 62 * @param columnKey the column key to be associated with the returned cell
66 @Nullable R rowKey, @Nullable C columnKey, @Nullable V value) {
67 return new ImmutableCell<R, C, V>(rowKey, columnKey, value);
73 private final C columnKey;
77 @Nullable R rowKey, @Nullable C columnKey, @Nullable V value) {
79 this.columnKey = columnKey;
89 return columnKey;
127 * keys. In other words, calling {@code get(columnKey, rowKey)} on the
129 * get(rowKey, columnKey)} on the original table. Updating the original tabl
    [all...]
AbstractTable.java 42 public boolean containsColumn(@Nullable Object columnKey) {
43 return Maps.safeContainsKey(columnMap(), columnKey);
67 public boolean contains(@Nullable Object rowKey, @Nullable Object columnKey) {
69 return row != null && Maps.safeContainsKey(row, columnKey);
73 public V get(@Nullable Object rowKey, @Nullable Object columnKey) {
75 return (row == null) ? null : Maps.safeGet(row, columnKey);
89 public V remove(@Nullable Object rowKey, @Nullable Object columnKey) {
91 return (row == null) ? null : Maps.safeRemove(row, columnKey);
95 public V put(R rowKey, C columnKey, V value) {
96 return row(rowKey).put(columnKey, value)
    [all...]
ImmutableTable.java 62 C columnKey, V value) {
63 return new SingletonImmutableTable<R, C, V>(rowKey, columnKey, value);
123 * Verifies that {@code rowKey}, {@code columnKey} and {@code value} are
126 static <R, C, V> Cell<R, C, V> cellOf(R rowKey, C columnKey, V value) {
127 return Tables.immutableCell(checkNotNull(rowKey), checkNotNull(columnKey),
186 * Associates the ({@code rowKey}, {@code columnKey}) pair with {@code
190 public Builder<R, C, V> put(R rowKey, C columnKey, V value) {
191 cells.add(cellOf(rowKey, columnKey, value));
280 * @throws NullPointerException if {@code columnKey} is {@code null}
282 @Override public ImmutableMap<R, V> column(C columnKey) {
    [all...]
DenseImmutableTable.java 67 C columnKey = cell.getColumnKey();
69 int columnIndex = columnKeyToIndex.get(columnKey);
71 checkArgument(existingValue == null, "duplicate key: (%s, %s)", rowKey, columnKey);
252 @Nullable Object columnKey) {
254 Integer columnIndex = columnKeyToIndex.get(columnKey);
269 C columnKey = columnKeySet().asList().get(columnIndex);
271 return cellOf(rowKey, columnKey, value);
ArrayTable.java 409 public boolean contains(@Nullable Object rowKey, @Nullable Object columnKey) {
410 return containsRow(rowKey) && containsColumn(columnKey);
418 public boolean containsColumn(@Nullable Object columnKey) {
419 return columnKeyToIndex.containsKey(columnKey);
444 public V get(@Nullable Object rowKey, @Nullable Object columnKey) {
446 Integer columnIndex = columnKeyToIndex.get(columnKey);
463 * #rowKeySet()} or {@code columnKey} is not in {@link #columnKeySet()}.
466 public V put(R rowKey, C columnKey, @Nullable V value) {
468 checkNotNull(columnKey);
471 Integer columnIndex = columnKeyToIndex.get(columnKey);
    [all...]
SparseImmutableTable.java 54 C columnKey = cell.getColumnKey();
60 V oldValue = thisRow.put(columnKey, value);
63 + columnKey + ": " + value + ", " + oldValue);
65 columns.get(columnKey).put(rowKey, value);
  /external/guava/guava-gwt/src/com/google/common/collect/
SingletonImmutableTable_CustomFieldSerializer.java 34 Object columnKey = reader.readObject();
36 return new SingletonImmutableTable<Object, Object, Object>(rowKey, columnKey, value);
GwtSerializationDependencies.java 126 C columnKey;
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ArrayTable.java 385 public boolean contains(@Nullable Object rowKey, @Nullable Object columnKey) {
386 return containsRow(rowKey) && containsColumn(columnKey);
394 public boolean containsColumn(@Nullable Object columnKey) {
395 return columnKeyToIndex.containsKey(columnKey);
420 public V get(@Nullable Object rowKey, @Nullable Object columnKey) {
422 Integer columnIndex = columnKeyToIndex.get(columnKey);
439 * #rowKeySet()} or {@code columnKey} is not in {@link #columnKeySet()}.
442 public V put(R rowKey, C columnKey, @Nullable V value) {
444 checkNotNull(columnKey);
447 Integer columnIndex = columnKeyToIndex.get(columnKey);
    [all...]
  /external/autotest/frontend/client/src/autotest/common/table/
DataTable.java 149 String columnKey = columns[i][0];
150 JSONValue columnValue = row.get(columnKey);
  /external/owasp/sanitizer/distrib/lib/
guava.jar 
  /external/owasp/sanitizer/lib/guava-libraries/
guava.jar 
  /packages/services/Telecomm/libs/
guava.jar 
  /prebuilts/tools/common/gradle-plugins/repository/com/google/guava/guava/14.0/
guava-14.0.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 
  /prebuilts/misc/common/truth/
truth-0.28.jar 
  /prebuilts/tools/common/m2/repository/com/google/truth/truth/0.26/
truth-0.26.jar 
  /prebuilts/tools/common/m2/repository/com/google/truth/truth/0.28/
truth-0.28.jar 

Completed in 208 milliseconds

1 2 3 4 5 6