Searched refs:existingHash (Results 1 – 16 of 16) sorted by relevance
/external/webkit/Source/JavaScriptCore/wtf/text/ |
D | AtomicString.cpp | 280 PassRefPtr<StringImpl> AtomicString::add(const UChar* s, unsigned length, unsigned existingHash) in add() argument 283 ASSERT(existingHash); in add() 288 HashAndCharacters buffer = { existingHash, s, length }; in add() 322 AtomicStringImpl* AtomicString::find(const UChar* s, unsigned length, unsigned existingHash) in find() argument 325 ASSERT(existingHash); in find() 330 HashAndCharacters buffer = { existingHash, s, length }; in find()
|
D | AtomicString.h | 46 …cString(const UChar* s, unsigned length, unsigned existingHash) : m_string(add(s, length, existing… in AtomicString() argument 56 static AtomicStringImpl* find(const UChar* s, unsigned length, unsigned existingHash); 121 static PassRefPtr<StringImpl> add(const UChar*, unsigned length, unsigned existingHash);
|
D | AtomicStringHash.h | 40 return key.impl()->existingHash(); in hash()
|
D | StringImpl.h | 239 unsigned existingHash() const { ASSERT(m_hash); return m_hash; } in existingHash() function
|
/external/webkit/Source/JavaScriptCore/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/webkit/Source/JavaScriptCore/runtime/ |
D | Identifier.h | 142 static unsigned hash(const RefPtr<StringImpl>& key) { return key->existingHash(); } in hash() 143 static unsigned hash(StringImpl* key) { return key->existingHash(); } in hash()
|
D | Lookup.cpp | 37 int hashIndex = identifier->existingHash() & compactHashSizeMask; in createTable()
|
D | StructureTransitionTable.h | 47 return p.first->existingHash(); in hash()
|
D | PropertyMapHashTable.h | 327 unsigned hash = key->existingHash(); in find() 346 step =WTF::doubleHash(key->existingHash()) | 1; in find()
|
D | Lookup.h | 163 … const HashEntry* entry = &table[identifier.impl()->existingHash() & compactHashSizeMask]; in entry()
|
D | Structure.cpp | 831 unsigned i = rep->existingHash(); in checkConsistency() 840 k = 1 | doubleHash(rep->existingHash()); in checkConsistency()
|
/external/webkit/Source/WebCore/bindings/js/ |
D | JSDOMBinding.cpp | 250 ASSERT(impl->existingHash()); in findAtomicString() 251 return AtomicString::find(impl->characters(), impl->length(), impl->existingHash()); in findAtomicString()
|
/external/webkit/Source/WebCore/css/ |
D | CSSStyleSelector.cpp | 608 identifierHashes.append(element->localName().impl()->existingHash()); in collectElementIdentifierHashes() 610 identifierHashes.append(element->idForStyleResolution().impl()->existingHash()); in collectElementIdentifierHashes() 616 identifierHashes.append(classNames[i].impl()->existingHash()); in collectElementIdentifierHashes() 3063 …m_descendantSelectorIdentifierHashes[identifierCount++] = selector->value().impl()->existingHash(); in collectIdentifierHashes() 3068 m_descendantSelectorIdentifierHashes[identifierCount++] = localName.impl()->existingHash(); in collectIdentifierHashes()
|
/external/webkit/Source/JavaScriptCore/ |
D | ChangeLog-2010-05-24 | 6074 (JSC::UStringImpl::existingHash): Reordered in file. 10751 Rename computedHash() to existingHash(), to bring this in line wih WebCore::StringImpl. 10804 (JSC::UStringImpl::existingHash):
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2009-06-16 | 75177 (WebCore::StringImpl::existingHash):
|
D | ChangeLog-2010-01-29 | 10396 WebCore change reflecting UString method name change computedHash() -> existingHash().
|