OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:context_locals
(Results
1 - 5
of
5
) sorted by null
/external/v8/src/ast/
scopeinfo.cc
20
ZoneList<Variable*>
context_locals
(scope->ContextLocalCount(), zone);
24
scope->CollectStackAndContextLocals(&stack_locals, &
context_locals
,
28
const int context_local_count =
context_locals
.length();
139
context_locals
.Sort(&Variable::CompareIndex);
144
scope_info->set(index++, *
context_locals
[i]->name());
156
Variable* var =
context_locals
[i];
340
int
context_locals
= ContextLocalCount();
local
344
bool has_context =
context_locals
> 0 || context_globals > 0 ||
353
return Context::MIN_CONTEXT_SLOTS +
context_locals
+ context_globals +
scopes.cc
665
ZoneList<Variable*>* stack_locals, ZoneList<Variable*>*
context_locals
,
669
DCHECK(
context_locals
!= NULL);
679
context_locals
->Add(var, zone());
710
context_locals
->Add(var, zone());
[
all
...]
scopes.h
505
ZoneList<Variable*>* stack_locals, ZoneList<Variable*>*
context_locals
,
[
all
...]
/external/v8/src/
contexts.cc
399
int
context_locals
= scope_info->ContextLocalCount();
local
400
int index = Context::MIN_CONTEXT_SLOTS +
context_locals
;
/external/v8/src/profiler/
heap-snapshot-generator.cc
1233
int
context_locals
= scope_info->ContextLocalCount();
local
[
all
...]
Completed in 596 milliseconds