HomeSort by relevance Sort by last modified time
    Searched refs:worldType (Results 1 - 25 of 62) sorted by null

1 2 3

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8DocumentCustom.cpp 67 if (V8Node::hasInstance(info[1], info.GetIsolate(), worldType(info.GetIsolate())))
80 if (V8XPathResult::hasInstance(info[4], info.GetIsolate(), worldType(info.GetIsolate())))
V8BlobCustomHelpers.cpp 119 if (V8ArrayBuffer::hasInstance(item, isolate, worldType(isolate))) {
123 } else if (V8ArrayBufferView::hasInstance(item, isolate, worldType(isolate))) {
127 } else if (V8Blob::hasInstance(item, isolate, worldType(isolate))) {
V8CryptoCustom.cpp 52 if (!V8ArrayBufferView::hasInstance(buffer, info.GetIsolate(), worldType(info.GetIsolate()))) {
V8NodeCustom.cpp 70 Node* newChild = V8Node::hasInstance(info[0], info.GetIsolate(), worldType(info.GetIsolate())) ? V8Node::toNative(v8::Handle<v8::Object>::Cast(info[0])) : 0;
71 Node* refChild = V8Node::hasInstance(info[1], info.GetIsolate(), worldType(info.GetIsolate())) ? V8Node::toNative(v8::Handle<v8::Object>::Cast(info[1])) : 0;
86 Node* newChild = V8Node::hasInstance(info[0], info.GetIsolate(), worldType(info.GetIsolate())) ? V8Node::toNative(v8::Handle<v8::Object>::Cast(info[0])) : 0;
87 Node* oldChild = V8Node::hasInstance(info[1], info.GetIsolate(), worldType(info.GetIsolate())) ? V8Node::toNative(v8::Handle<v8::Object>::Cast(info[1])) : 0;
102 Node* oldChild = V8Node::hasInstance(info[0], info.GetIsolate(), worldType(info.GetIsolate())) ? V8Node::toNative(v8::Handle<v8::Object>::Cast(info[0])) : 0;
117 Node* newChild = V8Node::hasInstance(info[0], info.GetIsolate(), worldType(info.GetIsolate())) ? V8Node::toNative(v8::Handle<v8::Object>::Cast(info[0])) : 0;
V8CanvasRenderingContext2DCustom.cpp 62 if (V8CanvasGradient::hasInstance(value, isolate, worldType(isolate)))
65 if (V8CanvasPattern::hasInstance(value, isolate, worldType(isolate)))
V8FormDataCustom.cpp 53 if (V8Blob::hasInstance(arg, info.GetIsolate(), worldType(info.GetIsolate()))) {
V8WebGLRenderingContextCustom.cpp 300 if (V8WebGLUniformLocation::hasInstance(value, isolate, worldType(isolate))) {
319 if (info.Length() > 0 && !isUndefinedOrNull(info[0]) && !V8WebGLProgram::hasInstance(info[0], info.GetIsolate(), worldType(info.GetIsolate()))) {
323 WebGLProgram* program = V8WebGLProgram::hasInstance(info[0], info.GetIsolate(), worldType(info.GetIsolate())) ? V8WebGLProgram::toNative(v8::Handle<v8::Object>::Cast(info[0])) : 0;
389 if (info.Length() > 0 && !isUndefinedOrNull(info[0]) && !V8WebGLProgram::hasInstance(info[0], info.GetIsolate(), worldType(info.GetIsolate()))) {
393 WebGLProgram* program = V8WebGLProgram::hasInstance(info[0], info.GetIsolate(), worldType(info.GetIsolate())) ? V8WebGLProgram::toNative(v8::Handle<v8::Object>::Cast(info[0])) : 0;
412 if (info.Length() > 0 && !isUndefinedOrNull(info[0]) && !V8WebGLShader::hasInstance(info[0], info.GetIsolate(), worldType(info.GetIsolate()))) {
416 WebGLShader* shader = V8WebGLShader::hasInstance(info[0], info.GetIsolate(), worldType(info.GetIsolate())) ? V8WebGLShader::toNative(v8::Handle<v8::Object>::Cast(info[0])) : 0;
450 if (info.Length() > 0 && !isUndefinedOrNull(info[0]) && !V8WebGLProgram::hasInstance(info[0], info.GetIsolate(), worldType(info.GetIsolate()))) {
454 WebGLProgram* program = V8WebGLProgram::hasInstance(info[0], info.GetIsolate(), worldType(info.GetIsolate())) ? V8WebGLProgram::toNative(v8::Handle<v8::Object>::Cast(info[0])) : 0;
456 if (info.Length() > 1 && !isUndefinedOrNull(info[1]) && !V8WebGLUniformLocation::hasInstance(info[1], info.GetIsolate(), worldType(info.GetIsolate())))
    [all...]
V8HTMLOptionsCollectionCustom.cpp 77 if (!V8HTMLOptionElement::hasInstance(info[0], info.GetIsolate(), worldType(info.GetIsolate()))) {
V8InjectedScriptHostCustom.cpp 122 v8SetReturnValue(info, V8HTMLAllCollection::hasInstance(info[0], info.GetIsolate(), worldType(info.GetIsolate())));
156 WrapperWorldType currentWorldType = worldType(isolate);
282 if (!V8Node::hasInstance(value, info.GetIsolate(), worldType(info.GetIsolate())))
317 if (info.Length() > 0 && V8Database::hasInstance(info[0], info.GetIsolate(), worldType(info.GetIsolate()))) {
330 if (info.Length() > 0 && V8Storage::hasInstance(info[0], info.GetIsolate(), worldType(info.GetIsolate()))) {
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8PerIsolateData.h 69 TemplateMap& rawDOMTemplateMap(WrapperWorldType worldType)
71 if (worldType == MainWorld)
76 TemplateMap& templateMap(WrapperWorldType worldType)
78 if (worldType == MainWorld)
Dictionary.cpp 335 if (V8Storage::hasInstance(v8Value, m_isolate, worldType(m_isolate)))
421 if (V8Uint8Array::hasInstance(v8Value, m_isolate, worldType(m_isolate)))
433 if (V8ArrayBufferView::hasInstance(v8Value, m_isolate, worldType(m_isolate)))
445 if (V8MIDIPort::hasInstance(v8Value, m_isolate, worldType(m_isolate)))
457 if (V8MediaKeyError::hasInstance(v8Value, m_isolate, worldType(m_isolate)))
474 v8::Handle<v8::Object> track = wrapper->FindInstanceInPrototypeChain(V8TextTrack::domTemplate(m_isolate, worldType(m_isolate)));
489 if (V8SpeechRecognitionError::hasInstance(v8Value, m_isolate, worldType(m_isolate)))
501 if (V8SpeechRecognitionResult::hasInstance(v8Value, m_isolate, worldType(m_isolate)))
513 if (V8SpeechRecognitionResultList::hasInstance(v8Value, m_isolate, worldType(m_isolate)))
525 if (V8MediaStream::hasInstance(v8Value, m_isolate, worldType(m_isolate))
    [all...]
V8ErrorHandler.cpp 76 if (worldType(isolate) == WorkerWorld)
V8Utilities.cpp 95 if (V8MessagePort::hasInstance(transferrable, isolate, worldType(isolate))) {
103 } else if (V8ArrayBuffer::hasInstance(transferrable, isolate, worldType(isolate)))
WrapperTypeInfo.h 103 v8::Handle<v8::FunctionTemplate> domTemplate(v8::Isolate* isolate, WrapperWorldType worldType) const { return domTemplateFunction(isolate, worldType); }
V8DOMWrapper.cpp 49 WrapperWorldType currentWorldType = worldType(isolate);
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
V8TestInterfaceConstructor.cpp 94 V8TRYCATCH_VOID(TestInterfaceEmpty*, testInterfaceEmptyArg, V8TestInterfaceEmpty::hasInstance(info[2], info.GetIsolate(), worldType(info.GetIsolate())) ? V8TestInterfaceEmpty::toNative(v8::Handle<v8::Object>::Cast(info[2])) : 0);
106 V8TRYCATCH_VOID(TestInterfaceEmpty*, optionalTestInterfaceEmptyArg, V8TestInterfaceEmpty::hasInstance(info[6], info.GetIsolate(), worldType(info.GetIsolate())) ? V8TestInterfaceEmpty::toNative(v8::Handle<v8::Object>::Cast(info[6])) : 0);
124 if (((info.Length() == 5) && (V8TestInterfaceEmpty::hasInstance(info[2], info.GetIsolate(), worldType(info.GetIsolate()))) && (info[4]->IsArray())) || ((info.Length() == 6) && (V8TestInterfaceEmpty::hasInstance(info[2], info.GetIsolate(), worldType(info.GetIsolate()))) && (info[4]->IsArray())) || ((info.Length() == 7) && (V8TestInterfaceEmpty::hasInstance(info[2], info.GetIsolate(), worldType(info.GetIsolate()))) && (info[4]->IsArray()) && (V8TestInterfaceEmpty::hasInstance(info[6], info.GetIsolate(), worldType(info.GetIsolate()))))) {
V8TestInterfaceConstructor2.cpp 86 V8TRYCATCH_VOID(TestInterfaceEmpty*, testInterfaceEmptyArg, V8TestInterfaceEmpty::hasInstance(info[0], info.GetIsolate(), worldType(info.GetIsolate())) ? V8TestInterfaceEmpty::toNative(v8::Handle<v8::Object>::Cast(info[0])) : 0);
107 if (((info.Length() == 1) && (V8TestInterfaceEmpty::hasInstance(info[0], info.GetIsolate(), worldType(info.GetIsolate())))) || ((info.Length() == 2) && (V8TestInterfaceEmpty::hasInstance(info[0], info.GetIsolate(), worldType(info.GetIsolate())))) || ((info.Length() == 3) && (V8TestInterfaceEmpty::hasInstance(info[0], info.GetIsolate(), worldType(info.GetIsolate())))) || ((info.Length() == 4) && (V8TestInterfaceEmpty::hasInstance(info[0], info.GetIsolate(), worldType(info.GetIsolate()))))) {
V8TestOverloadedConstructors.cpp 97 V8TRYCATCH_VOID(Blob*, blob, V8Blob::hasInstance(info[0], info.GetIsolate(), worldType(info.GetIsolate())) ? V8Blob::toNative(v8::Handle<v8::Object>::Cast(info[0])) : 0);
117 if (((info.Length() == 1) && (V8ArrayBuffer::hasInstance(info[0], info.GetIsolate(), worldType(info.GetIsolate()))))) {
121 if (((info.Length() == 1) && (V8ArrayBufferView::hasInstance(info[0], info.GetIsolate(), worldType(info.GetIsolate()))))) {
125 if (((info.Length() == 1) && (V8Blob::hasInstance(info[0], info.GetIsolate(), worldType(info.GetIsolate()))))) {
V8TestException.h 111 ASSERT(worldType(callbackInfo.GetIsolate()) == MainWorld);
V8TestInterfaceCheckSecurity.h 111 ASSERT(worldType(callbackInfo.GetIsolate()) == MainWorld);
V8TestInterfaceDoNotCheckConstants.h 111 ASSERT(worldType(callbackInfo.GetIsolate()) == MainWorld);
V8TestInterfaceEmpty.h 111 ASSERT(worldType(callbackInfo.GetIsolate()) == MainWorld);
V8TestInterfaceImplementedAs.h 111 ASSERT(worldType(callbackInfo.GetIsolate()) == MainWorld);
V8TestInterfacePython2.h 107 ASSERT(worldType(callbackInfo.GetIsolate()) == MainWorld);
  /external/chromium_org/third_party/WebKit/Source/bindings/templates/
attributes.cpp 12 v8::Handle<v8::Object> holder = info.This()->FindInstanceInPrototypeChain({{v8_class}}::domTemplate(info.GetIsolate(), worldType(info.GetIsolate())));
134 if (!isUndefinedOrNull(jsValue) && !V8{{attribute.idl_type}}::hasInstance(jsValue, info.GetIsolate(), worldType(info.GetIsolate()))) {

Completed in 2180 milliseconds

1 2 3