HomeSort by relevance Sort by last modified time
    Searched defs:rowKey (Results 1 - 7 of 7) sorted by null

  /external/guava/guava/src/com/google/common/collect/
RegularImmutableTable.java 209 R rowKey = cell.getRowKey();
212 rowIndexBuilder.get(rowKey).put(columnKey, value);
213 columnIndexBuilder.get(columnKey).put(rowKey, value);
234 @Override public ImmutableMap<C, V> row(R rowKey) {
235 checkNotNull(rowKey);
237 return Objects.firstNonNull((ImmutableMap<C, V>) rowMap.get(rowKey),
249 @Override public boolean contains(@Nullable Object rowKey,
251 Map<C, V> row = rowMap.get(rowKey);
259 @Override public boolean containsRow(@Nullable Object rowKey) {
260 return rowMap.containsKey(rowKey);
    [all...]
StandardTable.java 53 * column(columnKey).get(rowKey)} still runs quickly, since the row key is
77 @Nullable Object rowKey, @Nullable Object columnKey) {
78 if ((rowKey == null) || (columnKey == null)) {
81 Map<C, V> map = safeGet(backingMap, rowKey);
97 @Override public boolean containsRow(@Nullable Object rowKey) {
98 return rowKey != null && safeContainsKey(backingMap, rowKey);
113 @Override public V get(@Nullable Object rowKey, @Nullable Object columnKey) {
114 if ((rowKey == null) || (columnKey == null)) {
117 Map<C, V> map = safeGet(backingMap, rowKey);
    [all...]
Tables.java 58 * @param rowKey the row key to be associated with the returned cell
63 @Nullable R rowKey, @Nullable C columnKey, @Nullable V value) {
64 return new ImmutableCell<R, C, V>(rowKey, columnKey, value);
69 private final R rowKey;
74 @Nullable R rowKey, @Nullable C columnKey, @Nullable V value) {
75 this.rowKey = rowKey;
82 return rowKey;
124 * keys. In other words, calling {@code get(columnKey, rowKey)} on the
126 * get(rowKey, columnKey)} on the original table. Updating the original tabl
    [all...]
  /external/owasp/sanitizer/distrib/lib/
guava.jar 
  /external/owasp/sanitizer/lib/guava-libraries/
guava.jar 
  /external/chromium_org/third_party/checkstyle/
checkstyle-5.7-all.jar 
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
compiler.jar 

Completed in 3348 milliseconds