Searched refs:SwitchStatement (Results 1 – 7 of 7) sorted by relevance
268 class SwitchStatement : public AstNode {270 explicit SwitchStatement(const std::string& expression);271 virtual ~SwitchStatement() = default;286 DISALLOW_COPY_AND_ASSIGN(SwitchStatement);
287 struct SwitchStatement : public Statement { struct291 explicit SwitchStatement(Expression* expression); argument292 virtual ~SwitchStatement() = default;
307 SwitchStatement::SwitchStatement(const std::string& expression) in SwitchStatement() function in android::aidl::cpp::SwitchStatement310 StatementBlock* SwitchStatement::AddCase(const string& value_expression) { in AddCase()322 void SwitchStatement::Write(CodeWriter* to) const { in Write()
339 SwitchStatement::SwitchStatement(Expression* e) : expression(e) {} in SwitchStatement() function in android::aidl::java::SwitchStatement341 void SwitchStatement::Write(CodeWriter* to) const { in Write()
224 SwitchStatement s("var"); in TEST_F()
81 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()
657 SwitchStatement* s = new SwitchStatement{kCodeVarName}; in BuildServerSource()