Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/Parse/
H A DParseStmt.cpp647 StmtResult Parser::ParseCaseStatement(bool MissingCase, ExprResult Expr) { in ParseCaseStatement() argument
648 assert((MissingCase || Tok.is(tok::kw_case)) && "Not a case stmt!"); in ParseCaseStatement()
676 SourceLocation CaseLoc = MissingCase ? Expr.get()->getExprLoc() : in ParseCaseStatement()
692 if (!MissingCase) { in ParseCaseStatement()
702 MissingCase = false; in ParseCaseStatement()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Parse/
H A DParser.h1885 StmtResult ParseCaseStatement(bool MissingCase = false,