HomeSort by relevance Sort by last modified time
    Searched defs:inner_scope (Results 1 - 7 of 7) sorted by null

  /external/v8/src/debug/
debug-scopes.cc 585 Handle<JSObject> inner_scope = local
591 frame_inspector_->MaterializeStackLocals(inner_scope, scope_info);
599 CopyContextLocalsToScopeObject(CurrentScopeInfo(), context, inner_scope); local
600 CopyContextExtensionToScopeObject(context, inner_scope,
603 return inner_scope;
852 for (Scope* inner_scope = scope->inner_scope(); inner_scope != nullptr;
853 inner_scope = inner_scope->sibling())
    [all...]
  /external/v8/src/ast/
scopes.cc 650 Scope* sibling = parent->inner_scope();
737 Scope* inner_scope = new_parent->sibling_; local
738 if (inner_scope != top_inner_scope_) {
739 for (; inner_scope->sibling() != top_inner_scope_;
740 inner_scope = inner_scope->sibling()) {
741 inner_scope->outer_scope_ = new_parent;
742 DCHECK_NE(inner_scope, new_parent);
744 inner_scope->outer_scope_ = new_parent;
747 inner_scope->sibling_ = nullptr
    [all...]
scopes.h 327 // inner_scope() and sibling() together implement the inner scope list of a
330 Scope* inner_scope() const { return inner_scope_; } function in class:v8::internal::Scope
558 void AddInnerScope(Scope* inner_scope) {
559 DCHECK_EQ(!needs_migration_, inner_scope->zone() == zone());
560 inner_scope->sibling_ = inner_scope_;
561 inner_scope_ = inner_scope;
562 inner_scope->outer_scope_ = this;
565 void RemoveInnerScope(Scope* inner_scope) {
566 DCHECK_NOT_NULL(inner_scope);
567 if (inner_scope == inner_scope_)
    [all...]
  /external/v8/src/parsing/
preparser.h 1538 Scope* inner_scope = scope(); local
    [all...]
parser-base.h 5341 Scope* inner_scope = scope(); local
    [all...]
parser.cc 3180 DeclarationScope* inner_scope = function_scope; local
3654 Scope* inner_scope = inner_block->scope(); local
    [all...]
  /external/v8/src/crankshaft/
hydrogen.cc 4447 Scope* inner_scope = scope(); local
4480 Scope* inner_scope = scope(); local
    [all...]

Completed in 408 milliseconds