Home
last modified time | relevance | path

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

/external/clang/lib/Parse/
DParseStmt.cpp1123 StmtResult ThenStmt(ParseStatement(&InnerStatementTrailingElseLoc)); in ParseIfStatement() local
1168 if ((ThenStmt.isInvalid() && ElseStmt.isInvalid()) || in ParseIfStatement()
1169 (ThenStmt.isInvalid() && ElseStmt.get() == nullptr) || in ParseIfStatement()
1170 (ThenStmt.get() == nullptr && ElseStmt.isInvalid())) { in ParseIfStatement()
1176 if (ThenStmt.isInvalid()) in ParseIfStatement()
1177 ThenStmt = Actions.ActOnNullStmt(ThenStmtLoc); in ParseIfStatement()
1181 return Actions.ActOnIfStmt(IfLoc, FullCondExp, CondVar, ThenStmt.get(), in ParseIfStatement()