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

  /external/webkit/JavaScriptCore/runtime/
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);
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...]

Completed in 45 milliseconds