Lines Matching refs:CurScope
79 Actions.CurScope = nullptr; in Parser()
377 Actions.CurScope = N; in EnterScope()
379 Actions.CurScope = new Scope(getCurScope(), ScopeFlags, Diags); in EnterScope()
392 Actions.CurScope = OldScope->getParent(); in ExitScope()
404 : CurScope(ManageFlags ? Self->getCurScope() : nullptr) { in ParseScopeFlags()
405 if (CurScope) { in ParseScopeFlags()
406 OldFlags = CurScope->getFlags(); in ParseScopeFlags()
407 CurScope->setFlags(ScopeFlags); in ParseScopeFlags()
414 if (CurScope) in ~ParseScopeFlags()
415 CurScope->setFlags(OldFlags); in ~ParseScopeFlags()
426 Actions.CurScope = nullptr; in ~Parser()