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

  /external/webkit/Source/JavaScriptCore/runtime/
Structure.cpp 177 Structure::Structure(JSGlobalData& globalData, JSValue prototype, const TypeInfo& typeInfo, unsigned anonymousSlotCount, const ClassInfo* classInfo)
190 , m_anonymousSlotCount(anonymousSlotCount)
233 , m_anonymousSlotCount(previous->anonymousSlotCount())
374 ASSERT(structure->anonymousSlotCount() == transition->anonymousSlotCount());
404 ASSERT(structure->anonymousSlotCount() == transition->anonymousSlotCount());
428 ASSERT(structure->anonymousSlotCount() == transition->anonymousSlotCount());
442 ASSERT(structure->anonymousSlotCount() == transition->anonymousSlotCount())
    [all...]
Structure.h 61 static Structure* create(JSGlobalData& globalData, JSValue prototype, const TypeInfo& typeInfo, unsigned anonymousSlotCount, const ClassInfo* classInfo)
64 return new (&globalData) Structure(globalData, prototype, typeInfo, anonymousSlotCount, classInfo);
125 unsigned anonymousSlotCount() const { return m_anonymousSlotCount; }
160 Structure(JSGlobalData&, JSValue prototype, const TypeInfo&, unsigned anonymousSlotCount, const ClassInfo*);
278 return Structure::create(globalData, jsNull(), TypeInfo(UnspecifiedType), AnonymousSlotCount, 0);
Lookup.cpp 73 ASSERT(thisObj->structure()->anonymousSlotCount() > 0);
JSObject.h 233 ASSERT(index < m_structure->anonymousSlotCount());
238 ASSERT(index < m_structure->anonymousSlotCount());
243 ASSERT(index < m_structure->anonymousSlotCount());
254 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
329 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
362 return Structure::create(globalData, prototype, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info);
    [all...]

Completed in 46 milliseconds