Home
last modified time | relevance | path

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

/external/clang/lib/Parse/
DParseStmt.cpp1137 StmtResult ThenStmt(ParseStatement(&InnerStatementTrailingElseLoc)); in ParseIfStatement() local
1182 if ((ThenStmt.isInvalid() && ElseStmt.isInvalid()) || in ParseIfStatement()
1183 (ThenStmt.isInvalid() && ElseStmt.get() == nullptr) || in ParseIfStatement()
1184 (ThenStmt.get() == nullptr && ElseStmt.isInvalid())) { in ParseIfStatement()
1190 if (ThenStmt.isInvalid()) in ParseIfStatement()
1191 ThenStmt = Actions.ActOnNullStmt(ThenStmtLoc); in ParseIfStatement()
1195 return Actions.ActOnIfStmt(IfLoc, FullCondExp, CondVar, ThenStmt.get(), in ParseIfStatement()