Searched refs:IfStatement (Results 1 – 7 of 7) sorted by relevance
74 IfStatement* ret = new IfStatement(new Comparison( in BreakOnStatusNotOk()82 IfStatement* ret = new IfStatement(new Comparison( in GotoErrorOnBadStatus()90 IfStatement* ret = new IfStatement(new Comparison(new LiteralExpression(kAndroidStatusVarName), in ReturnOnStatusNotOk()363 IfStatement* exception_check = new IfStatement( in DefineClientTransaction()546 IfStatement* interface_check = new IfStatement( in HandleServerTransaction()610 IfStatement* exception_check = new IfStatement( in HandleServerTransaction()737 IfStatement* null_check = new IfStatement( in BuildServerSource()
239 struct IfStatement : public Statement { struct242 std::shared_ptr<IfStatement> elseif = nullptr; argument244 IfStatement() = default;245 virtual ~IfStatement() = default;
229 IfStatement s(new LiteralExpression("foo")); in TEST_F()234 IfStatement s2(new LiteralExpression("bar")); in TEST_F()
297 class IfStatement : public AstNode {299 explicit IfStatement(AstNode* expression,301 virtual ~IfStatement() = default;
372 IfStatement::IfStatement(AstNode* expression, bool invert_expression) in IfStatement() function in android::aidl::cpp::IfStatement376 void IfStatement::Write(CodeWriter* to) const { in Write()
265 auto ifstatement = std::make_shared<IfStatement>(); in make_as_interface()287 auto instOfStatement = std::make_shared<IfStatement>(); in make_as_interface()359 auto lencheck = std::make_shared<IfStatement>(); in generate_new_array()363 lencheck->elseif = std::make_shared<IfStatement>(); in generate_new_array()639 auto checklen = std::make_shared<IfStatement>(); in generate_proxy_method()644 checklen->elseif = std::make_shared<IfStatement>(); in generate_proxy_method()
264 void IfStatement::Write(CodeWriter* to) const { in Write()