HomeSort by relevance Sort by last modified time
    Searched refs:StringHasher (Results 1 - 25 of 32) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/wtf/
StringHasherTest.cpp 28 #include "wtf/StringHasher.h"
55 TEST(StringHasherTest, StringHasher)
57 StringHasher hasher;
66 StringHasher hasher;
69 hasher = StringHasher();
75 hasher = StringHasher();
93 hasher = StringHasher();
113 StringHasher hasher;
116 hasher = StringHasher();
120 hasher = StringHasher();
    [all...]
StringHasher.h 40 class StringHasher {
44 StringHasher()
161 StringHasher hasher;
173 StringHasher hasher;
237 using WTF::StringHasher;
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
StringStatics.cpp 68 setHash(StringHasher::computeHashAndMaskTop8Bits(characters8(), m_length));
70 setHash(StringHasher::computeHashAndMaskTop8Bits(characters16(), m_length));
StringHash.h 27 #include "wtf/StringHasher.h"
75 return StringHasher::computeHashAndMaskTop8Bits<UChar, foldCase<UChar> >(data, length);
87 return StringHasher::computeHashAndMaskTop8Bits<LChar, foldCase<LChar> >(data, length);
AtomicString.cpp 143 return StringHasher::computeHashAndMaskTop8Bits(buf.s, buf.length);
170 ASSERT(buffer.hash == StringHasher::computeHashAndMaskTop8Bits(buffer.characters, buffer.length));
307 return StringHasher::computeHashAndMaskTop8Bits(buffer.baseString->characters8() + buffer.start, buffer.length);
308 return StringHasher::computeHashAndMaskTop8Bits(buffer.baseString->characters16() + buffer.start, buffer.length);
349 return StringHasher::computeHashAndMaskTop8Bits(buf.s, buf.length);
369 return StringHasher::computeHashAndMaskTop8Bits(reinterpret_cast<const LChar*>(buf.s), buf.length);
StringImpl.h 30 #include "wtf/StringHasher.h"
254 // Multiple clients assume that StringHasher is the canonical string hash function.
255 ASSERT(hash == (is8Bit() ? StringHasher::computeHashAndMaskTop8Bits(characters8(), m_length) : StringHasher::computeHashAndMaskTop8Bits(characters16(), m_length)));
448 ASSERT(existingHash() == StringHasher::computeHashAndMaskTop8Bits(characters8(), length()));
  /external/clang/test/PCH/
cxx-templates.cpp 59 struct StringHasher {
71 return StringHasher::createHash<char, foldCase>(data, length);
  /external/chromium_org/third_party/WebKit/Source/platform/
Crypto.h 17 #include "wtf/StringHasher.h"
44 return StringHasher::computeHash(v.data(), v.size());
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
FontCacheKey.h 67 return StringHasher::hashMemory<sizeof(hashCodes)>(hashCodes);
FontFaceCreationParams.h 35 #include "wtf/StringHasher.h"
101 StringHasher hasher;
WidthCache.h 35 #include "wtf/StringHasher.h"
71 StringHasher hasher;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ElementDataCache.cpp 38 return StringHasher::hashMemory(attributes.data(), attributes.size() * sizeof(Attribute));
PresentationAttributeStyle.cpp 154 unsigned attributeHash = StringHasher::hashMemory(key.attributesAndValues.data(), key.attributesAndValues.size() * sizeof(key.attributesAndValues[0]));
QualifiedName.h 72 // We rely on StringHasher's hashMemory clearing out the top 8 bits when
151 return StringHasher::hashMemory<sizeof(QualifiedNameComponents)>(&buf);
  /external/chromium_org/third_party/WebKit/Source/platform/weborigin/
SecurityOriginHash.h 46 return StringHasher::hashMemory<sizeof(hashCodes)>(hashCodes);
  /external/chromium_org/v8/src/
json-parser.h 737 StringHasher::AddCharacterCore(running_hash,
740 StringHasher::AddCharacterCore(running_hash,
743 running_hash = StringHasher::AddCharacterCore(running_hash, c0);
751 ? StringHasher::GetHashCore(running_hash)
ast-value-factory.cc 235 uint32_t hash = StringHasher::HashSequentialString<uint8_t>(
243 uint32_t hash = StringHasher::HashSequentialString<uint16_t>(
objects-inl.h 505 hash_field_ = StringHasher::HashSequentialString<Char>(string_.start(),
549 hash_field_ = StringHasher::HashSequentialString(
596 hash_field_ = StringHasher::ComputeUtf8Hash(string_, seed_, &chars_);
    [all...]
heap-snapshot-generator.h 578 return StringHasher::HashSequentialString(
profile-generator.cc 130 uint32_t hash = StringHasher::HashSequentialString(str, len, hash_seed_);
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/cocoa/
FontPlatformDataCocoa.mm 40 return StringHasher::hashMemory<sizeof(hashCodes)>(hashCodes);
  /external/chromium_org/third_party/WebKit/Source/wtf/unicode/
UTF8.cpp 31 #include "wtf/StringHasher.h"
375 StringHasher stringHasher;
381 stringHasher.addCharacter(*data++);
408 stringHasher.addCharacter(static_cast<UChar>(character)); // normal case
411 stringHasher.addCharacters(static_cast<UChar>(U16_LEAD(character)),
418 return stringHasher.hashWithTop8BitsMasked();
  /external/chromium_org/v8/src/heap/
heap-inl.h 295 StringHasher::AddCharacterCore(raw_allocations_hash_, c1);
297 StringHasher::AddCharacterCore(raw_allocations_hash_, c2);
302 uint32_t hash = StringHasher::GetHashCore(raw_allocations_hash_);
  /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/platform/image-decoders/gif/
GIFImageDecoderTest.cpp 42 #include "wtf/StringHasher.h"
65 return StringHasher::hashMemory(bitmap.getPixels(), bitmap.getSize());

Completed in 422 milliseconds

1 2