/external/webkit/Source/WebCore/bindings/v8/ |
D | WrapperTypeInfo.h | 53 struct WrapperTypeInfo { struct 55 static WrapperTypeInfo* unwrap(v8::Handle<v8::Value> typeInfoWrapper) in unwrap() argument 57 return reinterpret_cast<WrapperTypeInfo*>(v8::External::Unwrap(typeInfoWrapper)); in unwrap() 61 bool equals(const WrapperTypeInfo* that) const in equals() argument 66 bool isSubclass(const WrapperTypeInfo* that) const in isSubclass() argument 68 for (const WrapperTypeInfo* current = this; current; current = current->parentClass) { in isSubclass() 94 const WrapperTypeInfo* parentClass; argument
|
D | V8DOMWrapper.h | 69 static void setDOMWrapper(v8::Handle<v8::Object> object, WrapperTypeInfo* type, void* cptr) in setDOMWrapper() 81 static WrapperTypeInfo* domWrapperType(v8::Handle<v8::Object>); 100 …static v8::Local<v8::Function> getConstructorForContext(WrapperTypeInfo*, v8::Handle<v8::Context>); 101 …static v8::Local<v8::Function> getConstructor(WrapperTypeInfo*, v8::Handle<v8::Value> objectProtot… 102 static v8::Local<v8::Function> getConstructor(WrapperTypeInfo*, DOMWindow*); 104 static v8::Local<v8::Function> getConstructor(WrapperTypeInfo*, WorkerContext*); 115 static bool isWrapperOfType(v8::Handle<v8::Value>, WrapperTypeInfo*); 126 … static v8::Local<v8::Object> instantiateV8Object(V8Proxy* proxy, WrapperTypeInfo*, void* impl);
|
D | V8DOMWrapper.cpp | 128 v8::Local<v8::Function> V8DOMWrapper::getConstructor(WrapperTypeInfo* type, v8::Handle<v8::Value> o… in getConstructor() 152 v8::Local<v8::Function> V8DOMWrapper::getConstructorForContext(WrapperTypeInfo* type, v8::Handle<v8… in getConstructorForContext() 160 v8::Local<v8::Function> V8DOMWrapper::getConstructor(WrapperTypeInfo* type, DOMWindow* window) in getConstructor() 174 v8::Local<v8::Function> V8DOMWrapper::getConstructor(WrapperTypeInfo* type, WorkerContext*) in getConstructor() 212 WrapperTypeInfo* V8DOMWrapper::domWrapperType(v8::Handle<v8::Object> object) in domWrapperType() 215 … return static_cast<WrapperTypeInfo*>(object->GetPointerFromInternalField(v8DOMWrapperTypeIndex)); in domWrapperType() 249 v8::Local<v8::Object> V8DOMWrapper::instantiateV8Object(V8Proxy* proxy, WrapperTypeInfo* type, void… in instantiateV8Object() 322 bool V8DOMWrapper::isWrapperOfType(v8::Handle<v8::Value> value, WrapperTypeInfo* type) in isWrapperOfType() 333 …WrapperTypeInfo* typeInfo = static_cast<WrapperTypeInfo*>(object->GetPointerFromInternalField(v8DO… in isWrapperOfType()
|
D | V8DOMWindowShell.h | 87 v8::Local<v8::Object> createWrapperFromCache(WrapperTypeInfo* type) in createWrapperFromCache() 110 v8::Local<v8::Object> createWrapperFromCacheSlowCase(WrapperTypeInfo*); 116 typedef WTF::HashMap<WrapperTypeInfo*, v8::Persistent<v8::Object> > WrapperBoilerplateMap;
|
D | DOMData.h | 64 static void derefObject(WrapperTypeInfo* type, void* domObject); 71 WrapperTypeInfo* type = V8DOMWrapper::domWrapperType(v8Object); in visitDOMWrapper() 83 WrapperTypeInfo* type = V8DOMWrapper::domWrapperType(v8Object); in handleWeakObject()
|
D | V8Proxy.h | 80 WrapperTypeInfo* data; 255 static v8::Handle<v8::Value> constructDOMObject(const v8::Arguments&, WrapperTypeInfo*); 258 …le<v8::Value> constructDOMObjectWithScriptExecutionContext(const v8::Arguments&, WrapperTypeInfo*); 345 …v8::Handle<v8::Value> V8Proxy::constructDOMObject(const v8::Arguments& args, WrapperTypeInfo* type) in constructDOMObject() 360 …oxy::constructDOMObjectWithScriptExecutionContext(const v8::Arguments& args, WrapperTypeInfo* type) in constructDOMObjectWithScriptExecutionContext()
|
D | V8GCController.cpp | 128 WrapperTypeInfo* type = V8DOMWrapper::domWrapperType(wrapper); in visitDOMWrapper() 149 WrapperTypeInfo* typeInfo = V8DOMWrapper::domWrapperType(wrapper); in visitDOMWrapper() 337 WrapperTypeInfo* typeInfo = V8DOMWrapper::domWrapperType(wrapper); in visitDOMWrapper() 458 WrapperTypeInfo* typeInfo = V8DOMWrapper::domWrapperType(wrapper); in visitDOMWrapper()
|
D | DOMData.cpp | 59 void DOMData::derefObject(WrapperTypeInfo* type, void* domObject) in derefObject()
|
D | NPV8Object.h | 53 WrapperTypeInfo* npObjectTypeInfo();
|
D | NPV8Object.cpp | 59 WrapperTypeInfo* npObjectTypeInfo() in npObjectTypeInfo() 61 static WrapperTypeInfo typeInfo = { 0, 0, 0, 0 }; in npObjectTypeInfo() 120 …WrapperTypeInfo* typeInfo = static_cast<WrapperTypeInfo*>(object->GetPointerFromInternalField(v8DO… in npCreateV8ScriptObject()
|
D | V8DOMWindowShell.cpp | 130 WrapperTypeInfo* type = WrapperTypeInfo::unwrap(data); in getTargetFrame() 617 v8::Local<v8::Object> V8DOMWindowShell::createWrapperFromCacheSlowCase(WrapperTypeInfo* type) in createWrapperFromCacheSlowCase()
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
D | V8HTMLOptionElementConstructor.h | 43 static WrapperTypeInfo info;
|
D | V8HTMLImageElementConstructor.h | 43 static WrapperTypeInfo info;
|
D | V8HTMLAudioElementConstructor.h | 43 static WrapperTypeInfo info;
|
D | V8ArrayBufferViewCustom.h | 44 …onstructWebGLArrayWithArrayBufferArgument(const v8::Arguments& args, WrapperTypeInfo* type, v8::Ex… in constructWebGLArrayWithArrayBufferArgument() 80 v8::Handle<v8::Value> constructWebGLArray(const v8::Arguments& args, WrapperTypeInfo* type, v8::Ext… in constructWebGLArray()
|
D | V8HTMLAudioElementConstructor.cpp | 47 …WrapperTypeInfo V8HTMLAudioElementConstructor::info = { V8HTMLAudioElementConstructor::GetTemplate…
|
D | V8HTMLImageElementConstructor.cpp | 47 …WrapperTypeInfo V8HTMLImageElementConstructor::info = { V8HTMLImageElementConstructor::GetTemplate…
|
D | V8HTMLOptionElementConstructor.cpp | 47 …WrapperTypeInfo V8HTMLOptionElementConstructor::info = { V8HTMLOptionElementConstructor::GetTempla…
|
/external/webkit/Source/WebCore/bindings/scripts/test/V8/ |
D | V8TestSerializedScriptValueInterface.h | 47 static WrapperTypeInfo info;
|
D | V8TestMediaQueryListListener.h | 45 static WrapperTypeInfo info;
|
D | V8TestInterface.h | 47 static WrapperTypeInfo info;
|
D | V8TestObj.h | 45 static WrapperTypeInfo info;
|
D | V8TestSerializedScriptValueInterface.cpp | 37 WrapperTypeInfo V8TestSerializedScriptValueInterface::info = { V8TestSerializedScriptValueInterface…
|
D | V8TestInterface.cpp | 36 WrapperTypeInfo V8TestInterface::info = { V8TestInterface::GetTemplate, V8TestInterface::derefObjec…
|
D | V8TestMediaQueryListListener.cpp | 36 WrapperTypeInfo V8TestMediaQueryListListener::info = { V8TestMediaQueryListListener::GetTemplate, V…
|