Searched defs:if_statement (Results 1 – 13 of 13) sorted by relevance
113 struct if_statement struct115 expression condition;116 statement then;117 boost::optional<statement> else_;
112 struct if_statement struct114 expression condition;115 statement then;116 boost::optional<statement> else_;
29 qi::rule<Iterator, ast::if_statement(), ascii::space_type> if_statement; member
107 struct if_statement struct109 expression condition;110 statement then;111 boost::optional<statement> else_;
34 qi::rule<Iterator, ast::if_statement()> if_statement; member
123 struct if_statement struct125 expression condition;126 statement then;127 boost::optional<statement> else_;
29 qi::rule<Iterator, ast::if_statement(), skipper<Iterator> > if_statement; member
137 struct if_statement struct139 expression condition;140 statement then;141 boost::optional<statement> else_;
173 struct if_statement struct175 expression condition;176 statement then;177 boost::optional<statement> else_;
127 TEST_F(EdifyTest, if_statement) { in TEST_F() argument
579 auto if_statement = std::make_shared<IfStatement>(); in GenerateStubCode() local