Searched refs:ifStmt (Results 1 – 8 of 8) sorted by relevance
672 IfStatementASTNode * ifStmt = new IfStatementASTNode();673 ifStmt->setConditionExpr(dynamic_cast<ExprASTNode*>($2));674 ifStmt->setIfStatements(dynamic_cast<ListASTNode*>($4));675 ifStmt->setElseStatements(dynamic_cast<ListASTNode*>($6));676 ifStmt->setLocation(@1, @6);677 $$ = ifStmt;
2148 IfStatementASTNode * ifStmt = new IfStatementASTNode(); local2149 ifStmt->setConditionExpr(dynamic_cast<ExprASTNode*>((yyvsp[-4].m_ast)));2150 ifStmt->setIfStatements(dynamic_cast<ListASTNode*>((yyvsp[-2].m_ast)));2151 ifStmt->setElseStatements(dynamic_cast<ListASTNode*>((yyvsp[0].m_ast)));2152 ifStmt->setLocation((yylsp[-5]), (yylsp[0]));2153 (yyval.m_ast) = ifStmt;
658 IfStatementASTNode * ifStmt = dynamic_cast<IfStatementASTNode*>(statement); in convertOneStatement() local659 if (ifStmt) in convertOneStatement()661 return convertIfStatement(ifStmt); in convertOneStatement()
273 ifStmt(allOf( in checkASTCodeBody()
553 stmt(anyOf(ifStmt(), switchStmt(), conditionalOperator(), AssertLikeM, in hasUnguardedAccess()
361 REGISTER_MATCHER(ifStmt); in RegistryMaps()
879 const internal::VariadicDynCastAllOfMatcher<Stmt, IfStmt> ifStmt; variable
2056 extern const internal::VariadicDynCastAllOfMatcher<Stmt, IfStmt> ifStmt;