Searched refs:outer_scope (Results 1 - 11 of 11) sorted by relevance

/external/v8/src/
H A Dscopes.cc102 Scope::Scope(Scope* outer_scope, ScopeType type) argument
114 SetDefaults(type, outer_scope, Handle<ScopeInfo>::null());
118 ASSERT_EQ(type == GLOBAL_SCOPE, outer_scope == NULL);
171 Scope* outer_scope,
173 outer_scope_ = outer_scope;
185 language_mode_ = (outer_scope != NULL)
186 ? outer_scope->language_mode_ : CLASSIC_MODE;
216 for (Scope* s = innermost_scope; s != NULL; s = s->outer_scope()) {
258 !top->outer_scope()->already_resolved()) {
259 top = top->outer_scope();
170 SetDefaults(ScopeType type, Scope* outer_scope, Handle<ScopeInfo> scope_info) argument
[all...]
H A Dscopes.h90 Scope(Scope* outer_scope, ScopeType type);
341 Scope* outer_scope() const { return outer_scope_; } function in class:v8::internal::Scope
604 Scope* outer_scope,
H A Dliveedit.cc854 Scope* outer_scope = scope->outer_scope(); local
855 if (outer_scope == NULL) {
859 ZoneList<Variable*> stack_list(outer_scope->StackLocalCount());
860 ZoneList<Variable*> context_list(outer_scope->ContextLocalCount());
861 outer_scope->CollectStackAndContextLocals(&stack_list, &context_list);
880 outer_scope = outer_scope->outer_scope();
881 } while (outer_scope !
[all...]
H A Dd8.cc1083 HandleScope outer_scope; local
1131 HandleScope outer_scope; local
H A Dparser.cc4486 top_scope_->outer_scope()->is_global_scope() &&
/external/v8/test/cctest/
H A Dtest-heap.cc1346 v8::HandleScope outer_scope; local
1383 v8::HandleScope outer_scope; local
1418 v8::HandleScope outer_scope; local
1453 v8::HandleScope outer_scope; local
1497 v8::HandleScope outer_scope;
1605 v8::HandleScope outer_scope;
1651 v8::HandleScope outer_scope;
/external/protobuf/src/google/protobuf/
H A Ddescriptor.cc3258 string outer_scope; local
3260 outer_scope = file_->package();
3262 outer_scope = parent->containing_type()->full_name();
3265 if (outer_scope.empty()) {
3266 outer_scope = "the global scope";
3268 outer_scope = "\"" + outer_scope + "\"";
3276 + outer_scope + ", not just within \"" + parent->name() + "\".");
/external/v8/src/arm/
H A Dfull-codegen-arm.cc1217 s = s->outer_scope();
1258 for (Scope* s = scope(); s != var->scope(); s = s->outer_scope()) {
/external/v8/src/ia32/
H A Dfull-codegen-ia32.cc1171 s = s->outer_scope();
1213 for (Scope* s = scope(); s != var->scope(); s = s->outer_scope()) {
/external/v8/src/mips/
H A Dfull-codegen-mips.cc1225 s = s->outer_scope();
1264 for (Scope* s = scope(); s != var->scope(); s = s->outer_scope()) {
/external/v8/src/x64/
H A Dfull-codegen-x64.cc1125 s = s->outer_scope();
1168 for (Scope* s = scope(); s != var->scope(); s = s->outer_scope()) {

Completed in 278 milliseconds