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

/external/chromium_org/third_party/WebKit/Source/wtf/
H A DListHashSet.h51 template<typename ValueArg, size_t inlineCapacity> struct ListHashSetAllocator;
77 template<typename ValueArg, size_t inlineCapacity = 256, typename HashArg = typename DefaultHash<ValueArg>::Hash, typename AllocatorArg = ListHashSetAllocator<ValueArg, inlineCapacity> > class ListHashSet
248 struct ListHashSetAllocator : public DefaultAllocator { struct in namespace:WTF
250 typedef ListHashSetNode<ValueArg, ListHashSetAllocator> Node;
257 m_allocator = adoptPtr(new ListHashSetAllocator);
271 ListHashSetAllocator* get() const
278 OwnPtr<ListHashSetAllocator> m_allocator;
281 ListHashSetAllocator() function in struct:WTF::ListHashSetAllocator

Completed in 164 milliseconds