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

  /external/webkit/JavaScriptCore/runtime/
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...]
JSGlobalObject.h 84 , objectPrototype(0)
123 ObjectPrototype* objectPrototype;
207 ObjectPrototype* objectPrototype() const { return d()->objectPrototype; }
  /external/webkit/WebCore/bindings/v8/
V8DOMWindowShell.cpp 533 return context->Global()->GetHiddenValue(V8HiddenPropertyName::objectPrototype());
540 v8::Handle<v8::String> hiddenObjectPrototypeString = V8HiddenPropertyName::objectPrototype();
546 v8::Handle<v8::Value> objectPrototype = object->Get(prototypeString);
548 context->Global()->SetHiddenValue(hiddenObjectPrototypeString, objectPrototype);

Completed in 638 milliseconds