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

  /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
61 class ImmutableMap {
79 explicit ImmutableMap(const TreeTy* R) : Root(const_cast<TreeTy*>(R)) {
82 ImmutableMap(const ImmutableMap &X) : Root(X.Root) {
85 ImmutableMap &operator=(const ImmutableMap &X) {
93 ~ImmutableMap() {
    [all...]
  /external/guava/src/com/google/common/collect/
ImmutableMap.java 35 * separate map which can still change, an instance of {@code ImmutableMap}
36 * contains its own data and will <i>never</i> change. {@code ImmutableMap} is
53 public abstract class ImmutableMap<K, V> implements Map<K, V>, Serializable {
61 public static <K, V> ImmutableMap<K, V> of() {
63 return (ImmutableMap) EmptyImmutableMap.INSTANCE;
73 public static <K, V> ImmutableMap<K, V> of(K k1, V v1) {
83 public static <K, V> ImmutableMap<K, V> of(K k1, V v1, K k2, V v2) {
92 public static <K, V> ImmutableMap<K, V> of(
103 public static <K, V> ImmutableMap<K, V> of(
114 public static <K, V> ImmutableMap<K, V> of
    [all...]
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 
  /development/samples/NFCDemo/libs/
guava-10.0.1.jar 

Completed in 687 milliseconds