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

/external/clang/include/clang/ASTMatchers/
H A DASTMatchers.h824 const internal::VariadicDynCastAllOfMatcher<Stmt, IfStmt> ifStmt;
2347 IfStmt, ForStmt, WhileStmt, DoStmt, ConditionalOperator),
2408 AST_MATCHER_P(IfStmt, hasConditionVariableStatement,
2345 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.cpp824 IfStmt::IfStmt(ASTContext &C, SourceLocation IL, VarDecl *var, Expr *cond, function in class:IfStmt
834 VarDecl *IfStmt::getConditionVariable() const {
842 void IfStmt::setConditionVariable(ASTContext &C, VarDecl *V) {
/external/clang/include/clang/AST/
H A DStmt.h842 /// IfStmt - This represents an if/then/else.
844 class IfStmt : public Stmt { class in namespace:clang
852 IfStmt(ASTContext &C, SourceLocation IL, VarDecl *var, Expr *cond,
856 explicit IfStmt(EmptyShell Empty) : Stmt(IfStmtClass, Empty) { } function in class:clang::IfStmt
869 /// If this IfStmt has a condition variable, return the faux DeclStmt

Completed in 96 milliseconds