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

  /external/webkit/Source/WebCore/ForwardingHeaders/runtime/
ObjectPrototype.h 3 #include <JavaScriptCore/ObjectPrototype.h>
  /external/webkit/Source/JavaScriptCore/runtime/
ErrorPrototype.h 28 class ObjectPrototype;
ObjectPrototype.h 28 class ObjectPrototype : public JSNonFinalObject {
30 ObjectPrototype(ExecState*, JSGlobalObject*, Structure*, Structure* functionStructure);
ObjectConstructor.h 28 class ObjectPrototype;
32 ObjectConstructor(ExecState*, JSGlobalObject*, Structure*, ObjectPrototype*);
DatePrototype.h 28 class ObjectPrototype;
StringPrototype.h 28 class ObjectPrototype;
ObjectPrototype.cpp 22 #include "ObjectPrototype.h"
31 ASSERT_CLASS_FITS_IN_CELL(ObjectPrototype);
43 ObjectPrototype::ObjectPrototype(ExecState* exec, JSGlobalObject* globalObject, Structure* stucture, Structure* functionStructure)
61 void ObjectPrototype::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
72 bool ObjectPrototype::getOwnPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot)
JSGlobalObject.h 81 WriteBarrier<ObjectPrototype> m_objectPrototype;
186 ObjectPrototype* objectPrototype() const { return m_objectPrototype.get(); }
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);
ObjectConstructor.cpp 30 #include "ObjectPrototype.h"
78 ObjectConstructor::ObjectConstructor(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, ObjectPrototype* objectPrototype)
82 putDirectWithoutTransition(exec->globalData(), exec->propertyNames().prototype, objectPrototype, DontEnum | DontDelete | ReadOnly);
  /external/webkit/Source/WebCore/bridge/
runtime_object.h 59 static ObjectPrototype* createPrototype(ExecState*, JSGlobalObject* globalObject)
61 return globalObject->objectPrototype();
runtime_object.cpp 32 #include <runtime/ObjectPrototype.h>
  /external/webkit/Source/JavaScriptCore/API/
JSCallbackConstructor.cpp 34 #include <runtime/ObjectPrototype.h>
JSClassRef.cpp 34 #include <runtime/ObjectPrototype.h>
  /external/v8/src/
accessors.h 60 V(ObjectPrototype)
accessors.cc 776 // Accessors::ObjectPrototype
799 const AccessorDescriptor Accessors::ObjectPrototype = {
heap.cc     [all...]
runtime.cc     [all...]
  /external/webkit/Source/WebCore/bindings/scripts/test/JS/
JSTestInterface.h 29 #include <runtime/ObjectPrototype.h>
JSTestMediaQueryListListener.h 27 #include <runtime/ObjectPrototype.h>
JSTestSerializedScriptValueInterface.h 29 #include <runtime/ObjectPrototype.h>
JSTestObj.h 27 #include <runtime/ObjectPrototype.h>
  /external/webkit/Source/WebCore/bridge/objc/
objc_runtime.h 101 static ObjectPrototype* createPrototype(ExecState*, JSGlobalObject* globalObject)
103 return globalObject->objectPrototype();
objc_runtime.mm 38 #include <runtime/ObjectPrototype.h>
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
JSNPObject.cpp 36 #include <JavaScriptCore/ObjectPrototype.h>
53 : JSObjectWithGlobalObject(globalObject, createStructure(globalObject->globalData(), globalObject->objectPrototype()))

Completed in 468 milliseconds