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

  /external/chromium_org/third_party/WebKit/Source/core/css/
SelectorFilter.cpp 42 identifierHashes.append(element->localName().impl()->existingHash() * TagNameSalt);
44 identifierHashes.append(element->idForStyleResolution().impl()->existingHash() * IdAttributeSalt);
49 identifierHashes.append(classNames[i].impl()->existingHash() * ClassAttributeSalt);
117 (*hash++) = selector->value().impl()->existingHash() * IdAttributeSalt;
121 (*hash++) = selector->value().impl()->existingHash() * ClassAttributeSalt;
125 (*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 63 return existingHash();
AtomicString.cpp 248 PassRefPtr<StringImpl> AtomicString::add(const UChar* s, unsigned length, unsigned existingHash)
251 ASSERT(existingHash);
256 HashAndCharacters<UChar> buffer = { existingHash, s, length };
400 HashAndCharacters<CharacterType> buffer = { stringImpl->existingHash(), stringImpl->getCharacters<CharacterType>(), stringImpl->length() };
407 ASSERT(stringImpl->existingHash());
AtomicString.h 49 AtomicString(const UChar* s, unsigned length, unsigned existingHash) : m_string(add(s, length, existingHash)) { }
170 static PassRefPtr<StringImpl> add(const UChar*, unsigned length, unsigned existingHash);
StringImpl.h 128 // Ensure that the hash is computed so that AtomicStringHash can call existingHash()
244 unsigned existingHash() const
253 return existingHash();
439 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/
Element.cpp     [all...]

Completed in 289 milliseconds