Searched refs:existingHash (Results 1 – 9 of 9) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/css/ |
D | SelectorFilter.cpp | 41 identifierHashes.append(element.localName().impl()->existingHash() * TagNameSalt); in collectElementIdentifierHashes() 43 … identifierHashes.append(element.idForStyleResolution().impl()->existingHash() * IdAttributeSalt); in collectElementIdentifierHashes() 48 identifierHashes.append(classNames[i].impl()->existingHash() * ClassAttributeSalt); in collectElementIdentifierHashes() 116 (*hash++) = selector.value().impl()->existingHash() * IdAttributeSalt; in collectDescendantSelectorIdentifierHashes() 120 (*hash++) = selector.value().impl()->existingHash() * ClassAttributeSalt; in collectDescendantSelectorIdentifierHashes() 124 (*hash++) = selector.tagQName().localName().impl()->existingHash() * TagNameSalt; in collectDescendantSelectorIdentifierHashes()
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
D | BloomFilter.h | 59 void add(const AtomicString& string) { add(string.impl()->existingHash()); } in add() 61 void remove(const AtomicString& string) { remove(string.impl()->existingHash()); } in remove() 64 … mayContain(const AtomicString& string) const { return mayContain(string.impl()->existingHash()); } in mayContain()
|
/external/chromium_org/third_party/WebKit/Source/wtf/text/ |
D | AtomicString.cpp | 269 PassRefPtr<StringImpl> AtomicString::add(const UChar* s, unsigned length, unsigned existingHash) in add() argument 272 ASSERT(existingHash); in add() 277 HashAndCharacters<UChar> buffer = { existingHash, s, length }; in add() 414 …HashAndCharacters<CharacterType> buffer = { stringImpl->existingHash(), stringImpl->getCharacters<… in findString() 421 ASSERT(stringImpl->existingHash()); in find()
|
D | AtomicStringHash.h | 40 return key.impl()->existingHash(); in hash()
|
D | AtomicString.h | 42 …cString(const UChar* s, unsigned length, unsigned existingHash) : m_string(add(s, length, existing… in AtomicString() argument 168 static PassRefPtr<StringImpl> add(const UChar*, unsigned length, unsigned existingHash);
|
D | StringStatics.cpp | 71 return existingHash(); in DEFINE_GLOBAL()
|
D | StringImpl.h | 273 unsigned existingHash() const in existingHash() function 282 return existingHash(); in hash() 448 ASSERT(existingHash() == StringHasher::computeHashAndMaskTop8Bits(characters8(), length())); in assertHashIsCorrect()
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
D | PresentationAttributeStyle.cpp | 155 return WTF::pairIntHash(key.tagName->existingHash(), attributeHash); in computePresentationAttributeCacheHash()
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
D | MarkupAccumulator.cpp | 453 for (unsigned i = attribute.namespaceURI().impl()->existingHash(); ; ++i) { in appendAttribute()
|