HomeSort by relevance Sort by last modified time
    Searched refs:DefaultHash (Results 1 - 23 of 23) sorted by null

  /external/webkit/Source/JavaScriptCore/wtf/
HashFunctions.h 137 template<typename T> struct DefaultHash;
142 return intHash((static_cast<uint64_t>(DefaultHash<T>::Hash::hash(p.first)) << 32 | DefaultHash<U>::Hash::hash(p.second)));
146 return DefaultHash<T>::Hash::equal(a.first, b.first) && DefaultHash<U>::Hash::equal(a.second, b.second);
148 static const bool safeToCompareToEmptyOrDeleted = DefaultHash<T>::Hash::safeToCompareToEmptyOrDeleted
149 && DefaultHash<U>::Hash::safeToCompareToEmptyOrDeleted;
154 template<> struct DefaultHash<short> { typedef IntHash<unsigned> Hash; };
155 template<> struct DefaultHash<unsigned short> { typedef IntHash<unsigned> Hash; };
156 template<> struct DefaultHash<int> { typedef IntHash<unsigned> Hash; }
    [all...]
HashCountedSet.h 30 template<typename Value, typename HashFunctions = typename DefaultHash<Value>::Hash,
RetainPtr.h 248 template<typename P> struct DefaultHash<RetainPtr<P> > { typedef PtrHash<RetainPtr<P> > Hash; };
HashSet.h 37 template<typename ValueArg, typename HashArg = typename DefaultHash<ValueArg>::Hash,
HashMap.h 30 template<typename KeyArg, typename MappedArg, typename HashArg = typename DefaultHash<KeyArg>::Hash,
ListHashSet.h 56 template<typename ValueArg, size_t inlineCapacity = 256, typename HashArg = typename DefaultHash<ValueArg>::Hash> class ListHashSet {
  /external/webkit/Source/WebCore/platform/graphics/
IntRectHash.h 40 return intHash(static_cast<uint64_t>(DefaultHash<WebCore::IntPoint>::Hash::hash(key.location())) << 32 | DefaultHash<WebCore::IntSize>::Hash::hash(key.size()));
44 return DefaultHash<WebCore::IntPoint>::Hash::equal(a.location(), b.location()) && DefaultHash<WebCore::IntSize>::Hash::equal(a.size(), b.size());
48 template<> struct DefaultHash<WebCore::IntRect> { typedef IntHash<WebCore::IntRect> Hash; };
IntPointHash.h 42 template<> struct DefaultHash<WebCore::IntPoint> {
IntSizeHash.h 34 template<> struct DefaultHash<WebCore::IntSize> { typedef IntHash<WebCore::IntSize> Hash; };
  /external/webkit/Source/WebCore/platform/network/
ProtectionSpaceHash.h 62 template<typename T> struct DefaultHash;
63 template<> struct DefaultHash<WebCore::ProtectionSpace> {
  /external/webkit/Source/WebCore/platform/
Cookie.h 76 template<typename T> struct DefaultHash;
77 template<> struct DefaultHash<WebCore::Cookie> {
KURL.h 396 template<typename T> struct DefaultHash;
397 template<> struct DefaultHash<WebCore::KURL> {
  /external/webkit/Source/JavaScriptCore/runtime/
RegExpKey.h 92 template<typename T> struct DefaultHash;
101 template<> struct DefaultHash<JSC::RegExpKey> {
UString.h 250 template<typename T> struct DefaultHash;
251 template<> struct DefaultHash<JSC::UString> {
WeakGCMap.h 49 template<typename KeyType, typename MappedType, typename FinalizerCallback = DefaultWeakGCMapFinalizerCallback<KeyType, MappedType>, typename HashArg = typename DefaultHash<KeyType>::Hash, typename KeyTraitsArg = HashTraits<KeyType> >
  /external/webkit/Source/WebCore/dom/
QualifiedName.h 138 template<typename T> struct DefaultHash;
140 template<> struct DefaultHash<WebCore::QualifiedName> {
  /external/webkit/Source/JavaScriptCore/profiler/
CallIdentifier.h 85 template<> struct DefaultHash<JSC::CallIdentifier> { typedef JSC::CallIdentifier::Hash Hash; };
  /external/webkit/Source/JavaScriptCore/wtf/text/
AtomicString.h 186 template<typename T> struct DefaultHash;
187 template<> struct DefaultHash<AtomicString> {
StringImpl.h 399 template<typename T> struct DefaultHash;
400 template<> struct DefaultHash<StringImpl*> {
403 template<> struct DefaultHash<RefPtr<StringImpl> > {
WTFString.h 497 template<typename T> struct DefaultHash;
498 template<> struct DefaultHash<String> {
  /external/webkit/Source/WebCore/platform/graphics/chromium/
LayerTilerChromium.h 155 typedef HashMap<TileMapKey, RefPtr<Tile>, DefaultHash<TileMapKey>::Hash, TileMapKeyTraits> TileMap;
  /external/webkit/Source/WebCore/platform/win/
COMPtr.h 239 template<typename P> struct DefaultHash<COMPtr<P> > { typedef PtrHash<COMPtr<P> > Hash; };
  /external/webkit/Source/WebCore/rendering/
RenderBlock.h     [all...]

Completed in 402 milliseconds