Lines Matching refs:v8

10 #include "bindings/core/v8/Dictionary.h"
11 #include "bindings/core/v8/ExceptionState.h"
12 #include "bindings/core/v8/V8DOMConfiguration.h"
13 #include "bindings/core/v8/V8HiddenValue.h"
14 #include "bindings/core/v8/V8ObjectConstructor.h"
15 #include "bindings/core/v8/V8TestInterfaceEmpty.h"
30 // bindings/core/v8/ScriptWrappable.h.
37 static void constructor1(const v8::FunctionCallbackInfo<v8::Value>& info)
44 v8::Handle<v8::Object> wrapper = info.Holder();
49 static void constructor2(const v8::FunctionCallbackInfo<v8::Value>& info)
60 v8::Handle<v8::Object> wrapper = info.Holder();
65 static void constructor3(const v8::FunctionCallbackInfo<v8::Value>& info)
73 v8::Handle<v8::Object> wrapper = info.Holder();
78 static void constructor4(const v8::FunctionCallbackInfo<v8::Value>& info)
104 v8::Handle<v8::Object> wrapper = info.Holder();
112 v8::Handle<v8::Object> wrapper = info.Holder();
117 static void constructor(const v8::FunctionCallbackInfo<v8::Value>& info)
176 void V8TestInterfaceConstructor2::constructorCallback(const v8::FunctionCallbackInfo<v8::Value>& info)
192 static void installV8TestInterfaceConstructor2Template(v8::Handle<v8::FunctionTemplate> functionTemplate, v8::Isolate* isolate)
196 v8::Local<v8::Signature> defaultSignature;
197 defaultSignature = V8DOMConfiguration::installDOMClassTemplate(functionTemplate, "TestInterfaceConstructor2", v8::Local<v8::FunctionTemplate>(), V8TestInterfaceConstructor2::internalFieldCount,
204 v8::Local<v8::ObjectTemplate> instanceTemplate ALLOW_UNUSED = functionTemplate->InstanceTemplate();
205 v8::Local<v8::ObjectTemplate> prototypeTemplate ALLOW_UNUSED = functionTemplate->PrototypeTemplate();
211 v8::Handle<v8::FunctionTemplate> V8TestInterfaceConstructor2::domTemplate(v8::Isolate* isolate)
216 bool V8TestInterfaceConstructor2::hasInstance(v8::Handle<v8::Value> v8Value, v8::Isolate* isolate)
221 v8::Handle<v8::Object> V8TestInterfaceConstructor2::findInstanceInPrototypeChain(v8::Handle<v8::Value> v8Value, v8::Isolate* isolate)
226 TestInterfaceConstructor2* V8TestInterfaceConstructor2::toImplWithTypeCheck(v8::Isolate* isolate, v8::Handle<v8::Value> value)
228 return hasInstance(value, isolate) ? blink::toScriptWrappableBase(v8::Handle<v8::Object>::Cast(value))->toImpl<TestInterfaceConstructor2>() : 0;
249 v8::Handle<v8::Value> toV8NoInline(TestInterfaceConstructor2* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)