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

  /external/guava/src/com/google/common/collect/
ImmutableSet.java 44 * <p><b>Warning:</b> Like most sets, an {@code ImmutableSet} will not function
67 public abstract class ImmutableSet<E> extends ImmutableCollection<E>
76 public static <E> ImmutableSet<E> of() {
78 return (ImmutableSet) EmptyImmutableSet.INSTANCE;
88 public static <E> ImmutableSet<E> of(E element) {
100 public static <E> ImmutableSet<E> of(E e1, E e2) {
112 public static <E> ImmutableSet<E> of(E e1, E e2, E e3) {
124 public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4) {
136 public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4, E e5) {
148 public static <E> ImmutableSet<E> of(E... elements)
    [all...]
  /external/llvm/include/llvm/ADT/
ImmutableSet.h 1 //===--- ImmutableSet.h - Immutable (functional) set interface --*- C++ -*-===//
10 // This file defines the ImutAVLTree and ImmutableSet classes.
863 // definitions used by ImutAVLTree, ImmutableSet, and ImmutableMap. These
926 class ImmutableSet {
940 explicit ImmutableSet(TreeTy* R) : Root(R) {
943 ImmutableSet(const ImmutableSet &X) : Root(X.Root) {
946 ImmutableSet &operator=(const ImmutableSet &X) {
954 ~ImmutableSet() {
    [all...]
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 
  /development/samples/NFCDemo/libs/
guava-10.0.1.jar 

Completed in 143 milliseconds