Searched refs:SCRIPT_SCOPE (Results 1 – 9 of 9) sorted by relevance
/external/v8/src/debug/ |
D | debug-scopes.cc | 92 if (scope_info->scope_type() == SCRIPT_SCOPE) { in ScopeIterator() 190 SCRIPT_SCOPE); in Next() 224 case SCRIPT_SCOPE: in Type()
|
/external/v8/src/ast/ |
D | scopeinfo.cc | 68 DCHECK(context_global_count == 0 || scope->scope_type() == SCRIPT_SCOPE); in Create() 220 int flags = ScopeTypeField::encode(SCRIPT_SCOPE) | in CreateGlobalThisBinding()
|
D | scopes.cc | 102 DCHECK(scope_type == SCRIPT_SCOPE || outer_scope != NULL); in Scope() 227 current_scope = new (zone) Scope(zone, current_scope, SCRIPT_SCOPE, in DeserializeScopeChain() 836 case SCRIPT_SCOPE: return "global"; in Header()
|
D | scopes.h | 325 bool is_script_scope() const { return scope_type_ == SCRIPT_SCOPE; } in is_script_scope()
|
/external/v8/src/ |
D | globals.h | 844 SCRIPT_SCOPE, // The top-level scope for a script or a top-level eval. enumerator
|
/external/v8/src/parsing/ |
D | preparser.h | 1038 Scope* scope = NewScope(scope_, SCRIPT_SCOPE);
|
D | preparser.cc | 112 Scope* top_scope = NewScope(scope_, SCRIPT_SCOPE); in PreParseLazyFunction()
|
D | parser.cc | 915 Scope* scope = NewScope(scope_, SCRIPT_SCOPE); in DoParseProgram() 1076 Scope* scope = NewScope(scope_, SCRIPT_SCOPE); in ParseLazy()
|
/external/v8/test/cctest/ |
D | test-parsing.cc | 3345 new (&zone) i::Scope(&zone, NULL, i::SCRIPT_SCOPE, &avf); in TEST() 3393 new (&zone) i::Scope(&zone, NULL, i::SCRIPT_SCOPE, &avf); in TEST()
|