Home
last modified time | relevance | path

Searched refs:context_globals (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/ast/
Dscopeinfo.cc21 ZoneList<Variable*> context_globals(scope->ContextGlobalCount(), zone); in Create() local
25 &context_globals, in Create()
29 const int context_global_count = context_globals.length(); in Create()
150 scope_info->set(index++, *context_globals[i]->name()); in Create()
167 Variable* var = context_globals[i]; in Create()
341 int context_globals = ContextGlobalCount(); in ContextLength() local
344 bool has_context = context_locals > 0 || context_globals > 0 || in ContextLength()
353 return Context::MIN_CONTEXT_SLOTS + context_locals + context_globals + in ContextLength()
Dscopes.cc666 ZoneList<Variable*>* context_globals, in CollectStackAndContextLocals() argument
670 DCHECK(context_globals != NULL); in CollectStackAndContextLocals()
712 context_globals->Add(var, zone()); in CollectStackAndContextLocals()
Dscopes.h506 ZoneList<Variable*>* context_globals,
/external/v8/src/
Dcontexts.cc395 int context_globals = scope_info->ContextGlobalCount(); in InitializeGlobalSlots() local
396 if (context_globals > 0) { in InitializeGlobalSlots()
401 for (int i = 0; i < context_globals; i++) { in InitializeGlobalSlots()