Home | History | Annotate | Download | only in aidl

Lines Matching refs:StatementBlock

176 class StatementBlock : public Declaration {
178 StatementBlock() = default;
179 virtual ~StatementBlock() = default;
191 DISALLOW_COPY_AND_ASSIGN(StatementBlock);
192 }; // class StatementBlock
207 StatementBlock body_;
224 StatementBlock* GetStatementBlock();
232 StatementBlock statements_;
248 StatementBlock* AddCase(const std::string& value_expression);
254 std::vector<std::unique_ptr<StatementBlock>> case_logic_;
293 StatementBlock* OnTrue() { return &on_true_; }
294 StatementBlock* OnFalse() { return &on_false_; }
300 StatementBlock on_true_;
301 StatementBlock on_false_;