Searched defs:inner_scope (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/v8/src/
H A Dscopes.cc93 Scope::Scope(Scope* inner_scope, argument
117 AddInnerScope(inner_scope);
121 Scope::Scope(Scope* inner_scope, const AstRawString* catch_variable_name, argument
136 AddInnerScope(inner_scope);
1393 Scope* inner_scope = inner_scopes_.at(i); local
1394 inner_scope->AllocateModulesRecursively(host_scope);
H A Dscopes.h604 Scope(Scope* inner_scope, ScopeType type, Handle<ScopeInfo> scope_info,
608 Scope(Scope* inner_scope,
612 void AddInnerScope(Scope* inner_scope) { argument
613 if (inner_scope != NULL) {
614 inner_scopes_.Add(inner_scope, zone_);
615 inner_scope->outer_scope_ = this;
H A Dparser.cc2939 Scope* inner_scope, ZoneList<const AstRawString*>* names,
3013 scope_ = inner_scope;
3088 inner_scope->set_end_position(scanner()->location().end_pos);
3089 inner_block->set_scope(inner_scope);
3257 Scope* inner_scope = NULL; local
3259 inner_scope = NewScope(for_scope, BLOCK_SCOPE);
3260 inner_scope->set_start_position(scanner()->location().beg_pos);
3261 scope_ = inner_scope;
3282 result = DesugarLetBindingsInForStatement(inner_scope, &let_bindings, loop,
2938 DesugarLetBindingsInForStatement( Scope* inner_scope, ZoneList<const AstRawString*>* names, ForStatement* loop, Statement* init, Expression* cond, Statement* next, Statement* body, bool* ok) argument
H A Dhydrogen.cc4688 Scope* inner_scope = scope(); local
4695 int context_pop_count = inner_scope->ContextChainLength(outer_scope);
4720 Scope* inner_scope = scope(); local
4727 int context_pop_count = inner_scope->ContextChainLength(outer_scope);
/external/chromium_org/v8/test/cctest/
H A Dtest-parsing.cc1153 i::Scope* inner_scope = scope->inner_scopes()->at(0); local
1154 CHECK_EQ(inner_scope->scope_type(), source_data[i].scope_type);
1155 CHECK_EQ(inner_scope->start_position(), kPrefixLen);
1158 CHECK_EQ(inner_scope->end_position(), kPrefixLen + kInnerLen);
3165 i::Scope* inner_scope = scope->inner_scopes()->at(0); local
3168 i::Variable* var = inner_scope->Lookup(var_name);

Completed in 844 milliseconds