HomeSort by relevance Sort by last modified time
    Searched refs:outer_scope (Results 1 - 17 of 17) sorted by null

  /external/v8/src/ast/
scopes.cc 140 Scope::Scope(Zone* zone, Scope* outer_scope, ScopeType scope_type)
142 outer_scope_(outer_scope),
147 set_language_mode(outer_scope->language_mode());
149 !is_function_scope() && outer_scope->has_forced_context_allocation();
174 DeclarationScope::DeclarationScope(Zone* zone, Scope* outer_scope,
177 : Scope(zone, outer_scope, scope_type),
380 Scope* outer_scope = nullptr; local
384 outer_scope = new (zone) Scope(zone, WITH_SCOPE, handle(scope_info));
389 outer_scope->set_is_debug_evaluate_scope();
401 outer_scope
521 Scope* outer_scope = decl_scope->outer_scope(); local
1275 MaybeHandle<ScopeInfo> outer_scope; local
    [all...]
scopes.h 94 Scope(Zone* zone, Scope* outer_scope, ScopeType scope_type);
144 // Inserts outer_scope into this scope's scope chain (and removes this
147 void ReplaceOuterScope(Scope* outer_scope);
240 for (Scope* scope = outer_scope(); scope != nullptr;
241 scope = scope->outer_scope()) {
358 Scope* outer_scope() const { return outer_scope_; } function in class:v8::internal::Scope
589 MaybeHandle<ScopeInfo> outer_scope);
591 MaybeHandle<ScopeInfo> outer_scope);
616 DeclarationScope(Zone* zone, Scope* outer_scope, ScopeType scope_type,
    [all...]
  /external/v8/src/parsing/
parameter-initializer-rewriter.cc 66 if (param_scope_->outer_scope()->RemoveUnresolved(proxy)) {
106 DCHECK(param_scope->outer_scope()->is_function_scope());
pattern-rewriter.cc 147 outer_function_scope = descriptor_->scope->outer_scope();
335 DCHECK(scope()->outer_scope()->is_function_scope());
parser.cc     [all...]
parser-base.h     [all...]
  /external/v8/src/objects/
scope-info.h 194 MaybeHandle<ScopeInfo> outer_scope);
196 Isolate* isolate, MaybeHandle<ScopeInfo> outer_scope);
scope-info.cc 62 MaybeHandle<ScopeInfo> outer_scope) {
134 const bool has_outer_scope_info = !outer_scope.is_null();
271 scope_info->set(index++, *outer_scope.ToHandleChecked());
294 Isolate* isolate, MaybeHandle<ScopeInfo> outer_scope) {
295 const bool has_outer_scope_info = !outer_scope.is_null();
326 scope_info->set(index++, *outer_scope.ToHandleChecked());
    [all...]
  /external/v8/src/
compiler.cc 422 Scope* outer_scope = info->scope()->GetOuterScopeWithContext(); local
423 if (outer_scope) {
424 shared->set_outer_scope_info(*outer_scope->scope_info());
1847 Scope* outer_scope = literal->scope()->GetOuterScopeWithContext(); local
    [all...]
json-parser.cc 37 HandleScope outer_scope(isolate_);
77 return outer_scope.CloseAndEscape(result);
messages.cc 400 HandleScope outer_scope(isolate_);
423 if (!result.is_null()) return outer_scope.CloseAndEscape(result);
    [all...]
d8.cc 268 HandleScope outer_scope(isolate);
    [all...]
  /external/protobuf/src/google/protobuf/
descriptor.cc 4610 string outer_scope; local
    [all...]
  /external/v8/src/asmjs/
asm-wasm-builder.cc 171 info->zone(), decl->fun()->scope()->outer_scope(), FUNCTION_SCOPE);
174 decl->fun()->scope()->outer_scope()->RemoveInnerScope(new_func_scope);
    [all...]
  /external/v8/src/debug/
liveedit.cc     [all...]
  /external/v8/src/crankshaft/
hydrogen.cc 4235 Scope* outer_scope = scope(); local
4401 Scope* outer_scope = NULL; local
4434 Scope* outer_scope = NULL; local
    [all...]
  /external/v8/src/interpreter/
bytecode-generator.cc     [all...]

Completed in 1213 milliseconds