OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FindInstanceInPrototypeChain
(Results
1 - 19
of
19
) sorted by null
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8InjectedScriptManager.cpp
114
v8::Handle<v8::Object> holder = global->
FindInstanceInPrototypeChain
(V8Window::domTemplate(context->GetIsolate(), MainWorld));
116
holder = global->
FindInstanceInPrototypeChain
(V8Window::domTemplate(context->GetIsolate(), IsolatedWorld));
V8WindowCustom.cpp
154
v8::Handle<v8::Object> holder = info.This()->
FindInstanceInPrototypeChain
(V8Window::domTemplate(info.GetIsolate(), worldTypeInMainThread(info.GetIsolate())));
179
v8::Handle<v8::Object> holder = info.This()->
FindInstanceInPrototypeChain
(V8Window::domTemplate(info.GetIsolate(), worldTypeInMainThread(info.GetIsolate())));
305
v8::Handle<v8::Object> domWrapper = info.This()->
FindInstanceInPrototypeChain
(V8Window::domTemplate(info.GetIsolate(), worldTypeInMainThread(info.GetIsolate())));
460
v8::Handle<v8::Object> window = host->
FindInstanceInPrototypeChain
(V8Window::domTemplate(isolate, worldTypeInMainThread(isolate)));
503
v8::Handle<v8::Object> window = host->
FindInstanceInPrototypeChain
(V8Window::domTemplate(isolate, worldTypeInMainThread(isolate)));
553
v8::Handle<v8::Object> windowWrapper = currentGlobal->
FindInstanceInPrototypeChain
(V8Window::domTemplate(isolate, worldTypeInMainThread(isolate)));
V8MessageEventCustom.cpp
113
v8::Handle<v8::Object> window = wrapper->
FindInstanceInPrototypeChain
(V8Window::domTemplate(info.GetIsolate(), worldTypeInMainThread(info.GetIsolate())));
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8Binding.cpp
460
v8::Handle<v8::Object> window = global->
FindInstanceInPrototypeChain
(V8Window::domTemplate(context->GetIsolate(), MainWorld));
463
window = global->
FindInstanceInPrototypeChain
(V8Window::domTemplate(context->GetIsolate(), IsolatedWorld));
471
v8::Handle<v8::Object> windowWrapper = global->
FindInstanceInPrototypeChain
(V8Window::domTemplate(context->GetIsolate(), MainWorld));
474
windowWrapper = global->
FindInstanceInPrototypeChain
(V8Window::domTemplate(context->GetIsolate(), IsolatedWorld));
477
v8::Handle<v8::Object> workerWrapper = global->
FindInstanceInPrototypeChain
(V8WorkerGlobalScope::domTemplate(context->GetIsolate(), WorkerWorld));
Dictionary.cpp
321
v8::Handle<v8::Object> window = wrapper->
FindInstanceInPrototypeChain
(V8Window::domTemplate(m_isolate, worldTypeInMainThread(m_isolate)));
474
v8::Handle<v8::Object> track = wrapper->
FindInstanceInPrototypeChain
(V8TextTrack::domTemplate(m_isolate, worldType(m_isolate)));
541
v8::Handle<v8::Object> window = wrapper->
FindInstanceInPrototypeChain
(V8Window::domTemplate(m_isolate, worldTypeInMainThread(m_isolate)));
669
v8::Handle<v8::Object> domError = wrapper->
FindInstanceInPrototypeChain
(V8DOMError::domTemplate(m_isolate, worldType(m_isolate)));
V8Initializer.cpp
62
v8::Handle<v8::Object> windowWrapper = host->
FindInstanceInPrototypeChain
(V8Window::domTemplate(isolate, worldTypeInMainThread(isolate)));
WorkerScriptController.cpp
261
global = global->
FindInstanceInPrototypeChain
(V8WorkerGlobalScope::domTemplate(isolate, WorkerWorld));
PageScriptDebugServer.cpp
63
global = global->
FindInstanceInPrototypeChain
(V8Window::domTemplate(context->GetIsolate(), worldTypeInMainThread(context->GetIsolate())));
V8WindowShell.cpp
142
v8::Handle<v8::Object> windowWrapper = m_global.newLocal(m_isolate)->
FindInstanceInPrototypeChain
(V8Window::domTemplate(m_isolate, worldTypeInMainThread(m_isolate)));
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
V8TestInterfaceCheckSecurity.cpp
203
v8::Handle<v8::Object> holder = info.This()->
FindInstanceInPrototypeChain
(V8TestInterfaceCheckSecurity::domTemplate(info.GetIsolate(), currentWorldType));
255
v8::Handle<v8::Object> holder = info.This()->
FindInstanceInPrototypeChain
(V8TestInterfaceCheckSecurity::domTemplate(info.GetIsolate(), currentWorldType));
307
v8::Handle<v8::Object> holder = info.This()->
FindInstanceInPrototypeChain
(V8TestInterfaceCheckSecurity::domTemplate(info.GetIsolate(), currentWorldType));
359
v8::Handle<v8::Object> holder = info.This()->
FindInstanceInPrototypeChain
(V8TestInterfaceCheckSecurity::domTemplate(info.GetIsolate(), currentWorldType));
411
v8::Handle<v8::Object> holder = info.This()->
FindInstanceInPrototypeChain
(V8TestInterfaceCheckSecurity::domTemplate(info.GetIsolate(), currentWorldType));
444
v8::Handle<v8::Object> holder = info.This()->
FindInstanceInPrototypeChain
(V8TestInterfaceCheckSecurity::domTemplate(info.GetIsolate(), worldType(info.GetIsolate())));
[
all
...]
V8TestObjectPython.cpp
[
all
...]
/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())));
/external/chromium_org/v8/test/cctest/
test-api.cc
[
all
...]
/external/v8/test/cctest/
test-api.cc
900
THREADED_TEST(
FindInstanceInPrototypeChain
) {
922
base_instance->
FindInstanceInPrototypeChain
(base));
923
CHECK(base_instance->
FindInstanceInPrototypeChain
(derived).IsEmpty());
924
CHECK(base_instance->
FindInstanceInPrototypeChain
(other).IsEmpty());
928
derived_instance->
FindInstanceInPrototypeChain
(base));
930
derived_instance->
FindInstanceInPrototypeChain
(derived));
931
CHECK(derived_instance->
FindInstanceInPrototypeChain
(other).IsEmpty());
939
other_instance->
FindInstanceInPrototypeChain
(base));
941
other_instance->
FindInstanceInPrototypeChain
(derived));
943
other_instance->
FindInstanceInPrototypeChain
(other))
[
all
...]
/external/v8/include/
v8.h
[
all
...]
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/
code_generator_v8.pm
[
all
...]
/external/chromium_org/v8/include/
v8.h
[
all
...]
/external/chromium_org/v8/src/
api.cc
[
all
...]
/external/v8/src/
api.cc
[
all
...]
Completed in 134 milliseconds