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

  /external/webkit/WebCore/ForwardingHeaders/runtime/
ObjectPrototype.h 3 #include <JavaScriptCore/ObjectPrototype.h>
  /external/webkit/JavaScriptCore/runtime/
ObjectConstructor.h 28 class ObjectPrototype;
32 ObjectConstructor(ExecState*, NonNullPassRefPtr<Structure>, ObjectPrototype*, Structure* prototypeFunctionStructure);
ErrorPrototype.h 28 class ObjectPrototype;
ObjectPrototype.h 28 class ObjectPrototype : public JSObject {
30 ObjectPrototype(ExecState*, NonNullPassRefPtr<Structure>, Structure* prototypeFunctionStructure);
StringPrototype.h 28 class ObjectPrototype;
DatePrototype.h 28 class ObjectPrototype;
ObjectPrototype.cpp 22 #include "ObjectPrototype.h"
32 ASSERT_CLASS_FITS_IN_CELL(ObjectPrototype);
44 ObjectPrototype::ObjectPrototype(ExecState* exec, NonNullPassRefPtr<Structure> stucture, Structure* prototypeFunctionStructure)
62 void ObjectPrototype::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
73 bool ObjectPrototype::getOwnPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot)
JSGlobalObject.h 84 , objectPrototype(0)
123 ObjectPrototype* objectPrototype;
207 ObjectPrototype* objectPrototype() const { return d()->objectPrototype; }
ObjectConstructor.cpp 28 #include "ObjectPrototype.h"
45 ObjectConstructor::ObjectConstructor(ExecState* exec, NonNullPassRefPtr<Structure> structure, ObjectPrototype* objectPrototype, Structure* prototypeFunctionStructure)
49 putDirectWithoutTransition(exec->propertyNames().prototype, objectPrototype, DontEnum | DontDelete | ReadOnly);
JSGlobalObject.cpp 61 #include "ObjectPrototype.h"
208 d()->functionPrototype = new (exec) FunctionPrototype(exec, FunctionPrototype::createStructure(jsNull())); // The real prototype will be set once ObjectPrototype is created.
215 d()->objectPrototype = new (exec) ObjectPrototype(exec, ObjectPrototype::createStructure(jsNull()), d()->prototypeFunctionStructure.get());
216 d()->functionPrototype->structure()->setPrototypeWithoutTransition(d()->objectPrototype);
218 d()->emptyObjectStructure = d()->objectPrototype->inheritorID();
222 d()->argumentsStructure = Arguments::createStructure(d()->objectPrototype);
223 d()->callbackConstructorStructure = JSCallbackConstructor::createStructure(d()->objectPrototype);
224 d()->callbackObjectStructure = JSCallbackObject<JSObject>::createStructure(d()->objectPrototype);
    [all...]
  /external/webkit/JavaScriptCore/API/
JSCallbackConstructor.cpp 33 #include <runtime/ObjectPrototype.h>
JSClassRef.cpp 34 #include <runtime/ObjectPrototype.h>
  /external/webkit/WebCore/bridge/
runtime_object.h 57 static ObjectPrototype* createPrototype(ExecState*, JSGlobalObject* globalObject)
59 return globalObject->objectPrototype();
runtime_object.cpp 32 #include <runtime/ObjectPrototype.h>
  /external/v8/src/
accessors.h 57 V(ObjectPrototype)
accessors.cc 633 // Accessors::ObjectPrototype
656 const AccessorDescriptor Accessors::ObjectPrototype = {
heap.cc     [all...]
runtime.cc     [all...]
  /external/webkit/WebCore/bridge/objc/
objc_runtime.h 100 static ObjectPrototype* createPrototype(ExecState*, JSGlobalObject* globalObject)
102 return globalObject->objectPrototype();
objc_runtime.mm 37 #include <runtime/ObjectPrototype.h>
  /external/webkit/JavaScriptCore/
Android.mk 135 runtime/ObjectPrototype.cpp \

Completed in 281 milliseconds