Home | History | Annotate | Download | only in TableGen

Lines Matching refs:TreePredicateFn

268 /// TreePredicateFn - This is an abstraction that represents the predicates on
271 class TreePredicateFn {
276 /// TreePredicateFn constructor. Here 'N' is a subclass of PatFrag.
277 TreePredicateFn(TreePattern *N);
297 bool operator==(const TreePredicateFn &RHS) const {
301 bool operator!=(const TreePredicateFn &RHS) const { return !(*this == RHS); }
342 std::vector<TreePredicateFn> PredicateFns;
405 const std::vector<TreePredicateFn> &getPredicateFns() const {
409 void setPredicateFns(const std::vector<TreePredicateFn> &Fns) {
413 void addPredicateFn(const TreePredicateFn &Fn) {