Searched defs:context_locals (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/v8/src/
H A Dscopeinfo.cc19 ZoneList<Variable*> context_locals(scope->ContextLocalCount(), zone);
20 scope->CollectStackAndContextLocals(&stack_locals, &context_locals);
22 const int context_local_count = context_locals.length();
88 context_locals.Sort(&Variable::CompareIndex);
93 scope_info->set(index++, *context_locals[i]->name());
99 Variable* var = context_locals[i];
166 int context_locals = ContextLocalCount(); local
169 bool has_context = context_locals > 0 ||
175 return Context::MIN_CONTEXT_SLOTS + context_locals +
H A Dscopes.cc568 ZoneList<Variable*>* context_locals) {
570 ASSERT(context_locals != NULL);
577 context_locals->Add(var, zone());
588 context_locals->Add(var, zone());
613 context_locals->Add(var, zone());
567 CollectStackAndContextLocals(ZoneList<Variable*>* stack_locals, ZoneList<Variable*>* context_locals) argument
H A Dheap-snapshot-generator.cc1276 int context_locals = scope_info->ContextLocalCount(); local
1277 for (int i = 0; i < context_locals; ++i) {

Completed in 247 milliseconds