HomeSort by relevance Sort by last modified time
    Searched refs:context_locals (Results 1 - 9 of 9) sorted by null

  /external/v8/src/
scopeinfo.cc 44 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 +
scopes.h 353 ZoneList<Variable*>* context_locals);
scopes.cc 573 ZoneList<Variable*>* context_locals) {
575 ASSERT(context_locals != NULL);
595 context_locals->Add(var);
    [all...]
profile-generator.cc 2076 int context_locals = scope_info->ContextLocalCount(); local
    [all...]
  /external/chromium_org/v8/src/
scopeinfo.cc 44 ZoneList<Variable*> context_locals(scope->ContextLocalCount(), zone);
45 scope->CollectStackAndContextLocals(&stack_locals, &context_locals);
47 const int context_local_count = context_locals.length();
113 context_locals.Sort(&Variable::CompareIndex);
118 scope_info->set(index++, *context_locals[i]->name());
124 Variable* var = context_locals[i];
191 int context_locals = ContextLocalCount(); local
194 bool has_context = context_locals > 0 ||
200 return Context::MIN_CONTEXT_SLOTS + context_locals +
scopes.cc 595 ZoneList<Variable*>* context_locals) {
597 ASSERT(context_locals != NULL);
604 context_locals->Add(var, zone());
615 context_locals->Add(var, zone());
640 context_locals->Add(var, zone());
    [all...]
scopes.h 370 ZoneList<Variable*>* context_locals);
gdb-jit.cc 1180 ZoneList<Variable*> context_locals(context_slots, scope->zone());
1181 scope->CollectStackAndContextLocals(&stack_locals, &context_locals);
    [all...]
heap-snapshot-generator.cc 1084 int context_locals = scope_info->ContextLocalCount(); local
    [all...]

Completed in 172 milliseconds