Home
last modified time | relevance | path

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

/system/tools/aidl/
Dast_cpp.cpp336 SwitchStatement::SwitchStatement(const std::string& expression) in SwitchStatement() function in android::aidl::cpp::SwitchStatement
339 StatementBlock* SwitchStatement::AddCase(const string& value_expression) { in AddCase()
351 void SwitchStatement::Write(CodeWriter* to) const { in Write()
Dast_java.h283 struct SwitchStatement : public Statement { struct
287 explicit SwitchStatement(std::shared_ptr<Expression> expression); argument
288 virtual ~SwitchStatement() = default;
Dast_cpp.h257 class SwitchStatement : public AstNode {
259 explicit SwitchStatement(const std::string& expression);
260 virtual ~SwitchStatement() = default;
Dast_java.cpp317 SwitchStatement::SwitchStatement(std::shared_ptr<Expression> e) : expression(e) {} in SwitchStatement() function in android::aidl::java::SwitchStatement
319 void SwitchStatement::Write(CodeWriter* to) const { in Write()
Dgenerate_java_binder.cpp84 std::shared_ptr<SwitchStatement> transact_switch_meta;
85 std::shared_ptr<SwitchStatement> transact_switch_user;
87 std::shared_ptr<SwitchStatement> code_to_method_name_switch;
162 this->code_to_method_name_switch = std::make_shared<SwitchStatement>(code); in StubClass()
198 this->transact_switch_meta = std::make_shared<SwitchStatement>(this->transact_code); in StubClass()
199 this->transact_switch_user = std::make_shared<SwitchStatement>(this->transact_code); in StubClass()
Dast_cpp_unittest.cpp290 SwitchStatement s("var"); in TEST_F()
Dgenerate_cpp.cpp761 SwitchStatement* s = new SwitchStatement{kCodeVarName}; in BuildServerSource()