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

  /external/webkit/Source/WebCore/bindings/v8/
V8HiddenPropertyName.h 39 V(objectPrototype) \
V8DOMWindowShell.cpp 591 return context->Global()->GetHiddenValue(V8HiddenPropertyName::objectPrototype());
598 v8::Handle<v8::String> hiddenObjectPrototypeString = V8HiddenPropertyName::objectPrototype();
607 v8::Handle<v8::Value> objectPrototype = object->Get(prototypeString);
609 if (objectPrototype.IsEmpty())
612 context->Global()->SetHiddenValue(hiddenObjectPrototypeString, objectPrototype);
V8DOMWrapper.cpp 127 v8::Local<v8::Function> V8DOMWrapper::getConstructor(WrapperTypeInfo* type, v8::Handle<v8::Value> objectPrototype)
146 if (!objectPrototype.IsEmpty())
147 value->SetPrototype(objectPrototype);
235 static bool globalObjectPrototypeIsDOMWindow(v8::Handle<v8::Object> objectPrototype)
250 return objectPrototype->InternalFieldCount() == V8DOMWindow::internalFieldCount;
V8DOMWrapper.h 101 static v8::Local<v8::Function> getConstructor(WrapperTypeInfo*, v8::Handle<v8::Value> objectPrototype);
  /external/webkit/Source/WebCore/bindings/js/
JSAudioConstructor.cpp 43 : DOMConstructorWithDocument(JSAudioConstructor::createStructure(globalObject->globalData(), globalObject->objectPrototype()), globalObject)
JSImageConstructor.cpp 38 : DOMConstructorWithDocument(JSImageConstructor::createStructure(globalObject->globalData(), globalObject->objectPrototype()), globalObject)
JSOptionConstructor.cpp 39 : DOMConstructorWithDocument(JSOptionConstructor::createStructure(globalObject->globalData(), globalObject->objectPrototype()), globalObject)
  /external/webkit/Source/WebCore/bridge/
runtime_object.h 59 static ObjectPrototype* createPrototype(ExecState*, JSGlobalObject* globalObject)
61 return globalObject->objectPrototype();
  /external/webkit/Source/WebCore/bridge/objc/
objc_runtime.h 101 static ObjectPrototype* createPrototype(ExecState*, JSGlobalObject* globalObject)
103 return globalObject->objectPrototype();
  /external/webkit/Source/WebCore/bindings/scripts/test/JS/
JSTestInterface.cpp 85 : DOMConstructorObject(JSTestInterfaceConstructor::createStructure(globalObject->globalData(), globalObject->objectPrototype()), globalObject)
147 return new (exec) JSTestInterfacePrototype(globalObject, JSTestInterfacePrototype::createStructure(globalObject->globalData(), globalObject->objectPrototype()));
JSTestMediaQueryListListener.cpp 84 : DOMConstructorObject(JSTestMediaQueryListListenerConstructor::createStructure(globalObject->globalData(), globalObject->objectPrototype()), globalObject)
143 return new (exec) JSTestMediaQueryListListenerPrototype(globalObject, JSTestMediaQueryListListenerPrototype::createStructure(globalObject->globalData(), globalObject->objectPrototype()));
JSTestSerializedScriptValueInterface.cpp 85 : DOMConstructorObject(JSTestSerializedScriptValueInterfaceConstructor::createStructure(globalObject->globalData(), globalObject->objectPrototype()), globalObject)
133 return new (exec) JSTestSerializedScriptValueInterfacePrototype(globalObject, JSTestSerializedScriptValueInterfacePrototype::createStructure(globalObject->globalData(), globalObject->objectPrototype()));
JSTestObj.cpp 163 : DOMConstructorObject(JSTestObjConstructor::createStructure(globalObject->globalData(), globalObject->objectPrototype()), globalObject)
268 return new (exec) JSTestObjPrototype(globalObject, JSTestObjPrototype::createStructure(globalObject->globalData(), globalObject->objectPrototype()));
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
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);
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(); }
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
JSNPObject.cpp 36 #include <JavaScriptCore/ObjectPrototype.h>
53 : JSObjectWithGlobalObject(globalObject, createStructure(globalObject->globalData(), globalObject->objectPrototype()))
  /external/webkit/Source/JavaScriptCore/API/
JSObjectRef.cpp 49 #include "ObjectPrototype.h"
108 jsPrototype = exec->lexicalGlobalObject()->objectPrototype();

Completed in 375 milliseconds