Home
last modified time | relevance | path

Searched refs:m_anonymousSlotCount (Results 1 – 2 of 2) sorted by relevance

/external/webkit/Source/JavaScriptCore/runtime/
DStructure.cpp190 , m_anonymousSlotCount(anonymousSlotCount) in Structure()
212 , m_anonymousSlotCount(0) in Structure()
233 , m_anonymousSlotCount(previous->anonymousSlotCount()) in Structure()
271 …pEntry entry(globalData, this, structure->m_nameInPrevious.get(), m_anonymousSlotCount + structure… in materializePropertyMap()
308 offset = existingTransition->m_offset + existingTransition->m_anonymousSlotCount; in addPropertyTransitionToExistingStructure()
309 ASSERT(offset >= structure->m_anonymousSlotCount); in addPropertyTransitionToExistingStructure()
310 ASSERT(structure->m_anonymousSlotCount == existingTransition->m_anonymousSlotCount); in addPropertyTransitionToExistingStructure()
340 ASSERT(offset >= structure->m_anonymousSlotCount); in addPropertyTransition()
341 ASSERT(structure->m_anonymousSlotCount == transition->m_anonymousSlotCount); in addPropertyTransition()
368 ASSERT(offset >= structure->m_anonymousSlotCount); in addPropertyTransition()
[all …]
DStructure.h108 …unsigned propertyStorageSize() const { return m_anonymousSlotCount + (m_propertyTable ? m_property… in propertyStorageSize()
124 bool hasAnonymousSlots() const { return !!m_anonymousSlotCount; } in hasAnonymousSlots()
125 unsigned anonymousSlotCount() const { return m_anonymousSlotCount; } in anonymousSlotCount()
245 unsigned m_anonymousSlotCount : 5; variable
257 ASSERT(!entry || entry->offset >= m_anonymousSlotCount); in get()