Home
last modified time | relevance | path

Searched refs:IfStatement (Results 1 – 7 of 7) sorted by relevance

/system/tools/aidl/
Dgenerate_cpp.cpp74 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()
Dast_java.h239 struct IfStatement : public Statement { struct
242 std::shared_ptr<IfStatement> elseif = nullptr; argument
244 IfStatement() = default;
245 virtual ~IfStatement() = default;
Dast_cpp_unittest.cpp229 IfStatement s(new LiteralExpression("foo")); in TEST_F()
234 IfStatement s2(new LiteralExpression("bar")); in TEST_F()
Dast_cpp.h297 class IfStatement : public AstNode {
299 explicit IfStatement(AstNode* expression,
301 virtual ~IfStatement() = default;
Dast_cpp.cpp372 IfStatement::IfStatement(AstNode* expression, bool invert_expression) in IfStatement() function in android::aidl::cpp::IfStatement
376 void IfStatement::Write(CodeWriter* to) const { in Write()
Dgenerate_java_binder.cpp265 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()
Dast_java.cpp264 void IfStatement::Write(CodeWriter* to) const { in Write()