Home
last modified time | relevance | path

Searched refs:ContinueScope (Results 1 – 5 of 5) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DScope.cpp69 if (flags & ContinueScope) ContinueParent = this; in setFlags()
113 assert((FlagsToSet & ~(BreakScope | ContinueScope)) == 0 && in AddFlags()
119 if (FlagsToSet & ContinueScope) { in AddFlags()
120 assert((Flags & ContinueScope) == 0 && "Already set"); in AddFlags()
205 {ContinueScope, "ContinueScope"}, in dumpImpl()
H A DSemaExpr.cpp14746 ? Scope::ControlScope | Scope::ContinueScope | Scope::BreakScope in DiagnoseCommaOperator()
14747 : Scope::ContinueScope | Scope::BreakScope; in DiagnoseCommaOperator()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DScope.h56 ContinueScope = 0x04, enumerator
510 return getFlags() & ScopeFlags::ContinueScope; in isContinueScope()
/freebsd-14.2/contrib/llvm-project/clang/lib/Parse/
H A DParseStmt.cpp1822 ScopeFlags = Scope::BreakScope | Scope::ContinueScope | in ParseWhileStatement()
1825 ScopeFlags = Scope::BreakScope | Scope::ContinueScope; in ParseWhileStatement()
1878 ScopeFlags = Scope::BreakScope | Scope::ContinueScope | Scope::DeclScope; in ParseDoStatement()
1880 ScopeFlags = Scope::BreakScope | Scope::ContinueScope; in ParseDoStatement()
2229 getCurScope()->AddFlags(Scope::BreakScope | Scope::ContinueScope); in ParseForStatement()
2245 getCurScope()->AddFlags(Scope::BreakScope | Scope::ContinueScope); in ParseForStatement()
H A DParseExprCXX.cpp2039 S->AddFlags(Scope::BreakScope | Scope::ContinueScope); in ParseCXXCondition()