/external/guava/guava/src/com/google/common/collect/ |
Lists.java | 256 @Override public E get(int index) { method in class:Lists.OnePlusArrayList 301 @Override public E get(int index) { method in class:Lists.TwoPlusArrayList 450 @Override public T get(int index) { 451 return function.apply(fromList.get(index)); 500 @Override public List<T> get(int index) { 566 @Override protected Character get(int index) { 581 @Override public Character get(int index) { 647 @Override public Character get(int index) { 781 @Override public T get(int index) { 782 return forwardList.get(reverseIndex(index)) [all...] |
Multimaps.java | 77 * multimap and its returned views. However, the multimap's {@code get} 78 * method returns instances of a different class than {@code factory.get()} 122 return factory.get(); 158 * multimap and its returned views. The multimap's {@code get}, {@code 160 * lists if the factory does. However, the multimap's {@code get} method 161 * returns instances of a different class than does {@code factory.get()}. 204 return factory.get(); 237 * multimap and its returned views. However, the multimap's {@code get} 238 * method returns instances of a different class than {@code factory.get()} 282 return factory.get(); 560 @Override public Collection<V> get(K key) { method in class:Multimaps.UnmodifiableMultimap [all...] |
RegularImmutableMap.java | 42 // 'and' with an int to get a table index 142 @Override public V get(@Nullable Object key) { method in class:RegularImmutableMap 209 V mappedValue = map.get(entry.getKey()); 268 @Override protected V get(int index) {
|
RegularImmutableTable.java | 212 rowIndexBuilder.get(rowKey).put(columnKey, value); 213 columnIndexBuilder.get(columnKey).put(rowKey, value); 222 return Objects.firstNonNull((ImmutableMap<R, V>) columnMap.get(columnKey), 237 return Objects.firstNonNull((ImmutableMap<C, V>) rowMap.get(rowKey), 251 Map<C, V> row = rowMap.get(rowKey); 263 @Override public V get(@Nullable Object rowKey, method 265 Map<C, V> row = rowMap.get(rowKey); 266 return (row == null) ? null : row.get(columnKey); 304 int rowIndex = rowKeyToIndex.get(rowKey); 305 int columnIndex = columnKeyToIndex.get(columnKey) [all...] |
TreeBasedTable.java | 56 * column(columnKey).get(rowKey)} still runs quickly, since the row key is 61 * row, both {@code row(rowKey)} and {@code rowMap().get(rowKey)} are {@link 85 public TreeMap<C, V> get() { method in class:TreeBasedTable.Factory 249 wholeRow = (SortedMap<C, V>) backingMap.get(rowKey); 322 @Override public V get(@Nullable Object rowKey, @Nullable Object columnKey) { method in class:TreeBasedTable 323 return super.get(rowKey, columnKey);
|
/external/guava/guava/src/com/google/common/hash/ |
AbstractStreamingHashFunction.java | 126 bb.limit(chunkSize + 7); // get ready to pad with longs 156 buffer.put(readBuffer.get());
|
/external/guava/guava/src/com/google/common/primitives/ |
Booleans.java | 247 // For pre-sizing a builder, just get the right order of magnitude 332 * {@code list.get(0) == list.get(0)} is true for the returned list is 370 @Override public Boolean get(int index) { method in class:Booleans.BooleanArrayAsList
|
Bytes.java | 249 * {@code list.get(0) == list.get(0)} is true for the returned list is 287 @Override public Byte get(int index) { method in class:Bytes.ByteArrayAsList
|
Chars.java | 277 * {@link com.google.common.io.ByteStreams#newDataOutput()} to get a growable 448 * {@code list.get(0) == list.get(0)} is true for the returned list is 486 @Override public Character get(int index) { method in class:Chars.CharArrayAsList
|
Doubles.java | 309 // For pre-sizing a builder, just get the right order of magnitude 391 * {@code list.get(0) == list.get(0)} is true for the returned list is 432 @Override public Double get(int index) { method in class:Doubles.DoubleArrayAsList
|
Floats.java | 306 // For pre-sizing a builder, just get the right order of magnitude 388 * {@code list.get(0) == list.get(0)} is true for the returned list is 429 @Override public Float get(int index) { method in class:Floats.FloatArrayAsList
|
Ints.java | 284 * {@link com.google.common.io.ByteStreams#newDataOutput()} to get a growable 374 // For pre-sizing a builder, just get the right order of magnitude 455 * {@code list.get(0) == list.get(0)} is true for the returned list is 493 @Override public Integer get(int index) { method in class:Ints.IntArrayAsList
|
Longs.java | 254 * {@link com.google.common.io.ByteStreams#newDataOutput()} to get a growable 358 // For pre-sizing a builder, just get the right order of magnitude 440 * {@code list.get(0) == list.get(0)} is true for the returned list is 478 @Override public Long get(int index) { method in class:Longs.LongArrayAsList
|
Shorts.java | 283 * {@link com.google.common.io.ByteStreams#newDataOutput()} to get a growable 371 // For pre-sizing a builder, just get the right order of magnitude 453 * {@code list.get(0) == list.get(0)} is true for the returned list is 491 @Override public Short get(int index) { method in class:Shorts.ShortArrayAsList
|
/external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/ |
CacheBuilder.java | 131 public V get(K key) throws ExecutionException { method in class:CacheBuilder.LocalManualCache 138 return get(key); 152 return localCache.get(key); 238 return get(key); 244 if (containsKey(key) && get(key).equals(value)) { 253 if (containsKey(key) && get(key).equals(oldValue)) { 284 V result = super.get(k); 288 * Map.get(), and tools like IDEs and Findbugs can catch situations where this isn't the 291 * The alternative is to add an overloaded method, but the chances of a user calling get()
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
ImmutableList.java | 244 public E get(int index) { method in class:ImmutableList 245 return delegate.get(index);
|
ImmutableMap.java | 220 public final V get(@Nullable Object key) { method in class:ImmutableMap
|
ImmutableSetMultimap.java | 219 Collection<V> collection = builderMultimap.get(checkNotNull(key)); 254 * <p>If this method is called, the sets returned by the {@code get()} 333 // Returned by get() when values are sorted and a missing key is provided. 351 @Override public ImmutableSet<V> get(@Nullable K key) { method in class:ImmutableSetMultimap 353 ImmutableSet<V> set = (ImmutableSet<V>) map.get(key);
|
Multimaps.java | 73 * multimap and its returned views. However, the multimap's {@code get} 74 * method returns instances of a different class than {@code factory.get()} 118 return factory.get(); 133 * multimap and its returned views. The multimap's {@code get}, {@code 135 * lists if the factory does. However, the multimap's {@code get} method 136 * returns instances of a different class than does {@code factory.get()}. 179 return factory.get(); 191 * multimap and its returned views. However, the multimap's {@code get} 192 * method returns instances of a different class than {@code factory.get()} 236 return factory.get(); 471 @Override public Collection<V> get(K key) { method in class:Multimaps.UnmodifiableMultimap [all...] |
/external/guava/guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/ |
Chars.java | 397 * {@code list.get(0) == list.get(0)} is true for the returned list is 435 @Override public Character get(int index) { method in class:Chars.CharArrayAsList
|
Ints.java | 318 // For pre-sizing a builder, just get the right order of magnitude 399 * {@code list.get(0) == list.get(0)} is true for the returned list is 437 @Override public Integer get(int index) { method in class:Ints.IntArrayAsList
|
Longs.java | 291 // For pre-sizing a builder, just get the right order of magnitude 373 * {@code list.get(0) == list.get(0)} is true for the returned list is 411 @Override public Long get(int index) { method in class:Longs.LongArrayAsList
|
Shorts.java | 319 // For pre-sizing a builder, just get the right order of magnitude 401 * {@code list.get(0) == list.get(0)} is true for the returned list is 439 @Override public Short get(int index) { method in class:Shorts.ShortArrayAsList
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
AbstractMapTester.java | 180 getMap().get(entry.getKey())); 194 entry.getValue(), getMap().get(entry.getKey())); 217 * Wrapper for {@link Map#get(Object)} that forces the caller to pass in a key 222 protected V get(K key) { method in class:AbstractMapTester 223 return getMap().get(key);
|
ConcurrentMapInterfaceTest.java | 84 assertEquals(valueToPut, map.get(keyToPut)); 112 V oldValue = map.get(keyToPut); 115 assertEquals(oldValue, map.get(keyToPut)); 241 V oldValue = map.get(keyToRemove); 297 V oldValue = map.get(keyToRemove); 299 assertEquals(oldValue, map.get(keyToRemove)); 423 V oldValue = map.get(keyToReplace); 426 assertEquals(newValue, map.get(keyToReplace)); 455 assertNull(map.get(keyToReplace)); 584 oldValue = map.get(keyToReplace) [all...] |