Searched refs:SwitchStatement (Results 1 – 7 of 7) sorted by relevance
313 SwitchStatement::SwitchStatement(const std::string& expression) in SwitchStatement() function in android::aidl::cpp::SwitchStatement316 StatementBlock* SwitchStatement::AddCase(const string& value_expression) { in AddCase()328 void SwitchStatement::Write(CodeWriter* to) const { in Write()
253 class SwitchStatement : public AstNode {255 explicit SwitchStatement(const std::string& expression);256 virtual ~SwitchStatement() = default;
283 struct SwitchStatement : public Statement { struct287 explicit SwitchStatement(std::shared_ptr<Expression> expression); argument288 virtual ~SwitchStatement() = default;
314 SwitchStatement::SwitchStatement(std::shared_ptr<Expression> e) : expression(e) {} in SwitchStatement() function in android::aidl::java::SwitchStatement316 void SwitchStatement::Write(CodeWriter* to) const { in Write()
240 SwitchStatement s("var"); in TEST_F()
83 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()
709 SwitchStatement* s = new SwitchStatement{kCodeVarName}; in BuildServerSource()