Home | History | Annotate | Download | only in aidl

Lines Matching refs:StatementBlock

197 void StatementBlock::AddStatement(unique_ptr<AstNode> statement) {
201 void StatementBlock::AddStatement(AstNode* statement) {
205 void StatementBlock::AddLiteral(const std::string& expression_str,
215 void StatementBlock::Write(CodeWriter* to) const {
262 StatementBlock* MethodImpl::GetStatementBlock() {
276 StatementBlock* SwitchStatement::AddCase(const string& value_expression) {
282 StatementBlock* ret = new StatementBlock();
284 case_logic_.push_back(unique_ptr<StatementBlock>{ret});
292 const unique_ptr<StatementBlock>& statements = case_logic_[i];