/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/ |
V8ErrorHandler.h | 50 static void storeExceptionOnErrorEventWrapper(ErrorEvent*, v8::Handle<v8::Value>, v8::Handle<v8::Object> creationContext, v8::Isolate*);
|
V8DOMWrapper.cpp | 71 v8::Local<v8::Object> V8DOMWrapper::createWrapper(v8::Handle<v8::Object> creationContext, const WrapperTypeInfo* type, ScriptWrappableBase* internalPointer, v8::Isolate* isolate) 73 V8WrapperInstantiationScope scope(creationContext, isolate);
|
V8ErrorHandler.cpp | 82 void V8ErrorHandler::storeExceptionOnErrorEventWrapper(ErrorEvent* event, v8::Handle<v8::Value> data, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) 84 v8::Local<v8::Value> wrappedEvent = toV8(event, creationContext, isolate);
|
V8ThrowException.cpp | 47 v8::Handle<v8::Value> V8ThrowException::createDOMException(int ec, const String& sanitizedMessage, const String& unsanitizedMessage, const v8::Handle<v8::Object>& creationContext, v8::Isolate* isolate) 66 v8::Handle<v8::Value> exception = toV8(domException, creationContext, isolate); 80 v8::Handle<v8::Value> V8ThrowException::throwDOMException(int ec, const String& sanitizedMessage, const String& unsanitizedMessage, const v8::Handle<v8::Object>& creationContext, v8::Isolate* isolate) 83 v8::Handle<v8::Value> exception = createDOMException(ec, sanitizedMessage, unsanitizedMessage, creationContext, isolate);
|
V8DOMWrapper.h | 48 static v8::Local<v8::Object> createWrapper(v8::Handle<v8::Object> creationContext, const WrapperTypeInfo*, ScriptWrappableBase* internalPointer, v8::Isolate*); 191 V8WrapperInstantiationScope(v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) 195 // creationContext should not be empty. Because if we have an 196 // empty creationContext, we will end up creating 198 RELEASE_ASSERT(!creationContext.IsEmpty()); 199 v8::Handle<v8::Context> contextForWrapper = creationContext->CreationContext();
|
/external/chromium_org/third_party/WebKit/public/web/ |
WebBlob.h | 77 BLINK_EXPORT v8::Handle<v8::Value> toV8Value(v8::Handle<v8::Object> creationContext, v8::Isolate*);
|
WebDOMError.h | 69 BLINK_EXPORT v8::Handle<v8::Value> toV8Value(v8::Handle<v8::Object> creationContext, v8::Isolate*);
|
/external/chromium_org/third_party/WebKit/Source/bindings/templates/ |
interface.h | 173 friend v8::Handle<v8::Object> wrap({{cpp_class}}*, v8::Handle<v8::Object> creationContext, v8::Isolate*); 174 static v8::Handle<v8::Object> createWrapper({{pass_cpp_type}}, v8::Handle<v8::Object> creationContext, v8::Isolate*); 180 v8::Handle<v8::Value> toV8({{cpp_class}}*, v8::Handle<v8::Object> creationContext, v8::Isolate*); 201 inline v8::Handle<v8::Object> wrap({{cpp_class}}* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) 203 return impl->wrap(creationContext, isolate); 206 v8::Handle<v8::Object> wrap({{cpp_class}}* impl, v8::Handle<v8::Object> creationContext, v8::Isolate*); 209 inline v8::Handle<v8::Value> toV8({{cpp_class}}* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) 218 return impl->wrap(creationContext, isolate); 220 return wrap(impl, creationContext, isolate); 265 inline v8::Handle<v8::Value> toV8({{pass_cpp_type}} impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate [all...] |
dictionary_v8.cpp | 51 v8::Handle<v8::Value> toV8({{cpp_class}}* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
|
/external/chromium_org/third_party/WebKit/Source/web/ |
WebBlob.cpp | 84 v8::Handle<v8::Value> WebBlob::toV8Value(v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) 88 return toV8(m_private.get(), creationContext, isolate);
|
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/core/ |
V8TestInterface3.h | 58 inline v8::Handle<v8::Object> wrap(TestInterface3* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) 60 return impl->wrap(creationContext, isolate); 63 inline v8::Handle<v8::Value> toV8(TestInterface3* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) 71 return impl->wrap(creationContext, isolate); 114 inline v8::Handle<v8::Value> toV8(PassRefPtr<TestInterface3> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) 116 return toV8(impl.get(), creationContext, isolate);
|
V8TestInterfaceEventConstructor.h | 57 inline v8::Handle<v8::Object> wrap(TestInterfaceEventConstructor* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) 59 return impl->wrap(creationContext, isolate); 62 inline v8::Handle<v8::Value> toV8(TestInterfaceEventConstructor* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) 70 return impl->wrap(creationContext, isolate); 113 inline v8::Handle<v8::Value> toV8(PassRefPtrWillBeRawPtr<TestInterfaceEventConstructor> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) 115 return toV8(impl.get(), creationContext, isolate);
|
V8TestInterfaceEventTarget.h | 63 inline v8::Handle<v8::Object> wrap(TestInterfaceEventTarget* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) 65 return impl->wrap(creationContext, isolate); 68 inline v8::Handle<v8::Value> toV8(TestInterfaceEventTarget* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) 76 return impl->wrap(creationContext, isolate); 119 inline v8::Handle<v8::Value> toV8(PassRefPtrWillBeRawPtr<TestInterfaceEventTarget> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) 121 return toV8(impl.get(), creationContext, isolate);
|
V8TestInterfaceNotScriptWrappable.cpp | 127 v8::Handle<v8::Object> wrap(TestInterfaceNotScriptWrappable* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) 131 return V8TestInterfaceNotScriptWrappable::createWrapper(impl, creationContext, isolate); 134 v8::Handle<v8::Object> V8TestInterfaceNotScriptWrappable::createWrapper(PassRefPtr<TestInterfaceNotScriptWrappable> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) 139 v8::Handle<v8::Object> wrapper = V8DOMWrapper::createWrapper(creationContext, &wrapperTypeInfo, impl->toScriptWrappableBase(), isolate); 166 v8::Handle<v8::Value> toV8NoInline(TestInterfaceNotScriptWrappable* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) 168 return toV8(impl, creationContext, isolate);
|
V8TestInterfaceWillBeGarbageCollected.h | 64 inline v8::Handle<v8::Object> wrap(TestInterfaceWillBeGarbageCollected* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) 66 return impl->wrap(creationContext, isolate); 69 inline v8::Handle<v8::Value> toV8(TestInterfaceWillBeGarbageCollected* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) 77 return impl->wrap(creationContext, isolate); 120 inline v8::Handle<v8::Value> toV8(PassRefPtrWillBeRawPtr<TestInterfaceWillBeGarbageCollected> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) 122 return toV8(impl.get(), creationContext, isolate);
|
V8TestInterface.h | 63 v8::Handle<v8::Value> toV8(TestInterfaceImplementation*, v8::Handle<v8::Object> creationContext, v8::Isolate*); 83 inline v8::Handle<v8::Value> toV8(PassRefPtr<TestInterfaceImplementation> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) 85 return toV8(impl.get(), creationContext, isolate);
|
V8TestObject.h | 90 inline v8::Handle<v8::Object> wrap(TestObject* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) 92 return impl->wrap(creationContext, isolate); 95 inline v8::Handle<v8::Value> toV8(TestObject* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) 103 return impl->wrap(creationContext, isolate); 146 inline v8::Handle<v8::Value> toV8(PassRefPtr<TestObject> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) 148 return toV8(impl.get(), creationContext, isolate);
|
V8TestInterfaceEmpty.cpp | 91 v8::Handle<v8::Value> toV8NoInline(TestInterfaceEmpty* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) 93 return toV8(impl, creationContext, isolate);
|
V8SVGTestInterface.cpp | 128 v8::Handle<v8::Value> toV8NoInline(SVGTestInterface* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) 130 return toV8(impl, creationContext, isolate);
|
V8TestInterfaceConstructor3.cpp | 126 v8::Handle<v8::Value> toV8NoInline(TestInterfaceConstructor3* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) 128 return toV8(impl, creationContext, isolate);
|
V8TestInterfaceCustomConstructor.cpp | 110 v8::Handle<v8::Value> toV8NoInline(TestInterfaceCustomConstructor* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) 112 return toV8(impl, creationContext, isolate);
|
V8TestInterfaceDocument.cpp | 107 v8::Handle<v8::Value> toV8NoInline(TestInterfaceDocument* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) 109 return toV8(impl, creationContext, isolate);
|
V8TestSpecialOperationsNotEnumerable.cpp | 131 v8::Handle<v8::Value> toV8NoInline(TestSpecialOperationsNotEnumerable* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) 133 return toV8(impl, creationContext, isolate);
|
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/ |
V8InjectedScriptManager.cpp | 64 static v8::Local<v8::Object> createInjectedScriptHostV8Wrapper(PassRefPtrWillBeRawPtr<InjectedScriptHost> host, InjectedScriptManager* injectedScriptManager, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) 68 v8::Handle<v8::Object> wrapper = V8DOMWrapper::createWrapper(creationContext, &V8InjectedScriptHost::wrapperTypeInfo, host->toScriptWrappableBase(), isolate);
|
V8WebGLRenderingContextCustom.cpp | 86 static v8::Handle<v8::Value> toV8Object(const WebGLGetInfo& args, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) 109 return toV8(args.getWebGLBuffer(), creationContext, isolate); 111 return toV8(args.getWebGLFloatArray(), creationContext, isolate); 113 return toV8(args.getWebGLFramebuffer(), creationContext, isolate); 115 return toV8(args.getWebGLIntArray(), creationContext, isolate); 119 return toV8(args.getWebGLProgram(), creationContext, isolate); 121 return toV8(args.getWebGLRenderbuffer(), creationContext, isolate); 123 return toV8(args.getWebGLTexture(), creationContext, isolate); 125 return toV8(args.getWebGLUnsignedByteArray(), creationContext, isolate); 127 return toV8(args.getWebGLUnsignedIntArray(), creationContext, isolate) [all...] |