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

1 2 3

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8AudioBufferSourceNodeCustom.cpp 44 if (V8AudioBuffer::HasInstance(value, info.GetIsolate(), worldType(info.GetIsolate()))) {
V8CryptoCustom.cpp 49 if (!V8ArrayBufferView::HasInstance(buffer, args.GetIsolate(), worldType(args.GetIsolate()))) {
V8HTMLMediaElementCustom.cpp 38 if (!V8MediaController::HasInstance(value, info.GetIsolate(), worldType(info.GetIsolate()))) {
V8HTMLSelectElementCustom.cpp 54 if (V8HTMLOptionElement::HasInstance(args[0], args.GetIsolate(), worldType(args.GetIsolate()))) {
V8FormDataCustom.cpp 45 if (args.Length() > 0 && V8HTMLFormElement::HasInstance(args[0], args.GetIsolate(), worldType(args.GetIsolate())))
66 if (V8Blob::HasInstance(arg, args.GetIsolate(), worldType(args.GetIsolate()))) {
V8NodeCustom.cpp 70 Node* newChild = V8Node::HasInstance(args[0], args.GetIsolate(), worldType(args.GetIsolate())) ? V8Node::toNative(v8::Handle<v8::Object>::Cast(args[0])) : 0;
71 Node* refChild = V8Node::HasInstance(args[1], args.GetIsolate(), worldType(args.GetIsolate())) ? V8Node::toNative(v8::Handle<v8::Object>::Cast(args[1])) : 0;
87 Node* newChild = V8Node::HasInstance(args[0], args.GetIsolate(), worldType(args.GetIsolate())) ? V8Node::toNative(v8::Handle<v8::Object>::Cast(args[0])) : 0;
88 Node* oldChild = V8Node::HasInstance(args[1], args.GetIsolate(), worldType(args.GetIsolate())) ? V8Node::toNative(v8::Handle<v8::Object>::Cast(args[1])) : 0;
103 Node* oldChild = V8Node::HasInstance(args[0], args.GetIsolate(), worldType(args.GetIsolate())) ? V8Node::toNative(v8::Handle<v8::Object>::Cast(args[0])) : 0;
119 Node* newChild = V8Node::HasInstance(args[0], args.GetIsolate(), worldType(args.GetIsolate())) ? V8Node::toNative(v8::Handle<v8::Object>::Cast(args[0])) : 0;
V8BlobCustom.cpp 106 if (V8ArrayBuffer::HasInstance(item, args.GetIsolate(), worldType(args.GetIsolate()))) {
110 } else if (V8ArrayBufferView::HasInstance(item, args.GetIsolate(), worldType(args.GetIsolate()))) {
115 if (V8Blob::HasInstance(item, args.GetIsolate(), worldType(args.GetIsolate()))) {
V8CanvasRenderingContext2DCustom.cpp 62 if (V8CanvasGradient::HasInstance(value, isolate, worldType(isolate)))
65 if (V8CanvasPattern::HasInstance(value, isolate, worldType(isolate)))
V8DocumentCustom.cpp 69 if (V8Node::HasInstance(args[1], args.GetIsolate(), worldType(args.GetIsolate())))
80 if (V8XPathResult::HasInstance(args[4], args.GetIsolate(), worldType(args.GetIsolate())))
V8WebGLRenderingContextCustom.cpp 298 if (V8WebGLUniformLocation::HasInstance(value, isolate, worldType(isolate))) {
317 if (args.Length() > 0 && !isUndefinedOrNull(args[0]) && !V8WebGLProgram::HasInstance(args[0], args.GetIsolate(), worldType(args.GetIsolate()))) {
321 WebGLProgram* program = V8WebGLProgram::HasInstance(args[0], args.GetIsolate(), worldType(args.GetIsolate())) ? V8WebGLProgram::toNative(v8::Handle<v8::Object>::Cast(args[0])) : 0;
387 if (args.Length() > 0 && !isUndefinedOrNull(args[0]) && !V8WebGLProgram::HasInstance(args[0], args.GetIsolate(), worldType(args.GetIsolate()))) {
391 WebGLProgram* program = V8WebGLProgram::HasInstance(args[0], args.GetIsolate(), worldType(args.GetIsolate())) ? V8WebGLProgram::toNative(v8::Handle<v8::Object>::Cast(args[0])) : 0;
410 if (args.Length() > 0 && !isUndefinedOrNull(args[0]) && !V8WebGLShader::HasInstance(args[0], args.GetIsolate(), worldType(args.GetIsolate()))) {
414 WebGLShader* shader = V8WebGLShader::HasInstance(args[0], args.GetIsolate(), worldType(args.GetIsolate())) ? V8WebGLShader::toNative(v8::Handle<v8::Object>::Cast(args[0])) : 0;
448 if (args.Length() > 0 && !isUndefinedOrNull(args[0]) && !V8WebGLProgram::HasInstance(args[0], args.GetIsolate(), worldType(args.GetIsolate()))) {
452 WebGLProgram* program = V8WebGLProgram::HasInstance(args[0], args.GetIsolate(), worldType(args.GetIsolate())) ? V8WebGLProgram::toNative(v8::Handle<v8::Object>::Cast(args[0])) : 0;
454 if (args.Length() > 1 && !isUndefinedOrNull(args[1]) && !V8WebGLUniformLocation::HasInstance(args[1], args.GetIsolate(), worldType(args.GetIsolate())))
    [all...]
V8ClipboardCustom.cpp 99 if (V8Node::HasInstance(args[0], args.GetIsolate(), worldType(args.GetIsolate())))
V8HTMLOptionsCollectionCustom.cpp 82 if (!V8HTMLOptionElement::HasInstance(args[0], args.GetIsolate(), worldType(args.GetIsolate()))) {
V8TypedArrayCustom.h 86 ASSERT(worldType(isolate) == MainWorld);
109 ASSERT(worldType(container.GetIsolate()) == MainWorld);
V8InjectedScriptHostCustom.cpp 119 v8SetReturnValue(args, V8HTMLAllCollection::HasInstance(args[0], args.GetIsolate(), worldType(args.GetIsolate())));
152 WrapperWorldType currentWorldType = worldType(args.GetIsolate());
270 if (!V8Node::HasInstance(value, args.GetIsolate(), worldType(args.GetIsolate())))
309 if (args.Length() > 0 && V8Database::HasInstance(args[0], args.GetIsolate(), worldType(args.GetIsolate()))) {
322 if (args.Length() > 0 && V8Storage::HasInstance(args[0], args.GetIsolate(), worldType(args.GetIsolate()))) {
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8PerIsolateData.h 68 TemplateMap& rawTemplateMap(WrapperWorldType worldType)
70 if (worldType == MainWorld)
75 TemplateMap& templateMap(WrapperWorldType worldType)
77 if (worldType == MainWorld)
Dictionary.cpp 273 if (V8Storage::HasInstance(v8Value, m_isolate, worldType(m_isolate)))
331 if (V8Uint8Array::HasInstance(v8Value, m_isolate, worldType(m_isolate)))
343 if (V8ArrayBufferView::HasInstance(v8Value, m_isolate, worldType(m_isolate)))
355 if (V8MIDIPort::HasInstance(v8Value, m_isolate, worldType(m_isolate)))
367 if (V8MediaKeyError::HasInstance(v8Value, m_isolate, worldType(m_isolate)))
384 v8::Handle<v8::Object> track = wrapper->FindInstanceInPrototypeChain(V8TextTrack::GetTemplate(m_isolate, worldType(m_isolate)));
399 if (V8SpeechRecognitionError::HasInstance(v8Value, m_isolate, worldType(m_isolate)))
411 if (V8SpeechRecognitionResult::HasInstance(v8Value, m_isolate, worldType(m_isolate)))
423 if (V8SpeechRecognitionResultList::HasInstance(v8Value, m_isolate, worldType(m_isolate)))
435 if (V8MediaStream::HasInstance(v8Value, m_isolate, worldType(m_isolate))
    [all...]
V8Utilities.cpp 94 if (V8MessagePort::HasInstance(transferrable, isolate, worldType(isolate))) {
102 } else if (V8ArrayBuffer::HasInstance(transferrable, isolate, worldType(isolate)))
WrapperTypeInfo.h 97 v8::Handle<v8::FunctionTemplate> getTemplate(v8::Isolate* isolate, WrapperWorldType worldType) { return getTemplateFunction(isolate, worldType); }
V8ErrorHandler.cpp 68 if (worldType(isolate) == WorkerWorld)
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
V8TestOverloadedConstructors.cpp 92 V8TRYCATCH_VOID(Blob*, blob, V8Blob::HasInstance(args[0], args.GetIsolate(), worldType(args.GetIsolate())) ? V8Blob::toNative(v8::Handle<v8::Object>::Cast(args[0])) : 0);
114 if ((args.Length() == 1 && (V8ArrayBuffer::HasInstance(args[0], args.GetIsolate(), worldType(args.GetIsolate()))))) {
118 if ((args.Length() == 1 && (V8ArrayBufferView::HasInstance(args[0], args.GetIsolate(), worldType(args.GetIsolate()))))) {
122 if ((args.Length() == 1 && (V8Blob::HasInstance(args[0], args.GetIsolate(), worldType(args.GetIsolate()))))) {
V8TestActiveDOMObject.cpp 101 V8TRYCATCH_VOID(Node*, nextChild, V8Node::HasInstance(args[0], args.GetIsolate(), worldType(args.GetIsolate())) ? V8Node::toNative(v8::Handle<v8::Object>::Cast(args[0])) : 0);
138 WrapperWorldType currentWorldType = worldType(info.GetIsolate());
175 v8::Handle<v8::Object> holder = info.This()->FindInstanceInPrototypeChain(V8TestActiveDOMObject::GetTemplate(info.GetIsolate(), worldType(info.GetIsolate())));
V8Float64Array.h 84 ASSERT(worldType(isolate) == MainWorld);
V8TestActiveDOMObject.h 85 ASSERT(worldType(isolate) == MainWorld);
V8TestEvent.h 86 ASSERT(worldType(isolate) == MainWorld);
  /external/chromium_org/third_party/WebKit/Source/bindings/templates/
interface.h 90 ASSERT(worldType(isolate) == MainWorld);

Completed in 313 milliseconds

1 2 3