Home
last modified time | relevance | path

Searched refs:sibling_ (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/ast/
Dscopes.h331 Scope* sibling() const { return sibling_; } in NON_EXPORTED_BASE()
450 Scope* sibling_; // a sibling inner scope of the outer scope of this scope. in NON_EXPORTED_BASE() local
560 inner_scope->sibling_ = inner_scope_; in NON_EXPORTED_BASE()
568 inner_scope_ = inner_scope_->sibling_; in NON_EXPORTED_BASE()
572 scope = scope->sibling_) { in NON_EXPORTED_BASE()
573 if (scope->sibling_ == inner_scope) { in NON_EXPORTED_BASE()
574 scope->sibling_ = scope->sibling_->sibling_; in NON_EXPORTED_BASE()
Dscopes.cc276 sibling_ = nullptr; in SetDefaults()
314 for (Scope* inner = inner_scope_; inner != nullptr; inner = inner->sibling_) { in set_asm_module()
683 while (scope->sibling_ != nullptr) { in FinalizeBlockScope()
684 scope = scope->sibling_; in FinalizeBlockScope()
687 scope->sibling_ = outer_scope()->inner_scope_; in FinalizeBlockScope()
737 Scope* inner_scope = new_parent->sibling_; in Reparent()
746 new_parent->inner_scope_ = new_parent->sibling_; in Reparent()
747 inner_scope->sibling_ = nullptr; in Reparent()
750 new_parent->sibling_ = top_inner_scope_; in Reparent()
1205 for (Scope* scope = inner_scope_; scope != nullptr; scope = scope->sibling_) { in MaxNestedContextChainLength()
[all …]