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

/external/v8/src/ast/
H A Dscopes.cc85 Scope::Scope(Zone* zone, Scope* outer_scope, ScopeType scope_type, argument
99 SetDefaults(scope_type, outer_scope, Handle<ScopeInfo>::null(),
102 DCHECK(scope_type == SCRIPT_SCOPE || outer_scope != NULL);
155 void Scope::SetDefaults(ScopeType scope_type, Scope* outer_scope, argument
158 outer_scope_ = outer_scope;
176 asm_function_ = outer_scope != NULL && outer_scope->asm_module_;
181 : (outer_scope != NULL ? outer_scope->language_mode_ : SLOPPY);
186 force_context_allocation_ = (outer_scope !
[all...]
H A Dscopes.h91 Scope(Zone* zone, Scope* outer_scope, ScopeType scope_type,
115 // Inserts outer_scope into this scope's scope chain (and removes this
118 void ReplaceOuterScope(Scope* outer_scope);
488 Scope* outer_scope() const { return outer_scope_; } function in class:v8::internal::Scope
809 void SetDefaults(ScopeType type, Scope* outer_scope,
/external/v8/test/unittests/compiler/
H A Dzone-pool-unittest.cc126 ZonePool::Scope outer_scope(zone_pool());
130 size_t bytes = Allocate(outer_scope.zone());
/external/v8/src/parsing/
H A Dpattern-rewriter.cc397 // TODO(littledan): Remove the outer_scope parameter of
407 if (scope()->outer_scope()->is_arrow_scope() && scope()->is_block_scope()) {
409 scope()->outer_scope()->outer_scope(),
413 scope()->outer_scope(), scope());
H A Dparser.cc5097 Scope* function_scope = inner_scope->outer_scope();
/external/v8/src/
H A Dmessages.cc280 HandleScope outer_scope(isolate_);
303 if (!result.is_null()) return outer_scope.CloseAndEscape(result);
H A Djson-parser.cc37 HandleScope outer_scope(isolate_);
77 return outer_scope.CloseAndEscape(result);
H A Dd8.cc1476 HandleScope outer_scope(isolate);
/external/v8/test/cctest/heap/
H A Dtest-heap.cc137 HandleScope outer_scope(isolate);
2410 v8::HandleScope outer_scope(isolate);
2459 v8::HandleScope outer_scope(isolate);
2506 v8::HandleScope outer_scope(isolate);
2553 v8::HandleScope outer_scope(isolate);
2610 v8::HandleScope outer_scope(CcTest::isolate());
2674 v8::HandleScope outer_scope(CcTest::isolate());
2718 v8::HandleScope outer_scope(CcTest::isolate());
4742 HandleScope outer_scope(heap->isolate());
4787 HandleScope outer_scope(hea
[all...]
/external/protobuf/src/google/protobuf/
H A Ddescriptor.cc3991 string outer_scope; local
3993 outer_scope = file_->package();
3995 outer_scope = parent->containing_type()->full_name();
3998 if (outer_scope.empty()) {
3999 outer_scope = "the global scope";
4001 outer_scope = "\"" + outer_scope + "\"";
4009 + outer_scope + ", not just within \"" + parent->name() + "\".");
/external/v8/test/cctest/
H A Dtest-parsing.cc5885 i::Scope* outer_scope = module_scope->outer_scope(); local
5886 CHECK(outer_scope->is_script_scope());
5887 CHECK_NULL(outer_scope->outer_scope());
H A Dtest-strings.cc648 HandleScope outer_scope(isolate);
H A Dtest-api.cc22814 HandleScope outer_scope(CcTest::isolate());
/external/v8/src/crankshaft/
H A Dhydrogen.cc4857 Scope* outer_scope = scope(); local
4859 BreakAndContinueInfo break_info(stmt, outer_scope);
4891 set_scope(outer_scope);
5023 Scope* outer_scope = NULL; local
5028 &outer_scope, &drop_extra);
5031 int context_pop_count = inner_scope->ContextChainLength(outer_scope);
5056 Scope* outer_scope = NULL; local
5061 &outer_scope, &drop_extra);
5064 int context_pop_count = inner_scope->ContextChainLength(outer_scope);
/external/v8/src/full-codegen/arm64/
H A Dfull-codegen-arm64.cc1197 s = s->outer_scope();
1230 for (Scope* s = scope(); s != var->scope(); s = s->outer_scope()) {
/external/v8/src/full-codegen/ia32/
H A Dfull-codegen-ia32.cc1132 s = s->outer_scope();
1168 for (Scope* s = scope(); s != var->scope(); s = s->outer_scope()) {
/external/v8/src/full-codegen/x64/
H A Dfull-codegen-x64.cc1161 s = s->outer_scope();
1198 for (Scope* s = scope(); s != var->scope(); s = s->outer_scope()) {
/external/v8/src/full-codegen/x87/
H A Dfull-codegen-x87.cc1124 s = s->outer_scope();
1160 for (Scope* s = scope(); s != var->scope(); s = s->outer_scope()) {
/external/v8/src/debug/
H A Dliveedit.cc2062 current_scope = current_scope->outer_scope();
/external/v8/src/compiler/
H A Dast-graph-builder.cc3157 for (Scope* s = current_scope(); s != nullptr; s = s->outer_scope()) {
3175 for (Scope* s = current_scope(); s != nullptr; s = s->outer_scope()) {
/external/v8/src/full-codegen/arm/
H A Dfull-codegen-arm.cc1209 s = s->outer_scope();
1245 for (Scope* s = scope(); s != var->scope(); s = s->outer_scope()) {
/external/v8/src/full-codegen/mips/
H A Dfull-codegen-mips.cc1203 s = s->outer_scope();
1238 for (Scope* s = scope(); s != var->scope(); s = s->outer_scope()) {
/external/v8/src/full-codegen/mips64/
H A Dfull-codegen-mips64.cc1204 s = s->outer_scope();
1239 for (Scope* s = scope(); s != var->scope(); s = s->outer_scope()) {
/external/v8/src/full-codegen/ppc/
H A Dfull-codegen-ppc.cc1171 s = s->outer_scope();
1207 for (Scope* s = scope(); s != var->scope(); s = s->outer_scope()) {
/external/v8/src/full-codegen/s390/
H A Dfull-codegen-s390.cc1139 s = s->outer_scope();
1173 for (Scope* s = scope(); s != var->scope(); s = s->outer_scope()) {

Completed in 829 milliseconds