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

  /external/webkit/Source/WebCore/platform/graphics/
IntPointHash.h 42 template<> struct DefaultHash<WebCore::IntPoint> {
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; };
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/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...]
RetainPtr.h 248 template<typename P> struct DefaultHash<RetainPtr<P> > { typedef PtrHash<RetainPtr<P> > Hash; };
  /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/profiler/
CallIdentifier.h 85 template<> struct DefaultHash<JSC::CallIdentifier> { typedef JSC::CallIdentifier::Hash Hash; };
  /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> {
  /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/dom/
QualifiedName.h 138 template<typename T> struct DefaultHash;
140 template<> struct DefaultHash<WebCore::QualifiedName> {
  /external/webkit/Source/WebCore/platform/win/
COMPtr.h 239 template<typename P> struct DefaultHash<COMPtr<P> > { typedef PtrHash<COMPtr<P> > Hash; };

Completed in 757 milliseconds