HomeSort by relevance Sort by last modified time
    Searched refs:ImmutableMap (Results 51 - 75 of 129) sorted by null

1 23 4 5 6

  /external/guava/guava/src/com/google/common/collect/
ImmutableTable.java 250 @Override public abstract ImmutableMap<R, V> column(C columnKey);
258 * {@link ImmutableMap}s as well.
260 @Override public abstract ImmutableMap<C, Map<R, V>> columnMap();
267 @Override public abstract ImmutableMap<C, V> row(R rowKey);
275 * {@link ImmutableMap}s as well.
277 @Override public abstract ImmutableMap<R, Map<C, V>> rowMap();
ImmutableSetMultimap.java 318 ImmutableMap.Builder<K, ImmutableSet<V>> builder = ImmutableMap.builder();
341 ImmutableSetMultimap(ImmutableMap<K, ImmutableSet<V>> map, int size,
447 ImmutableMap.Builder<Object, ImmutableSet<Object>> builder
448 = ImmutableMap.builder();
471 ImmutableMap<Object, ImmutableSet<Object>> tmpMap;
ArrayTable.java 142 private final ImmutableMap<R, Integer> rowKeyToIndex;
143 private final ImmutableMap<C, Integer> columnKeyToIndex;
158 ImmutableMap.Builder<R, Integer> rowBuilder = ImmutableMap.builder();
164 ImmutableMap.Builder<C, Integer> columnBuilder = ImmutableMap.builder();
530 ? ImmutableMap.<R, V>of() : new Column(columnIndex);
675 return (rowIndex == null) ? ImmutableMap.<C, V>of() : new Row(rowIndex);
ImmutableMultimap.java 300 final transient ImmutableMap<K, ? extends ImmutableCollection<V>> map;
316 ImmutableMultimap(ImmutableMap<K, ? extends ImmutableCollection<V>> map,
485 public ImmutableMap<K, Collection<V>> asMap() {
486 return (ImmutableMap) map;
  /external/guava/guava-tests/test/com/google/common/collect/
EnumBiMapTest.java 55 Map<Currency, Country> map = ImmutableMap.of(
117 Map<Currency, Country> map = ImmutableMap.of(
131 Map<Currency, Country> map = ImmutableMap.of(
152 Map<Currency, Country> map = ImmutableMap.of(
ImmutableBiMapTest.java 451 ImmutableMap.of("one", 1, "two", 2));
458 new ImmutableMap.Builder<String, Integer>()
472 ImmutableMap<String, Integer> map
473 = new ImmutableMap.Builder<String, Integer>()
493 ImmutableMap.of("one", 1, "two", 2));
502 ImmutableMap.of("one", 1, "two", 2, "three", 3, "four", 4));
510 ImmutableMap.of("one", 1, "two", 2, "three", 3, "four", 4));
518 ImmutableMap.of("one", 1, "two", 2));
531 ImmutableMap.of("one", 1, "two", 2));
542 ImmutableMap.of(1, "one", 2, "two")).inverse()
    [all...]
AbstractTableReadTest.java 157 assertEquals(ImmutableMap.of(1, 'a', 3, 'c'), table.row("foo"));
171 assertEquals(ImmutableMap.of("foo", 'a', "bar", 'b'), table.column(1));
EnumHashBiMapTest.java 52 Map<Currency, String> map = ImmutableMap.of(
133 Map<Currency, String> map = ImmutableMap.of(
160 Map<Currency, String> map = ImmutableMap.of(
FauxveridesTest.java 50 doHasAllFauxveridesTest(ImmutableBiMap.class, ImmutableMap.class);
64 doHasAllFauxveridesTest(ImmutableSortedMap.class, ImmutableMap.class);
79 ImmutableMap.of(new Object(), new Object(), new Object(), new Object());
ImmutableClassToInstanceMapTest.java 122 ImmutableMap<Class<? extends Number>, ? extends Number> in
123 = ImmutableMap.of(Number.class, 0, Double.class, Math.PI);
  /external/guava/guava-tests/test/com/google/common/testing/
EquivalenceTesterTest.java 24 import com.google.common.collect.ImmutableMap;
208 final ImmutableMap.Builder<Object, Integer> hashExpectationsBuilder =
209 ImmutableMap.builder();
211 ImmutableMap<Object, Integer> hashExpectations;
  /packages/apps/Calculator/src/com/android/calculator2/
CalculatorEditText.java 38 import com.google.common.collect.ImmutableMap;
47 private ImmutableMap<String, String> sReplacementTable;
110 ImmutableMap.Builder<String, String> builder = ImmutableMap.builder();
  /packages/apps/Tag/src/com/android/apps/tag/record/
SmartPoster.java 23 import com.google.common.collect.ImmutableMap;
205 private static final ImmutableMap<Byte, RecommendedAction> LOOKUP;
207 ImmutableMap.Builder<Byte, RecommendedAction> builder = ImmutableMap.builder();
  /external/guava/guava-tests/test/com/google/common/base/
FunctionsTest.java 21 import com.google.common.collect.ImmutableMap;
111 checkCanReserialize(Functions.forMap(ImmutableMap.of(1, 2)));
158 checkCanReserialize(Functions.forMap(ImmutableMap.of(1, 2), 3));
162 ImmutableMap<String, Integer> map = ImmutableMap.of("One", 1);
177 ImmutableMap<String, Integer> map = ImmutableMap.of("One", 1);
294 Map<Float, String> m = ImmutableMap.of(
314 Map<Float, String> m = ImmutableMap.of(
SplitterTest.java 24 import com.google.common.collect.ImmutableMap;
628 ImmutableMap<String, String> expected =
629 ImmutableMap.of("boy", "tom", "girl", "tina", "cat", "kitty", "dog", "tommy");
639 ImmutableMap<String, String> expected =
640 ImmutableMap.of("boy ", " tom", "girl", " tina", "cat ", " kitty", "dog", " tommy");
650 ImmutableMap<String, String> expected =
651 ImmutableMap.of("boy", "tom", "girl", "tina", "cat", "kitty", "dog", "tommy");
659 ImmutableMap<String, String> expected =
660 ImmutableMap.of(" boy", "tom ", " girl", " tina ", " cat ", "kitty ", " dog", " tommy ");
671 ImmutableMap<String, String> expected
    [all...]
ToStringHelperTest.java 21 import com.google.common.collect.ImmutableMap;
200 Map<String, Integer> map = ImmutableMap.<String, Integer>builder()
218 Map<String, Integer> map = ImmutableMap.<String, Integer>builder()
JoinerTest.java 22 import com.google.common.collect.ImmutableMap;
283 assertEquals("", j.join(ImmutableMap.of()));
284 assertEquals(":", j.join(ImmutableMap.of("", "")));
299 j.appendTo(sb, ImmutableMap.of(1, 2, 3, 4, 5, 6));
  /external/jsilver/src/com/google/clearsilver/jsilver/precompiler/
PrecompiledTemplateLoader.java 28 import com.google.common.collect.ImmutableMap;
76 return ImmutableMap.copyOf(templateMap);
PrecompiledTemplateMapFileReader.java 22 import com.google.common.collect.ImmutableMap;
87 return ImmutableMap.copyOf(templateMap);
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
Environment.h 19 #include "llvm/ADT/ImmutableMap.h"
60 typedef llvm::ImmutableMap<EnvironmentEntry, SVal> BindingsTy;
  /external/clang/lib/StaticAnalyzer/Core/
BlockCounter.cpp 17 #include "llvm/ADT/ImmutableMap.h"
49 typedef llvm::ImmutableMap<CountKey, unsigned> CountMap;
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/
Contact.java 33 import com.google.common.collect.ImmutableMap;
76 private ImmutableMap<Long,DataStatus> mStatuses;
356 public ImmutableMap<Long, DataStatus> getStatuses() {
472 /* package */ void setStatuses(ImmutableMap<Long, DataStatus> statuses) {
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableListMultimap.java 248 ImmutableMap.Builder<K, ImmutableList<V>> builder = ImmutableMap.builder();
263 ImmutableListMultimap(ImmutableMap<K, ImmutableList<V>> map, int size) {
ImmutableMultimap.java 299 final transient ImmutableMap<K, ? extends ImmutableCollection<V>> map;
306 ImmutableMultimap(ImmutableMap<K, ? extends ImmutableCollection<V>> map,
475 public ImmutableMap<K, Collection<V>> asMap() {
476 return (ImmutableMap) map;
  /packages/apps/UnifiedEmail/src/com/android/mail/photomanager/
ContactPhotoManager.java 29 import com.google.common.collect.ImmutableMap;
193 ImmutableMap<String, ContactInfo> emailAddressToContactInfoMap =

Completed in 894 milliseconds

1 23 4 5 6