Searched refs:inner_scope (Results 1 - 6 of 6) sorted by relevance

/external/v8/src/
H A Dscopes.h591 Scope(Scope* inner_scope, ScopeType type, Handle<ScopeInfo> scope_info);
594 Scope(Scope* inner_scope, Handle<String> catch_variable_name);
596 void AddInnerScope(Scope* inner_scope) { argument
597 if (inner_scope != NULL) {
598 inner_scopes_.Add(inner_scope);
599 inner_scope->outer_scope_ = this;
H A Dscopes.cc123 Scope::Scope(Scope* inner_scope, argument
142 AddInnerScope(inner_scope);
146 Scope::Scope(Scope* inner_scope, Handle<String> catch_variable_name) argument
157 AddInnerScope(inner_scope);
1069 Scope* inner_scope = inner_scopes_[i]; local
1070 if (inner_scope->PropagateScopeInfo(calls_non_strict_eval)) {
1073 if (inner_scope->force_eager_compilation_) {
H A Dd8.cc1089 HandleScope inner_scope; local
1136 HandleScope inner_scope; local
/external/v8/test/cctest/
H A Dtest-heap.cc209 v8::HandleScope inner_scope; local
240 HandleScope inner_scope; local
1355 v8::HandleScope inner_scope; local
1392 v8::HandleScope inner_scope; local
1427 v8::HandleScope inner_scope; local
1462 v8::HandleScope inner_scope; local
H A Dtest-parsing.cc1033 i::Scope* inner_scope = scope->inner_scopes()->at(0); local
1034 CHECK_EQ(inner_scope->type(), source_data[i].scope_type);
1035 CHECK_EQ(inner_scope->start_position(), kPrefixLen);
1038 CHECK_EQ(inner_scope->end_position(), kPrefixLen + kInnerLen);
H A Dtest-api.cc5496 v8::HandleScope inner_scope; local

Completed in 170 milliseconds