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

  /external/ceres-solver/internal/ceres/
collections_port.h 31 // Portable HashMap and HashSet, and a specialized overload for hashing pairs.
64 struct HashSet : set<K> {};
78 struct HashSet : std::tr1::unordered_set<K> {};
  /external/webkit/Source/JavaScriptCore/wtf/
HashSet.h 29 template<typename Value, typename HashFunctions, typename Traits> class HashSet;
31 void deleteAllValues(const HashSet<Value, HashFunctions, Traits>&);
33 void fastDeleteAllValues(const HashSet<Value, HashFunctions, Traits>&);
38 typename TraitsArg = HashTraits<ValueArg> > class HashSet {
55 void swap(HashSet&);
92 friend void deleteAllValues<>(const HashSet&);
93 friend void fastDeleteAllValues<>(const HashSet&);
113 inline void HashSet<T, U, V>::swap(HashSet& other)
119 inline int HashSet<T, U, V>::size() cons
    [all...]
  /libcore/luni/src/main/java/java/util/
HashSet.java 26 * HashSet is an implementation of a Set. All optional operations (adding and
29 public class HashSet<E> extends AbstractSet<E> implements Set<E>, Cloneable,
34 transient HashMap<E, HashSet<E>> backingMap;
37 * Constructs a new empty instance of {@code HashSet}.
39 public HashSet() {
40 this(new HashMap<E, HashSet<E>>());
44 * Constructs a new instance of {@code HashSet} with the specified capacity.
47 * the initial capacity of this {@code HashSet}.
49 public HashSet(int capacity) {
50 this(new HashMap<E, HashSet<E>>(capacity))
    [all...]
  /external/openfst/src/include/fst/
bi-table.h 122 struct HashSet : public unordered_set<K, H, E> {
123 HashSet(size_t n = 0, const H &h = H(), const E &e = E())
239 typedef HashSet<I, HashFunc, HashEqual, HS> KeyHashSet;
448 typedef HashSet<I, HashFunc, HashEqual, HS> KeyHashSet;
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/4/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/6/
android.jar 
  /prebuilts/sdk/7/
android.jar 
  /prebuilts/sdk/8/
android.jar 
  /prebuilts/sdk/9/
android.jar 
  /prebuilts/sdk/current/
android.jar 

Completed in 624 milliseconds