Home
last modified time | relevance | path

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

/external/webkit/Source/JavaScriptCore/wtf/text/
DAtomicString.cpp280 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()
DAtomicString.h46 …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);
DAtomicStringHash.h40 return key.impl()->existingHash(); in hash()
DStringImpl.h239 unsigned existingHash() const { ASSERT(m_hash); return m_hash; } in existingHash() function
/external/webkit/Source/JavaScriptCore/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/webkit/Source/JavaScriptCore/runtime/
DIdentifier.h142 static unsigned hash(const RefPtr<StringImpl>& key) { return key->existingHash(); } in hash()
143 static unsigned hash(StringImpl* key) { return key->existingHash(); } in hash()
DLookup.cpp37 int hashIndex = identifier->existingHash() & compactHashSizeMask; in createTable()
DStructureTransitionTable.h47 return p.first->existingHash(); in hash()
DPropertyMapHashTable.h327 unsigned hash = key->existingHash(); in find()
346 step =WTF::doubleHash(key->existingHash()) | 1; in find()
DLookup.h163 … const HashEntry* entry = &table[identifier.impl()->existingHash() & compactHashSizeMask]; in entry()
DStructure.cpp831 unsigned i = rep->existingHash(); in checkConsistency()
840 k = 1 | doubleHash(rep->existingHash()); in checkConsistency()
/external/webkit/Source/WebCore/bindings/js/
DJSDOMBinding.cpp250 ASSERT(impl->existingHash()); in findAtomicString()
251 return AtomicString::find(impl->characters(), impl->length(), impl->existingHash()); in findAtomicString()
/external/webkit/Source/WebCore/css/
DCSSStyleSelector.cpp608 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/
DChangeLog-2010-05-246074 (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/
DChangeLog-2009-06-1675177 (WebCore::StringImpl::existingHash):
DChangeLog-2010-01-2910396 WebCore change reflecting UString method name change computedHash() -> existingHash().