OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:hashMemory
(Results
1 - 15
of
15
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/svg/properties/
SVGAnimatedPropertyDescription.h
72
return StringHasher::
hashMemory
<sizeof(SVGAnimatedPropertyDescription)>(&key);
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
FontCacheKey.h
66
return StringHasher::
hashMemory
<sizeof(hashCodes)>(hashCodes);
FontPlatformData.h
136
return StringHasher::
hashMemory
<sizeof(hashCodes)>(hashCodes);
/external/chromium_org/third_party/WebKit/Source/core/dom/
DocumentSharedObjectPool.cpp
50
return StringHasher::
hashMemory
(m_attributes, m_attributeCount * sizeof(Attribute));
PresentationAttributeStyle.cpp
151
unsigned attributeHash = StringHasher::
hashMemory
(key.attributesAndValues.data(), key.attributesAndValues.size() * sizeof(key.attributesAndValues[0]));
QualifiedName.h
127
return StringHasher::
hashMemory
<sizeof(QualifiedNameComponents)>(&buf);
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/custom/
CustomFilterProgramInfo.cpp
90
return StringHasher::
hashMemory
<sizeof(hashCodes)>(&hashCodes);
/external/chromium_org/third_party/WebKit/Source/platform/weborigin/
SecurityOriginHash.h
46
return StringHasher::
hashMemory
<sizeof(hashCodes)>(hashCodes);
/external/chromium_org/third_party/WebKit/Source/wtf/
StringHasher.h
240
static unsigned
hashMemory
(const void* data, unsigned length)
249
template<size_t length> static unsigned
hashMemory
(const void* data)
252
return
hashMemory
(data, length);
StringHasherTest.cpp
431
ASSERT_EQ(emptyStringHash & 0xFFFFFF, StringHasher::
hashMemory
(0, 0));
432
ASSERT_EQ(emptyStringHash & 0xFFFFFF, StringHasher::
hashMemory
(nullUChars, 0));
433
ASSERT_EQ(emptyStringHash & 0xFFFFFF, StringHasher::
hashMemory
<0>(0));
434
ASSERT_EQ(emptyStringHash & 0xFFFFFF, StringHasher::
hashMemory
<0>(nullUChars));
436
ASSERT_EQ(singleNullCharacterHash & 0xFFFFFF, StringHasher::
hashMemory
(nullUChars, 2));
437
ASSERT_EQ(singleNullCharacterHash & 0xFFFFFF, StringHasher::
hashMemory
<2>(nullUChars));
439
ASSERT_EQ(testAHash5 & 0xFFFFFF, StringHasher::
hashMemory
(testAUChars, 10));
440
ASSERT_EQ(testAHash5 & 0xFFFFFF, StringHasher::
hashMemory
<10>(testAUChars));
441
ASSERT_EQ(testBHash5 & 0xFFFFFF, StringHasher::
hashMemory
(testBUChars, 10));
442
ASSERT_EQ(testBHash5 & 0xFFFFFF, StringHasher::
hashMemory
<10>(testBUChars))
[
all
...]
/external/chromium_org/third_party/WebKit/Source/platform/fonts/win/
FontPlatformDataWin.h
150
return StringHasher::
hashMemory
<sizeof(HFONT)>(&m_hfont);
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
FormController.cpp
165
return StringHasher::
hashMemory
<sizeof(FormElementKey)>(&key);
/external/chromium_org/third_party/WebKit/Source/web/tests/
GIFImageDecoderTest.cpp
66
return StringHasher::
hashMemory
(bitmap.getPixels(), bitmap.getSize());
WEBPImageDecoderTest.cpp
68
return StringHasher::
hashMemory
(bitmap.getPixels(), bitmap.getSize());
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleResolver.cpp
[
all
...]
Completed in 425 milliseconds