HomeSort by relevance Sort by last modified time
    Searched refs:existingHash (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/css/
SelectorFilter.cpp 41 identifierHashes.append(element.localName().impl()->existingHash() * TagNameSalt);
43 identifierHashes.append(element.idForStyleResolution().impl()->existingHash() * IdAttributeSalt);
48 identifierHashes.append(classNames[i].impl()->existingHash() * ClassAttributeSalt);
116 (*hash++) = selector.value().impl()->existingHash() * IdAttributeSalt;
120 (*hash++) = selector.value().impl()->existingHash() * ClassAttributeSalt;
124 (*hash++) = selector.tagQName().localName().impl()->existingHash() * TagNameSalt;
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
AtomicStringHash.h 40 return key.impl()->existingHash();
StringStatics.cpp 71 return existingHash();
AtomicString.cpp 269 PassRefPtr<StringImpl> AtomicString::add(const UChar* s, unsigned length, unsigned existingHash)
272 ASSERT(existingHash);
277 HashAndCharacters<UChar> buffer = { existingHash, s, length };
414 HashAndCharacters<CharacterType> buffer = { stringImpl->existingHash(), stringImpl->getCharacters<CharacterType>(), stringImpl->length() };
421 ASSERT(stringImpl->existingHash());
AtomicString.h 42 AtomicString(const UChar* s, unsigned length, unsigned existingHash) : m_string(add(s, length, existingHash)) { }
168 static PassRefPtr<StringImpl> add(const UChar*, unsigned length, unsigned existingHash);
StringImpl.h 137 // Ensure that the hash is computed so that AtomicStringHash can call existingHash()
273 unsigned existingHash() const
282 return existingHash();
448 ASSERT(existingHash() == StringHasher::computeHashAndMaskTop8Bits(characters8(), length()));
  /external/chromium_org/third_party/WebKit/Source/wtf/
BloomFilter.h 59 void add(const AtomicString& string) { add(string.impl()->existingHash()); }
61 void remove(const AtomicString& string) { remove(string.impl()->existingHash()); }
64 bool mayContain(const AtomicString& string) const { return mayContain(string.impl()->existingHash()); }
  /external/chromium_org/third_party/WebKit/Source/core/dom/
PresentationAttributeStyle.cpp 155 return WTF::pairIntHash(key.tagName->existingHash(), attributeHash);
  /external/chromium_org/third_party/WebKit/Source/core/editing/
MarkupAccumulator.cpp 453 for (unsigned i = attribute.namespaceURI().impl()->existingHash(); ; ++i) {

Completed in 178 milliseconds