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

  /external/webkit/JavaScriptCore/runtime/
Structure.h 90 void setPrototypeWithoutTransition(JSValue prototype) { m_prototype = prototype; }
97 JSValue storedPrototype() const { return m_prototype; }
195 JSValue m_prototype; member in class:JSC::Structure
Structure.cpp 128 , m_prototype(prototype)
140 ASSERT(m_prototype);
141 ASSERT(m_prototype.isObject() || m_prototype.isNull());
374 RefPtr<Structure> transition = create(structure->m_prototype, structure->typeInfo(), structure->anonymousSlotCount());
493 RefPtr<Structure> transition = create(structure->m_prototype, structure->typeInfo(), structure->anonymousSlotCount());
    [all...]
JSGlobalObject.h 361 return m_prototype;
  /external/webkit/JavaScriptCore/jit/
JITPropertyAccess.cpp 547 if (structure->m_prototype.isNull())
550 failureCases.append(branchPtr(NotEqual, AbsoluteAddress(&asCell(structure->m_prototype)->m_structure), ImmPtr(asCell(structure->m_prototype)->m_structure)));
    [all...]
JITOpcodes.cpp 500 load32(Address(regT2, OBJECT_OFFSETOF(Structure, m_prototype) + OBJECT_OFFSETOF(JSValue, u.asBits.payload)), regT2);
    [all...]

Completed in 41 milliseconds