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

  /external/webkit/Source/JavaScriptCore/runtime/
JSGlobalObject.cpp 60 #include "ObjectPrototype.h"
172 m_functionPrototype.set(exec->globalData(), this, new (exec) FunctionPrototype(exec, this, FunctionPrototype::createStructure(exec->globalData(), jsNull()))); // The real prototype will be set once ObjectPrototype is created.
180 m_objectPrototype.set(exec->globalData(), this, new (exec) ObjectPrototype(exec, this, ObjectPrototype::createStructure(exec->globalData(), jsNull()), m_functionStructure.get()));
305 JSObject* objectPrototype = m_objectPrototype.get();
306 if (oldLastInPrototypeChain != objectPrototype)
307 oldLastInPrototypeChain->setPrototype(globalData, objectPrototype);
JSGlobalObject.h 81 WriteBarrier<ObjectPrototype> m_objectPrototype;
186 ObjectPrototype* objectPrototype() const { return m_objectPrototype.get(); }

Completed in 74 milliseconds