Lines Matching refs:inner_scope
463 // inner_scope() and sibling() together implement the inner scope list of a
466 Scope* inner_scope() const { return inner_scope_; }
612 bool RemoveInnerScope(Scope* inner_scope) {
613 DCHECK_NOT_NULL(inner_scope);
614 if (inner_scope == inner_scope_) {
620 if (scope->sibling_ == inner_scope) {
740 void AddInnerScope(Scope* inner_scope) {
741 inner_scope->sibling_ = inner_scope_;
742 inner_scope_ = inner_scope;
743 inner_scope->outer_scope_ = this;