Home
last modified time | relevance | path

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

/system/tools/aidl/
Dgenerate_cpp.cpp73 IfStatement* ret = new IfStatement(new Comparison( in BreakOnStatusNotOk()
81 IfStatement* ret = new IfStatement(new Comparison( in GotoErrorOnBadStatus()
89 IfStatement* ret = new IfStatement(new Comparison(new LiteralExpression(kAndroidStatusVarName), in ReturnOnStatusNotOk()
339 IfStatement* exception_check = new IfStatement( in DefineClientTransaction()
504 IfStatement* interface_check = new IfStatement( in HandleServerTransaction()
577 IfStatement* exception_check = new IfStatement( in HandleServerTransaction()
685 IfStatement* null_check = new IfStatement( in BuildServerSource()
Dast_java.h243 struct IfStatement : public Statement { struct
246 IfStatement* elseif = nullptr; argument
248 IfStatement() = default;
249 virtual ~IfStatement() = default;
Dast_cpp.h318 class IfStatement : public AstNode {
320 explicit IfStatement(AstNode* expression,
322 virtual ~IfStatement() = default;
333 DISALLOW_COPY_AND_ASSIGN(IfStatement);
Dast_cpp_unittest.cpp213 IfStatement s(new LiteralExpression("foo")); in TEST_F()
218 IfStatement s2(new LiteralExpression("bar")); in TEST_F()
Dgenerate_java_binder.cpp270 IfStatement* ifstatement = new IfStatement(); in make_as_interface()
294 IfStatement* instOfStatement = new IfStatement(); in make_as_interface()
362 IfStatement* lencheck = new IfStatement(); in generate_new_array()
365 lencheck->elseif = new IfStatement(); in generate_new_array()
651 IfStatement* checklen = new IfStatement(); in generate_proxy_method()
655 checklen->elseif = new IfStatement(); in generate_proxy_method()
Dast_cpp.cpp366 IfStatement::IfStatement(AstNode* expression, bool invert_expression) in IfStatement() function in android::aidl::cpp::IfStatement
370 void IfStatement::Write(CodeWriter* to) const { in Write()
Dast_java.cpp289 void IfStatement::Write(CodeWriter* to) const { in Write()