HomeSort by relevance Sort by last modified time
    Searched defs:currentWorldType (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8DOMWrapper.cpp 49 WrapperWorldType currentWorldType = worldType(isolate);
51 v8::Handle<v8::FunctionTemplate> shadowTemplate = data->privateTemplateIfExists(currentWorldType, &shadowTemplateUniqueKey);
57 shadowTemplate->Inherit(V8HTMLDocument::domTemplate(isolate, currentWorldType));
59 data->setPrivateTemplate(currentWorldType, &shadowTemplateUniqueKey, shadowTemplate);
V8NPObject.cpp 73 WrapperWorldType currentWorldType = worldType(info.GetIsolate());
75 if (V8HTMLAppletElement::hasInstance(info.Holder(), info.GetIsolate(), currentWorldType) || V8HTMLEmbedElement::hasInstance(info.Holder(), info.GetIsolate(), currentWorldType)
76 || V8HTMLObjectElement::hasInstance(info.Holder(), info.GetIsolate(), currentWorldType)) {
79 if (V8HTMLAppletElement::hasInstance(info.Holder(), info.GetIsolate(), currentWorldType))
81 else if (V8HTMLEmbedElement::hasInstance(info.Holder(), info.GetIsolate(), currentWorldType))
SerializedScriptValue.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8XMLHttpRequestCustom.cpp 201 static bool isDocumentType(v8::Handle<v8::Value> value, v8::Isolate* isolate, WrapperWorldType currentWorldType)
204 return V8Document::hasInstance(value, isolate, currentWorldType) || V8HTMLDocument::hasInstance(value, isolate, currentWorldType);
218 WrapperWorldType currentWorldType = worldType(info.GetIsolate());
221 } else if (isDocumentType(arg, info.GetIsolate(), currentWorldType)) {
226 } else if (V8Blob::hasInstance(arg, info.GetIsolate(), currentWorldType)) {
231 } else if (V8FormData::hasInstance(arg, info.GetIsolate(), currentWorldType)) {
236 } else if (V8ArrayBuffer::hasInstance(arg, info.GetIsolate(), currentWorldType)) {
241 } else if (V8ArrayBufferView::hasInstance(arg, info.GetIsolate(), currentWorldType)) {
V8InjectedScriptHostCustom.cpp 156 WrapperWorldType currentWorldType = worldType(isolate);
157 if (V8Node::hasInstance(value, isolate, currentWorldType)) {
161 if (V8NodeList::hasInstance(value, isolate, currentWorldType)) {
165 if (V8HTMLCollection::hasInstance(value, isolate, currentWorldType)) {
169 if (V8Int8Array::hasInstance(value, isolate, currentWorldType) || V8Int16Array::hasInstance(value, isolate, currentWorldType) || V8Int32Array::hasInstance(value, isolate, currentWorldType)) {
173 if (V8Uint8Array::hasInstance(value, isolate, currentWorldType) || V8Uint16Array::hasInstance(value, isolate, currentWorldType) || V8Uint32Array::hasInstance(value, isolate, currentWorldType)) {
    [all...]
V8PromiseCustom.cpp 62 WrapperWorldType currentWorldType = worldType(isolate);
63 v8::Handle<v8::FunctionTemplate> functionDescriptor = data->privateTemplateIfExists(currentWorldType, privateTemplateUniqueKey);
70 data->setPrivateTemplate(currentWorldType, privateTemplateUniqueKey, functionDescriptor);
647 WrapperWorldType currentWorldType = worldType(isolate);
648 return V8Promise::domTemplate(isolate, currentWorldType)->HasInstance(maybePromise);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/templates/
methods.cpp 256 WrapperWorldType currentWorldType = worldType(info.GetIsolate());
259 v8::Handle<v8::FunctionTemplate> privateTemplate = data->privateTemplate(currentWorldType, &privateTemplateUniqueKey, {{cpp_class}}V8Internal::{{method.name}}MethodCallback{{world_suffix}}, v8Undefined(), v8::Signature::New(info.GetIsolate(), V8PerIsolateData::from(info.GetIsolate())->rawDOMTemplate(&{{v8_class}}::wrapperTypeInfo, currentWorldType)), {{method.number_of_required_or_variadic_arguments}});
261 v8::Handle<v8::Object> holder = info.This()->FindInstanceInPrototypeChain({{v8_class}}::domTemplate(info.GetIsolate(), currentWorldType));
271 v8::Handle<v8::FunctionTemplate> sharedTemplate = data->privateTemplate(currentWorldType, &sharedTemplateUniqueKey, {{cpp_class}}V8Internal::{{method.name}}MethodCallback{{world_suffix}}, v8Undefined(), v8::Signature::New(info.GetIsolate(), V8PerIsolateData::from(info.GetIsolate())->rawDOMTemplate(&{{v8_class}}::wrapperTypeInfo, currentWorldType)), {{method.number_of_required_or_variadic_arguments}});
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
V8TestInterfaceCheckSecurity.cpp 199 WrapperWorldType currentWorldType = worldType(info.GetIsolate());
201 v8::Handle<v8::FunctionTemplate> privateTemplate = data->privateTemplate(currentWorldType, &privateTemplateUniqueKey, TestInterfaceCheckSecurityV8Internal::doNotCheckSecurityVoidMethodMethodCallback, v8Undefined(), v8::Signature::New(info.GetIsolate(), V8PerIsolateData::from(info.GetIsolate())->rawDOMTemplate(&V8TestInterfaceCheckSecurity::wrapperTypeInfo, currentWorldType)), 0);
203 v8::Handle<v8::Object> holder = info.This()->FindInstanceInPrototypeChain(V8TestInterfaceCheckSecurity::domTemplate(info.GetIsolate(), currentWorldType));
213 v8::Handle<v8::FunctionTemplate> sharedTemplate = data->privateTemplate(currentWorldType, &sharedTemplateUniqueKey, TestInterfaceCheckSecurityV8Internal::doNotCheckSecurityVoidMethodMethodCallback, v8Undefined(), v8::Signature::New(info.GetIsolate(), V8PerIsolateData::from(info.GetIsolate())->rawDOMTemplate(&V8TestInterfaceCheckSecurity::wrapperTypeInfo, currentWorldType)), 0);
251 WrapperWorldType currentWorldType = worldType(info.GetIsolate());
253 v8::Handle<v8::FunctionTemplate> privateTemplate = data->privateTemplate(currentWorldType, &privateTemplateUniqueKey, TestInterfaceCheckSecurityV8Internal::doNotCheckSecurityPerWorldBindingsVoidMethodMethodCallback, v8Undefined(), v8::Signature::New(info.GetIsolate(), V8PerIsolateData::from(info.GetIsolate())->rawDOMTemplate(&V8TestInterfaceCheckSecurity::wrapperTypeInfo, currentWorldType)), 0);
255 v8::Handle<v8::Object> holder = info.This()->FindInstanceInPrototypeChain(V8TestInterfaceCheckSecurity::domTemplate(info.GetIsolate(), currentWorldType));
    [all...]

Completed in 224 milliseconds