Searched defs:objectPrototype (Results 1 - 4 of 4) sorted by relevance

/external/webkit/Source/JavaScriptCore/runtime/
H A DObjectConstructor.cpp78 ObjectConstructor::ObjectConstructor(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, ObjectPrototype* objectPrototype) argument
82 putDirectWithoutTransition(exec->globalData(), exec->propertyNames().prototype, objectPrototype, DontEnum | DontDelete | ReadOnly);
H A DJSGlobalObject.cpp305 JSObject* objectPrototype = m_objectPrototype.get(); local
306 if (oldLastInPrototypeChain != objectPrototype)
307 oldLastInPrototypeChain->setPrototype(globalData, objectPrototype);
H A DJSGlobalObject.h186 ObjectPrototype* objectPrototype() const { return m_objectPrototype.get(); } function in class:JSC::JSGlobalObject
/external/webkit/Source/WebCore/bindings/v8/
H A DV8DOMWrapper.cpp128 v8::Local<v8::Function> V8DOMWrapper::getConstructor(WrapperTypeInfo* type, v8::Handle<v8::Value> objectPrototype) argument
147 if (!objectPrototype.IsEmpty())
148 value->SetPrototype(objectPrototype);
231 static bool globalObjectPrototypeIsDOMWindow(v8::Handle<v8::Object> objectPrototype) argument
246 return objectPrototype->InternalFieldCount() == V8DOMWindow::internalFieldCount;

Completed in 1008 milliseconds