Searched defs:IfStmt (Results 1 - 3 of 3) sorted by relevance

/external/clang/include/clang/ASTMatchers/
H A DASTMatchers.h890 const internal::VariadicDynCastAllOfMatcher<Stmt, IfStmt> ifStmt;
2372 IfStmt, ForStmt, WhileStmt, DoStmt, ConditionalOperator),
2386 AST_MATCHER_P(IfStmt, hasThen, internal::Matcher<Stmt>, InnerMatcher) {
2398 AST_MATCHER_P(IfStmt, hasElse, internal::Matcher<Stmt>, InnerMatcher) {
2447 AST_MATCHER_P(IfStmt, hasConditionVariableStatement,
2370 AST_POLYMORPHIC_MATCHER_P( hasCondition, AST_POLYMORPHIC_SUPPORTED_TYPES_5( IfStmt, ForStmt, WhileStmt, DoStmt, ConditionalOperator), internal::Matcher<Expr>, InnerMatcher) argument
/external/clang/lib/AST/
H A DStmt.cpp822 IfStmt::IfStmt(const ASTContext &C, SourceLocation IL, VarDecl *var, Expr *cond, function in class:IfStmt
832 VarDecl *IfStmt::getConditionVariable() const {
840 void IfStmt::setConditionVariable(const ASTContext &C, VarDecl *V) {
/external/clang/include/clang/AST/
H A DStmt.h865 /// IfStmt - This represents an if/then/else.
867 class IfStmt : public Stmt { class in namespace:clang
875 IfStmt(const ASTContext &C, SourceLocation IL, VarDecl *var, Expr *cond,
880 explicit IfStmt(EmptyShell Empty) : Stmt(IfStmtClass, Empty) { } function in class:clang::IfStmt
893 /// If this IfStmt has a condition variable, return the faux DeclStmt

Completed in 958 milliseconds