Searched defs:outer_scope (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/v8/src/
H A Dscopes.h100 Scope(Scope* outer_scope, ScopeType scope_type, Zone* zone);
358 Scope* outer_scope() const { return outer_scope_; } function in class:v8::internal::Scope
639 Scope* outer_scope,
H A Dscopes.cc105 Scope::Scope(Scope* outer_scope, ScopeType scope_type, Zone* zone) argument
119 SetDefaults(scope_type, outer_scope, Handle<ScopeInfo>::null());
121 ASSERT(scope_type == GLOBAL_SCOPE || outer_scope != NULL);
179 Scope* outer_scope,
181 outer_scope_ = outer_scope;
193 language_mode_ = (outer_scope != NULL)
194 ? outer_scope->language_mode_ : CLASSIC_MODE;
198 force_context_allocation_ = (outer_scope != NULL && !is_function_scope())
199 ? outer_scope->has_forced_context_allocation() : false;
230 for (Scope* s = innermost_scope; s != NULL; s = s->outer_scope()) {
178 SetDefaults(ScopeType scope_type, Scope* outer_scope, Handle<ScopeInfo> scope_info) argument
[all...]
/external/v8/src/
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 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 Dd8.cc1083 HandleScope outer_scope; local
1131 HandleScope outer_scope; local
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...]
/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/chromium_org/third_party/protobuf/src/google/protobuf/
H A Ddescriptor.cc3654 string outer_scope; local
3656 outer_scope = file_->package();
3658 outer_scope = parent->containing_type()->full_name();
3661 if (outer_scope.empty()) {
3662 outer_scope = "the global scope";
3664 outer_scope = "\"" + outer_scope + "\"";
3672 + outer_scope + ", not just within \"" + parent->name() + "\".");
/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() + "\".");

Completed in 275 milliseconds