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

/external/chromium_org/v8/src/
H A Dscopeinfo.cc42 ZoneList<Variable*> context_locals(scope->ContextLocalCount(), zone);
43 scope->CollectStackAndContextLocals(&stack_locals, &context_locals);
45 const int context_local_count = context_locals.length();
111 context_locals.Sort(&Variable::CompareIndex);
116 scope_info->set(index++, *context_locals[i]->name());
122 Variable* var = context_locals[i];
189 int context_locals = ContextLocalCount(); local
192 bool has_context = context_locals > 0 ||
198 return Context::MIN_CONTEXT_SLOTS + context_locals +
H A Dscopes.cc593 ZoneList<Variable*>* context_locals) {
595 ASSERT(context_locals != NULL);
602 context_locals->Add(var, zone());
613 context_locals->Add(var, zone());
638 context_locals->Add(var, zone());
592 CollectStackAndContextLocals(ZoneList<Variable*>* stack_locals, ZoneList<Variable*>* context_locals) argument
H A Dheap-snapshot-generator.cc1164 int context_locals = scope_info->ContextLocalCount(); local
1165 for (int i = 0; i < context_locals; ++i) {
/external/v8/src/
H A Dscopeinfo.cc44 ZoneList<Variable*> context_locals(scope->ContextLocalCount());
45 scope->CollectStackAndContextLocals(&stack_locals, &context_locals);
47 const int context_local_count = context_locals.length();
112 context_locals.Sort(&Variable::CompareIndex);
117 scope_info->set(index++, *context_locals[i]->name());
123 Variable* var = context_locals[i];
188 int context_locals = ContextLocalCount(); local
191 bool has_context = context_locals > 0 ||
196 return Context::MIN_CONTEXT_SLOTS + context_locals +
H A Dscopes.cc573 ZoneList<Variable*>* context_locals) {
575 ASSERT(context_locals != NULL);
595 context_locals->Add(var);
572 CollectStackAndContextLocals(ZoneList<Variable*>* stack_locals, ZoneList<Variable*>* context_locals) argument
H A Dprofile-generator.cc2076 int context_locals = scope_info->ContextLocalCount(); local
2077 for (int i = 0; i < context_locals; ++i) {
2086 int idx = Context::MIN_CONTEXT_SLOTS + context_locals;

Completed in 192 milliseconds