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

  /external/webkit/JavaScriptCore/runtime/
Structure.cpp 126 Structure::Structure(JSValue prototype, const TypeInfo& typeInfo, unsigned anonymousSlotCount)
138 , m_anonymousSlotCount(anonymousSlotCount)
374 RefPtr<Structure> transition = create(structure->m_prototype, structure->typeInfo(), structure->anonymousSlotCount());
407 ASSERT(structure->anonymousSlotCount() == transition->anonymousSlotCount());
427 RefPtr<Structure> transition = create(prototype, structure->typeInfo(), structure->anonymousSlotCount());
440 ASSERT(structure->anonymousSlotCount() == transition->anonymousSlotCount());
447 RefPtr<Structure> transition = create(structure->storedPrototype(), structure->typeInfo(), structure->anonymousSlotCount());
467 ASSERT(structure->anonymousSlotCount() == transition->anonymousSlotCount())
    [all...]
Structure.h 64 static PassRefPtr<Structure> create(JSValue prototype, const TypeInfo& typeInfo, unsigned anonymousSlotCount)
66 return adoptRef(new Structure(prototype, typeInfo, anonymousSlotCount));
131 unsigned anonymousSlotCount() const { return m_anonymousSlotCount; }
145 Structure(JSValue prototype, const TypeInfo&, unsigned anonymousSlotCount);
JSObject.h 209 return Structure::create(prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount);
222 ASSERT(index < m_structure->anonymousSlotCount());
227 ASSERT(index < m_structure->anonymousSlotCount());

Completed in 28 milliseconds