Searched defs:ListHashSet (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/tools/clang/blink_gc_plugin/tests/heap/
H A Dstubs.h94 class ListHashSet {}; class in namespace:WTF
191 class HeapListHashSet : public ListHashSet<T, void, void, HeapAllocator> { };
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DListHashSet.h32 // ListHashSet: Just like HashSet, this class provides a Set
39 // guaranteed safe against mutation of the ListHashSet, except for
42 template<typename Value, size_t inlineCapacity, typename HashFunctions, typename Allocator> class ListHashSet;
56 // Don't declare a destructor for HeapAllocated ListHashSet.
74 // Note that for a ListHashSet you cannot specify the HashTraits as a
77 template<typename ValueArg, size_t inlineCapacity = 256, typename HashArg = typename DefaultHash<ValueArg>::Hash, typename AllocatorArg = ListHashSetAllocator<ValueArg, inlineCapacity> > class ListHashSet class in namespace:WTF
78 : public ListHashSetDestructorBase<ListHashSet<ValueArg, inlineCapacity, HashArg, AllocatorArg>, AllocatorArg, AllocatorArg::isGarbageCollected> {
80 WTF_USE_ALLOCATOR(ListHashSet, Allocator);
100 typedef ListHashSetIterator<ListHashSet> iterator;
101 typedef ListHashSetConstIterator<ListHashSet> const_iterato
662 inline ListHashSet<T, inlineCapacity, U, V>::ListHashSet() function in class:WTF::ListHashSet
669 inline ListHashSet<T, inlineCapacity, U, V>::ListHashSet(const ListHashSet& other) function in class:WTF::ListHashSet
[all...]

Completed in 6030 milliseconds