Home
last modified time | relevance | path

Searched refs:script_contexts (Results 1 – 5 of 5) sorted by relevance

/third_party/node/deps/v8/src/debug/
Ddebug-scopes.cc737 Handle<ScriptContextTable> script_contexts( in VisitScriptScope() local
742 context_index < script_contexts->used(kAcquireLoad); context_index++) { in VisitScriptScope()
744 isolate_, script_contexts, context_index); in VisitScriptScope()
1095 Handle<ScriptContextTable> script_contexts( in SetScriptVariableValue() local
1099 if (script_contexts->Lookup(variable_name, &lookup_result)) { in SetScriptVariableValue()
1101 isolate_, script_contexts, lookup_result.context_index); in SetScriptVariableValue()
/third_party/node/deps/v8/src/runtime/
Druntime-scopes.cc54 Handle<ScriptContextTable> script_contexts( in DeclareGlobal() local
57 if (script_contexts->Lookup(name, &lookup) && in DeclareGlobal()
875 Handle<ScriptContextTable> script_contexts( in RUNTIME_FUNCTION() local
879 bool found = script_contexts->Lookup(name, &lookup_result); in RUNTIME_FUNCTION()
882 isolate, script_contexts, lookup_result.context_index); in RUNTIME_FUNCTION()
/third_party/node/deps/v8/src/objects/
Dcontexts.cc243 ScriptContextTable script_contexts = in Lookup() local
246 if (script_contexts.Lookup(name, &r)) { in Lookup()
247 Context script_context = script_contexts.get_context(r.context_index); in Lookup()
/third_party/node/deps/v8/src/ic/
Dic.cc530 Handle<ScriptContextTable> script_contexts( in Load() local
534 if (script_contexts->Lookup(str_name, &lookup_result)) { in Load()
536 isolate(), script_contexts, lookup_result.context_index); in Load()
1693 Handle<ScriptContextTable> script_contexts( in Store() local
1697 if (script_contexts->Lookup(str_name, &lookup_result)) { in Store()
1699 isolate(), script_contexts, lookup_result.context_index); in Store()
2964 Handle<ScriptContextTable> script_contexts( in RUNTIME_FUNCTION() local
2968 if (script_contexts->Lookup(name, &lookup_result)) { in RUNTIME_FUNCTION()
2970 isolate, script_contexts, lookup_result.context_index); in RUNTIME_FUNCTION()
/third_party/node/deps/v8/src/init/
Dbootstrapper.cc1272 Handle<ScriptContextTable> script_contexts( in InstallGlobalThisBinding() local
1285 ScriptContextTable::Extend(isolate(), script_contexts, context); in InstallGlobalThisBinding()