Home
last modified time | relevance | path

Searched refs:existingHash (Results 1 – 9 of 9) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/
DSelectorFilter.cpp41 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/
DBloomFilter.h59 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/
DAtomicString.cpp269 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()
DAtomicStringHash.h40 return key.impl()->existingHash(); in hash()
DAtomicString.h42 …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);
DStringStatics.cpp71 return existingHash(); in DEFINE_GLOBAL()
DStringImpl.h273 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/
DPresentationAttributeStyle.cpp155 return WTF::pairIntHash(key.tagName->existingHash(), attributeHash); in computePresentationAttributeCacheHash()
/external/chromium_org/third_party/WebKit/Source/core/editing/
DMarkupAccumulator.cpp453 for (unsigned i = attribute.namespaceURI().impl()->existingHash(); ; ++i) { in appendAttribute()