Searched refs:SwitchStatement (Results 1 – 7 of 7) sorted by relevance
336 SwitchStatement::SwitchStatement(const std::string& expression) in SwitchStatement() function in android::aidl::cpp::SwitchStatement339 StatementBlock* SwitchStatement::AddCase(const string& value_expression) { in AddCase()351 void SwitchStatement::Write(CodeWriter* to) const { in Write()
283 struct SwitchStatement : public Statement { struct287 explicit SwitchStatement(std::shared_ptr<Expression> expression); argument288 virtual ~SwitchStatement() = default;
257 class SwitchStatement : public AstNode {259 explicit SwitchStatement(const std::string& expression);260 virtual ~SwitchStatement() = default;
317 SwitchStatement::SwitchStatement(std::shared_ptr<Expression> e) : expression(e) {} in SwitchStatement() function in android::aidl::java::SwitchStatement319 void SwitchStatement::Write(CodeWriter* to) const { in Write()
84 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()
290 SwitchStatement s("var"); in TEST_F()
761 SwitchStatement* s = new SwitchStatement{kCodeVarName}; in BuildServerSource()