HomeSort by relevance Sort by last modified time
    Searched refs:creationContext (Results 51 - 75 of 90) sorted by null

1 23 4

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
CustomElementWrapper.h 50 static v8::Handle<v8::Object> wrap(PassRefPtr<ElementType>, v8::Handle<v8::Object> creationContext, v8::Isolate*, v8::Handle<v8::Object> (*createSpecificWrapper)(ElementType* element, v8::Handle<v8::Object> creationContext, v8::Isolate*));
V8DOMWrapper.cpp 47 explicit V8WrapperInstantiationScope(v8::Handle<v8::Object> creationContext)
52 // If a creationContext is empty, we will end up creating a new object
54 if (creationContext.IsEmpty())
56 v8::Handle<v8::Context> contextForWrapper = creationContext->CreationContext();
109 v8::Local<v8::Object> V8DOMWrapper::createWrapper(v8::Handle<v8::Object> creationContext, WrapperTypeInfo* type, void* impl, v8::Isolate* isolate)
111 V8WrapperInstantiationScope scope(creationContext);
ScriptPromiseResolver.cpp 45 ScriptPromiseResolver::ScriptPromiseResolver(v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
50 V8PromiseCustom::createPromise(creationContext, &promise, &resolver, isolate);
ScriptPromiseResolver.h 107 ScriptPromiseResolver(v8::Handle<v8::Object> creationContext, v8::Isolate*);
V8DOMWrapper.h 50 static v8::Local<v8::Object> createWrapper(v8::Handle<v8::Object> creationContext, WrapperTypeInfo*, void*, v8::Isolate*);
V8WindowShell.cpp 426 static v8::Handle<v8::Value> getNamedProperty(HTMLDocument* htmlDocument, const AtomicString& key, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
439 return toV8(frame->domWindow(), creationContext, isolate);
440 return toV8(node, creationContext, isolate);
442 return toV8(items.release(), creationContext, isolate);
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
V8TestCustomAccessors.h 63 friend v8::Handle<v8::Object> wrap(TestCustomAccessors*, v8::Handle<v8::Object> creationContext, v8::Isolate*);
64 static v8::Handle<v8::Object> createWrapper(PassRefPtr<TestCustomAccessors>, v8::Handle<v8::Object> creationContext, v8::Isolate*);
74 inline v8::Handle<v8::Object> wrap(TestCustomAccessors* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
78 return V8TestCustomAccessors::createWrapper(impl, creationContext, isolate);
81 inline v8::Handle<v8::Value> toV8(TestCustomAccessors* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
88 return wrap(impl, creationContext, isolate);
91 inline v8::Handle<v8::Value> toV8ForMainWorld(TestCustomAccessors* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
99 return wrap(impl, creationContext, isolate);
113 inline v8::Handle<v8::Value> toV8ForMainWorld(PassRefPtr< TestCustomAccessors > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
115 return toV8ForMainWorld(impl.get(), creationContext, isolate)
    [all...]
V8TestInterface.h 65 friend v8::Handle<v8::Object> wrap(TestInterface*, v8::Handle<v8::Object> creationContext, v8::Isolate*);
66 static v8::Handle<v8::Object> createWrapper(PassRefPtr<TestInterface>, v8::Handle<v8::Object> creationContext, v8::Isolate*);
76 inline v8::Handle<v8::Object> wrap(TestInterface* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
80 return V8TestInterface::createWrapper(impl, creationContext, isolate);
83 inline v8::Handle<v8::Value> toV8(TestInterface* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
90 return wrap(impl, creationContext, isolate);
93 inline v8::Handle<v8::Value> toV8ForMainWorld(TestInterface* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
101 return wrap(impl, creationContext, isolate);
115 inline v8::Handle<v8::Value> toV8ForMainWorld(PassRefPtr< TestInterface > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
117 return toV8ForMainWorld(impl.get(), creationContext, isolate)
    [all...]
V8TestObject.h 64 friend v8::Handle<v8::Object> wrap(TestObj*, v8::Handle<v8::Object> creationContext, v8::Isolate*);
65 static v8::Handle<v8::Object> createWrapper(PassRefPtr<TestObj>, v8::Handle<v8::Object> creationContext, v8::Isolate*);
75 inline v8::Handle<v8::Object> wrap(TestObj* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
79 return V8TestObject::createWrapper(impl, creationContext, isolate);
82 inline v8::Handle<v8::Value> toV8(TestObj* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
89 return wrap(impl, creationContext, isolate);
92 inline v8::Handle<v8::Value> toV8ForMainWorld(TestObj* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
100 return wrap(impl, creationContext, isolate);
114 inline v8::Handle<v8::Value> toV8ForMainWorld(PassRefPtr< TestObj > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
116 return toV8ForMainWorld(impl.get(), creationContext, isolate)
    [all...]
V8TestEvent.cpp 109 v8::Handle<v8::Object> V8TestEvent::createWrapper(PassRefPtr<TestEvent> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
121 v8::Handle<v8::Object> wrapper = V8DOMWrapper::createWrapper(creationContext, &info, toInternalPointer(impl.get()), isolate);
V8Float64Array.cpp 120 v8::Handle<v8::Object> wrap(Float64Array* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
123 v8::Handle<v8::Object> wrapper = V8Float64Array::createWrapper(impl, creationContext, isolate);
205 v8::Handle<v8::Object> V8Float64Array::createWrapper(PassRefPtr<Float64Array> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
217 v8::Handle<v8::Object> wrapper = V8DOMWrapper::createWrapper(creationContext, &info, toInternalPointer(impl.get()), isolate);
V8TestCustomAccessors.cpp 195 v8::Handle<v8::Object> V8TestCustomAccessors::createWrapper(PassRefPtr<TestCustomAccessors> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
207 v8::Handle<v8::Object> wrapper = V8DOMWrapper::createWrapper(creationContext, &info, toInternalPointer(impl.get()), isolate);
V8TestEventConstructor.cpp 189 v8::Handle<v8::Object> V8TestEventConstructor::createWrapper(PassRefPtr<TestEventConstructor> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
201 v8::Handle<v8::Object> wrapper = V8DOMWrapper::createWrapper(creationContext, &info, toInternalPointer(impl.get()), isolate);
V8TestException.cpp 127 v8::Handle<v8::Object> V8TestException::createWrapper(PassRefPtr<TestException> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
139 v8::Handle<v8::Object> wrapper = V8DOMWrapper::createWrapper(creationContext, &info, toInternalPointer(impl.get()), isolate);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8DocumentCustom.cpp 90 v8::Handle<v8::Object> wrap(Document* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
94 return wrap(toHTMLDocument(impl), creationContext, isolate);
96 return wrap(toSVGDocument(impl), creationContext, isolate);
97 v8::Handle<v8::Object> wrapper = V8Document::createWrapper(impl, creationContext, isolate);
V8TypedArrayCustom.h 67 static v8::Handle<v8::Object> wrap(TypedArray* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
71 return V8TypedArray<TypedArray>::createWrapper(impl, creationContext, isolate);
74 static v8::Handle<v8::Value> toV8(TypedArray* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
81 return wrap(impl, creationContext, isolate);
84 static v8::Handle<v8::Value> toV8ForMainWorld(TypedArray* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
92 return wrap(impl, creationContext, isolate);
127 static v8::Handle<v8::Object> createWrapper(PassRefPtr<TypedArray>, v8::Handle<v8::Object> creationContext, v8::Isolate*);
138 v8::Handle<v8::Object> V8TypedArray<TypedArray>::createWrapper(PassRefPtr<TypedArray> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
144 v8::Local<v8::Value> v8Buffer = v8::Local<v8::Value>::New(WebCore::toV8(buffer.get(), creationContext, isolate));
V8CanvasRenderingContext2DCustom.cpp 49 static v8::Handle<v8::Value> toV8Object(CanvasStyle* style, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
52 return toV8(style->canvasGradient(), creationContext, isolate);
55 return toV8(style->canvasPattern(), creationContext, isolate);
V8BlobCustom.cpp 46 v8::Handle<v8::Object> wrap(Blob* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
50 return wrap(toFile(impl), creationContext, isolate);
51 return V8Blob::createWrapper(impl, creationContext, isolate);
V8WorkerGlobalScopeCustom.cpp 127 v8::Handle<v8::Value> toV8(WorkerGlobalScope* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
129 // Notice that we explicitly ignore creationContext because the WorkerGlobalScope is its own creationContext.
143 v8::Handle<v8::Value> toV8ForMainWorld(WorkerGlobalScope* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
145 return toV8(impl, creationContext, isolate);
V8HTMLDocumentCustom.cpp 113 v8::Handle<v8::Object> wrap(HTMLDocument* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
116 v8::Handle<v8::Object> wrapper = V8HTMLDocument::createWrapper(impl, creationContext, isolate);
V8WebGLRenderingContextCustom.cpp 124 static v8::Handle<v8::Value> toV8Object(const WebGLGetInfo& info, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
147 return toV8(info.getWebGLBuffer(), creationContext, isolate);
149 return toV8(info.getWebGLFloatArray(), creationContext, isolate);
151 return toV8(info.getWebGLFramebuffer(), creationContext, isolate);
153 return toV8(info.getWebGLIntArray(), creationContext, isolate);
157 return toV8(info.getWebGLProgram(), creationContext, isolate);
159 return toV8(info.getWebGLRenderbuffer(), creationContext, isolate);
161 return toV8(info.getWebGLTexture(), creationContext, isolate);
163 return toV8(info.getWebGLUnsignedByteArray(), creationContext, isolate);
165 return toV8(info.getWebGLUnsignedIntArray(), creationContext, isolate)
    [all...]
V8ArrayBufferCustom.cpp 68 v8::Handle<v8::Object> V8ArrayBuffer::createWrapper(PassRefPtr<ArrayBuffer> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
V8PromiseCustom.h 75 static void createPromise(v8::Handle<v8::Object> creationContext, v8::Local<v8::Object>* promise, v8::Local<v8::Object>* resolver, v8::Isolate*);
  /external/chromium_org/third_party/WebKit/Source/core/scripts/
make_names.pl 979 static v8::Handle<v8::Object> create${JSInterfaceName}Wrapper($parameters{namespace}Element* element, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
983 return createV8$parameters{namespace}DirectWrapper(element, creationContext, isolate);
984 return wrap(static_cast<${JSInterfaceName}*>(element), creationContext, isolate);
992 static v8::Handle<v8::Object> create${JSInterfaceName}Wrapper($parameters{namespace}Element* element, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
995 return createV8$parameters{namespace}FallbackWrapper(to$parameters{fallbackInterfaceName}(element), creationContext, isolate);
996 return wrap(static_cast<${JSInterfaceName}*>(element), creationContext, isolate);
1003 static v8::Handle<v8::Object> create${JSInterfaceName}Wrapper($parameters{namespace}Element* element, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
1006 return createV8$parameters{namespace}FallbackWrapper(to$parameters{fallbackInterfaceName}(element), creationContext, isolate);
1007 return wrap(static_cast<${JSInterfaceName}*>(element), creationContext, isolate);
1013 static v8::Handle<v8::Object> create${JSInterfaceName}Wrapper($parameters{namespace}Element* element, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/templates/
interface.cpp 136 v8::Handle<v8::Object> {{v8_class_name}}::createWrapper(PassRefPtr<{{cpp_class_name}}> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
147 v8::Handle<v8::Object> wrapper = V8DOMWrapper::createWrapper(creationContext, &info, toInternalPointer(impl.get()), isolate);

Completed in 672 milliseconds

1 23 4