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

1 23 4 5 6 7 8 91011>>

  /external/guava/guava/src/com/google/common/collect/
DenseImmutableTable.java 33 private final ImmutableMap<R, Integer> rowKeyToIndex;
34 private final ImmutableMap<C, Integer> columnKeyToIndex;
35 private final ImmutableMap<R, Map<C, V>> rowMap;
36 private final ImmutableMap<C, Map<R, V>> columnMap;
43 private static <E> ImmutableMap<E, Integer> makeIndex(ImmutableSet<E> set) {
44 ImmutableMap.Builder<E, Integer> indexBuilder = ImmutableMap.builder();
87 private abstract static class ImmutableArrayMap<K, V> extends ImmutableMap<K, V> {
94 abstract ImmutableMap<K, Integer> keyToIndex();
126 @Override ImmutableMap<K, V> map()
    [all...]
EmptyImmutableListMultimap.java 32 super(ImmutableMap.<Object, ImmutableList<Object>>of(), 0);
EmptyImmutableSetMultimap.java 32 super(ImmutableMap.<Object, ImmutableSet<Object>>of(), 0, null);
ImmutableMapKeySet.java 28 * {@code keySet()} implementation for {@link ImmutableMap}.
35 private final ImmutableMap<K, V> map;
37 ImmutableMapKeySet(ImmutableMap<K, V> map) {
86 final ImmutableMap<K, ?> map;
87 KeySetSerializedForm(ImmutableMap<K, ?> map) {
ImmutableMapValues.java 28 * {@code values()} implementation for {@link ImmutableMap}.
35 private final ImmutableMap<K, V> map;
37 ImmutableMapValues(ImmutableMap<K, V> map) {
84 final ImmutableMap<?, V> map;
85 SerializedForm(ImmutableMap<?, V> map) {
  /external/guava/guava-tests/test/com/google/common/escape/
ArrayBasedEscaperMapTest.java 20 import com.google.common.collect.ImmutableMap;
41 Map<Character, String> map = ImmutableMap.of();
48 Map<Character, String> map = ImmutableMap.of(
57 Map<Character, String> map = ImmutableMap.of(
  /external/turbine/java/com/google/turbine/binder/bound/
SourceBoundClass.java 19 import com.google.common.collect.ImmutableMap;
28 private final ImmutableMap<String, ClassSymbol> children;
35 ImmutableMap<String, ClassSymbol> children,
65 public ImmutableMap<String, ClassSymbol> children() {
SourceTypeBoundClass.java 21 import com.google.common.collect.ImmutableMap;
39 private final ImmutableMap<String, ClassSymbol> children;
42 private final ImmutableMap<String, TyVarSymbol> typeParameters;
44 private final ImmutableMap<TyVarSymbol, TyVarInfo> typeParameterTypes;
59 ImmutableMap<TyVarSymbol, TyVarInfo> typeParameterTypes,
65 ImmutableMap<String, ClassSymbol> children,
66 ImmutableMap<String, TyVarSymbol> typeParameters,
126 public ImmutableMap<String, ClassSymbol> children() {
131 public ImmutableMap<String, TyVarSymbol> typeParameters() {
165 public ImmutableMap<TyVarSymbol, TyVarInfo> typeParameterTypes()
    [all...]
SourceHeaderBoundClass.java 20 import com.google.common.collect.ImmutableMap;
35 private final ImmutableMap<String, TyVarSymbol> typeParameters;
41 ImmutableMap<String, TyVarSymbol> typeParameters) {
74 public ImmutableMap<String, ClassSymbol> children() {
80 public ImmutableMap<String, TyVarSymbol> typeParameters() {
  /external/guice/extensions/servlet/test/com/google/inject/servlet/
TransferRequestIntegrationTest.java 19 import com.google.common.collect.ImmutableMap;
84 ImmutableMap<Key<?>, Object> seedMap = ImmutableMap.of();
109 ImmutableMap<Key<?>, Object> seedMap = ImmutableMap.of();
120 ImmutableMap<Key<?>, Object> seedMap = ImmutableMap.of();
  /external/caliper/caliper/src/main/java/com/google/caliper/config/
InstrumentConfig.java 25 import com.google.common.collect.ImmutableMap;
41 private final ImmutableMap<String, String> options;
52 public ImmutableMap<String, String> options() {
81 private final ImmutableMap.Builder<String, String> optionsBuilder = ImmutableMap.builder();
CaliperConfigLoader.java 22 import com.google.common.collect.ImmutableMap;
48 ImmutableMap<String, String> defaults;
60 ImmutableMap<String, String> user =
70 ImmutableMap<String, String> user;
79 private static ImmutableMap<String, String> mergeProperties(Map<String, String> commandLine,
86 return ImmutableMap.copyOf(map);
  /external/caliper/caliper/src/main/java/com/google/caliper/json/
ImmutableMapTypeAdapterFactory.java 19 import com.google.common.collect.ImmutableMap;
35 * Serializes and deserializes {@link ImmutableMap} instances using a {@link HashMap} as an
42 if (typeToken.getRawType() != ImmutableMap.class
47 com.google.common.reflect.TypeToken<ImmutableMap<?, ?>> betterToken =
48 (com.google.common.reflect.TypeToken<ImmutableMap<?, ?>>)
62 return (T) ImmutableMap.copyOf(hashMap);
  /external/desugar/java/com/google/devtools/common/options/
OptionsData.java 18 import com.google.common.collect.ImmutableMap;
34 private final ImmutableMap<OptionDefinition, ImmutableList<String>> evaluatedExpansions;
40 this.evaluatedExpansions = ImmutableMap.copyOf(evaluatedExpansions);
66 ImmutableMap.Builder<OptionDefinition, ImmutableList<String>> evaluatedExpansionsBuilder =
67 ImmutableMap.builder();
  /external/guice/core/src/com/google/inject/internal/
DefaultConstructionProxyFactory.java 19 import com.google.common.collect.ImmutableMap;
69 public ImmutableMap<Method, List<org.aopalliance.intercept.MethodInterceptor>>
71 return ImmutableMap.of();
100 public ImmutableMap<Method, List<org.aopalliance.intercept.MethodInterceptor>>
102 return ImmutableMap.of();
  /frameworks/layoutlib/bridge/tests/src/android/util/
BridgeXmlPullAttributesTest.java 26 import com.google.common.collect.ImmutableMap;
58 return ImmutableMap.of(
61 return ImmutableMap.of();
65 return ImmutableMap.of(
70 return ImmutableMap.of();
  /external/guava/guava/src/com/google/common/reflect/
ImmutableTypeToInstanceMap.java 21 import com.google.common.collect.ImmutableMap;
26 * A type-to-instance map backed by an {@link ImmutableMap}. See also {@link
38 return new ImmutableTypeToInstanceMap<B>(ImmutableMap.<TypeToken<? extends B>, B>of());
64 private final ImmutableMap.Builder<TypeToken<? extends B>, B> mapBuilder
65 = ImmutableMap.builder();
98 private final ImmutableMap<TypeToken<? extends B>, B> delegate;
100 private ImmutableTypeToInstanceMap(ImmutableMap<TypeToken<? extends B>, B> delegate) {
  /external/guava/guava-tests/test/com/google/common/collect/
ImmutableMapTest.java 24 import com.google.common.collect.ImmutableMap.Builder;
61 * Tests for {@link ImmutableMap}.
81 .named("ImmutableMap")
90 .named("ImmutableMap.copyOf")
99 .named("ImmutableMap.copyOf[EnumMap]")
106 .named("ImmutableMap.values, unhashable")
111 .named("ImmutableMap.keySet.asList")
120 .named("ImmutableMap.entrySet.asList")
129 .named("ImmutableMap.values.asList")
173 return ImmutableMap.of()
    [all...]
  /external/llvm/include/llvm/ADT/
ImmutableMap.h 1 //===--- ImmutableMap.h - Immutable (functional) map interface --*- C++ -*-===//
10 // This file defines the ImmutableMap class.
21 /// ImutKeyValueInfo -Traits class used by ImmutableMap. While both the first
60 class ImmutableMap {
78 explicit ImmutableMap(const TreeTy* R) : Root(const_cast<TreeTy*>(R)) {
82 ImmutableMap(const ImmutableMap &X) : Root(X.Root) {
86 ImmutableMap &operator=(const ImmutableMap &X) {
95 ~ImmutableMap() {
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/phonenumberproto/
PartitionedNumbers.java 25 import com.google.common.collect.ImmutableMap;
38 private final ImmutableMap<String, ImmutableSet<DialerPhoneNumber>>
40 private final ImmutableMap<String, ImmutableSet<DialerPhoneNumber>>
119 private static <K, V> ImmutableMap<K, ImmutableSet<V>> makeImmutable(
121 ImmutableMap.Builder<K, ImmutableSet<V>> mapBuilder = ImmutableMap.builder();
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
ImmutableMap.h 1 //===--- ImmutableMap.h - Immutable (functional) map interface --*- C++ -*-===//
10 // This file defines the ImmutableMap class.
24 /// ImutKeyValueInfo -Traits class used by ImmutableMap. While both the first
63 class ImmutableMap {
81 explicit ImmutableMap(const TreeTy* R) : Root(const_cast<TreeTy*>(R)) {
85 ImmutableMap(const ImmutableMap &X) : Root(X.Root) {
89 ImmutableMap &operator=(const ImmutableMap &X) {
98 ~ImmutableMap() {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/ADT/
ImmutableMap.h 1 //===--- ImmutableMap.h - Immutable (functional) map interface --*- C++ -*-===//
10 // This file defines the ImmutableMap class.
24 /// ImutKeyValueInfo -Traits class used by ImmutableMap. While both the first
63 class ImmutableMap {
81 explicit ImmutableMap(const TreeTy* R) : Root(const_cast<TreeTy*>(R)) {
85 ImmutableMap(const ImmutableMap &X) : Root(X.Root) {
89 ~ImmutableMap() {
93 ImmutableMap &operator=(const ImmutableMap &X)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/ADT/
ImmutableMap.h 1 //===--- ImmutableMap.h - Immutable (functional) map interface --*- C++ -*-===//
10 // This file defines the ImmutableMap class.
24 /// ImutKeyValueInfo -Traits class used by ImmutableMap. While both the first
63 class ImmutableMap {
81 explicit ImmutableMap(const TreeTy* R) : Root(const_cast<TreeTy*>(R)) {
85 ImmutableMap(const ImmutableMap &X) : Root(X.Root) {
89 ~ImmutableMap() {
93 ImmutableMap &operator=(const ImmutableMap &X)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/ADT/
ImmutableMap.h 1 //===--- ImmutableMap.h - Immutable (functional) map interface --*- C++ -*-===//
10 // This file defines the ImmutableMap class.
24 /// ImutKeyValueInfo -Traits class used by ImmutableMap. While both the first
63 class ImmutableMap {
81 explicit ImmutableMap(const TreeTy* R) : Root(const_cast<TreeTy*>(R)) {
85 ImmutableMap(const ImmutableMap &X) : Root(X.Root) {
89 ~ImmutableMap() {
93 ImmutableMap &operator=(const ImmutableMap &X)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/ADT/
ImmutableMap.h 1 //===--- ImmutableMap.h - Immutable (functional) map interface --*- C++ -*-===//
10 // This file defines the ImmutableMap class.
24 /// ImutKeyValueInfo -Traits class used by ImmutableMap. While both the first
63 class ImmutableMap {
81 explicit ImmutableMap(const TreeTy* R) : Root(const_cast<TreeTy*>(R)) {
85 ImmutableMap(const ImmutableMap &X) : Root(X.Root) {
89 ~ImmutableMap() {
93 ImmutableMap &operator=(const ImmutableMap &X)
    [all...]

Completed in 1939 milliseconds

1 23 4 5 6 7 8 91011>>