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

  /external/webkit/Source/JavaScriptCore/wtf/text/
AtomicStringHash.h 40 return key.impl()->existingHash();
AtomicString.cpp 280 PassRefPtr<StringImpl> AtomicString::add(const UChar* s, unsigned length, unsigned existingHash)
283 ASSERT(existingHash);
288 HashAndCharacters buffer = { existingHash, s, length };
322 AtomicStringImpl* AtomicString::find(const UChar* s, unsigned length, unsigned existingHash)
325 ASSERT(existingHash);
330 HashAndCharacters buffer = { existingHash, s, length };
AtomicString.h 46 AtomicString(const UChar* s, unsigned length, unsigned existingHash) : m_string(add(s, length, existingHash)) { }
56 static AtomicStringImpl* find(const UChar* s, unsigned length, unsigned existingHash);
121 static PassRefPtr<StringImpl> add(const UChar*, unsigned length, unsigned existingHash);
StringImpl.h 83 // Ensure that the hash is computed so that AtomicStringHash can call existingHash()
239 unsigned existingHash() const { ASSERT(m_hash); return m_hash; }
  /external/webkit/Source/JavaScriptCore/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/webkit/Source/JavaScriptCore/runtime/
Identifier.h 142 static unsigned hash(const RefPtr<StringImpl>& key) { return key->existingHash(); }
143 static unsigned hash(StringImpl* key) { return key->existingHash(); }
Lookup.cpp 37 int hashIndex = identifier->existingHash() & compactHashSizeMask;
StructureTransitionTable.h 47 return p.first->existingHash();
PropertyMapHashTable.h 327 unsigned hash = key->existingHash();
346 step =WTF::doubleHash(key->existingHash()) | 1;
Lookup.h 163 const HashEntry* entry = &table[identifier.impl()->existingHash() & compactHashSizeMask];
Structure.cpp 831 unsigned i = rep->existingHash();
840 k = 1 | doubleHash(rep->existingHash());
  /external/webkit/Source/WebCore/bindings/js/
JSDOMBinding.cpp 250 ASSERT(impl->existingHash());
251 return AtomicString::find(impl->characters(), impl->length(), impl->existingHash());
  /external/webkit/Source/WebCore/css/
CSSStyleSelector.cpp 608 identifierHashes.append(element->localName().impl()->existingHash());
610 identifierHashes.append(element->idForStyleResolution().impl()->existingHash());
616 identifierHashes.append(classNames[i].impl()->existingHash());
    [all...]

Completed in 252 milliseconds