Searched refs:context_locals (Results 1 - 5 of 5) 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();
90 context_locals.Sort(&Variable::CompareIndex);
95 scope_info->set(index++, *context_locals[i]->name());
101 Variable* var = context_locals[i];
170 int context_locals = ContextLocalCount(); local
173 bool has_context = context_locals > 0 ||
179 return Context::MIN_CONTEXT_SLOTS + context_locals +
H A Dscopes.cc585 ZoneList<Variable*>* context_locals) {
587 DCHECK(context_locals != NULL);
594 context_locals->Add(var, zone());
605 context_locals->Add(var, zone());
630 context_locals->Add(var, zone());
584 CollectStackAndContextLocals(ZoneList<Variable*>* stack_locals, ZoneList<Variable*>* context_locals) argument
H A Dscopes.h345 ZoneList<Variable*>* context_locals);
H A Dgdb-jit.cc1178 ZoneList<Variable*> context_locals(context_slots, scope->zone());
1179 scope->CollectStackAndContextLocals(&stack_locals, &context_locals);
H A Dheap-snapshot-generator.cc1239 int context_locals = scope_info->ContextLocalCount(); local
1240 for (int i = 0; i < context_locals; ++i) {

Completed in 231 milliseconds