Home
last modified time | relevance | path

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

/system/tools/aidl/
Dast_cpp.cpp313 SwitchStatement::SwitchStatement(const std::string& expression) in SwitchStatement() function in android::aidl::cpp::SwitchStatement
316 StatementBlock* SwitchStatement::AddCase(const string& value_expression) { in AddCase()
328 void SwitchStatement::Write(CodeWriter* to) const { in Write()
Dast_cpp.h253 class SwitchStatement : public AstNode {
255 explicit SwitchStatement(const std::string& expression);
256 virtual ~SwitchStatement() = default;
Dast_java.h283 struct SwitchStatement : public Statement { struct
287 explicit SwitchStatement(std::shared_ptr<Expression> expression); argument
288 virtual ~SwitchStatement() = default;
Dast_java.cpp314 SwitchStatement::SwitchStatement(std::shared_ptr<Expression> e) : expression(e) {} in SwitchStatement() function in android::aidl::java::SwitchStatement
316 void SwitchStatement::Write(CodeWriter* to) const { in Write()
Dast_cpp_unittest.cpp240 SwitchStatement s("var"); in TEST_F()
Dgenerate_java_binder.cpp83 std::shared_ptr<SwitchStatement> transact_switch;
85 std::shared_ptr<SwitchStatement> code_to_method_name_switch;
160 this->code_to_method_name_switch = std::make_shared<SwitchStatement>(code); in StubClass()
196 this->transact_switch = std::make_shared<SwitchStatement>(this->transact_code); in StubClass()
Dgenerate_cpp.cpp709 SwitchStatement* s = new SwitchStatement{kCodeVarName}; in BuildServerSource()