Home
last modified time | relevance | path

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

/system/tools/aidl/
Dast_cpp.h268 class SwitchStatement : public AstNode {
270 explicit SwitchStatement(const std::string& expression);
271 virtual ~SwitchStatement() = default;
286 DISALLOW_COPY_AND_ASSIGN(SwitchStatement);
Dast_java.h287 struct SwitchStatement : public Statement { struct
291 explicit SwitchStatement(Expression* expression); argument
292 virtual ~SwitchStatement() = default;
Dast_cpp.cpp307 SwitchStatement::SwitchStatement(const std::string& expression) in SwitchStatement() function in android::aidl::cpp::SwitchStatement
310 StatementBlock* SwitchStatement::AddCase(const string& value_expression) { in AddCase()
322 void SwitchStatement::Write(CodeWriter* to) const { in Write()
Dast_java.cpp339 SwitchStatement::SwitchStatement(Expression* e) : expression(e) {} in SwitchStatement() function in android::aidl::java::SwitchStatement
341 void SwitchStatement::Write(CodeWriter* to) const { in Write()
Dast_cpp_unittest.cpp224 SwitchStatement s("var"); in TEST_F()
Dgenerate_java_binder.cpp81 SwitchStatement* transact_switch;
83 SwitchStatement* code_to_method_name_switch;
164 this->code_to_method_name_switch = new SwitchStatement(code); in StubClass()
199 this->transact_switch = new SwitchStatement(this->transact_code); in StubClass()
Dgenerate_cpp.cpp657 SwitchStatement* s = new SwitchStatement{kCodeVarName}; in BuildServerSource()