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

  /external/webkit/JavaScriptCore/runtime/
PropertyMapHashTable.h 29 struct PropertyMapEntry {
36 PropertyMapEntry(UString::Rep* key, unsigned attributes, JSCell* specificValue)
45 PropertyMapEntry(UString::Rep* key, unsigned offset, unsigned attributes, JSCell* specificValue, unsigned index)
68 PropertyMapEntry* entries()
74 return reinterpret_cast<PropertyMapEntry*>(&entryIndices[size]);
84 + (1 + size / 2) * sizeof(PropertyMapEntry);
Structure.cpp 279 PropertyMapEntry entry(structure->m_nameInPrevious.get(), m_anonymousSlotCount + structure->m_offset, structure->m_attributesInPrevious, structure->m_specificValueInPrevious, ++m_propertyTable->lastIndexUsed);
523 Vector<PropertyMapEntry*> sortedPropertyEntries(m_propertyTable->keyCount);
524 PropertyMapEntry** p = sortedPropertyEntries.data();
531 qsort(sortedPropertyEntries.data(), propertyCount, sizeof(PropertyMapEntry*), comparePropertyMapEntryIndices);
540 PropertyMapEntry* entry = sortedPropertyEntries[i];
930 void Structure::insertIntoPropertyMapHashTable(const PropertyMapEntry& entry)
    [all...]
Structure.h 162 void insertIntoPropertyMapHashTable(const PropertyMapEntry&);

Completed in 47 milliseconds