Home | History | Annotate | Download | only in TableGen

Lines Matching refs:Operator

143     bool operator!=(const TypeSet &RHS) const { return TypeVec != RHS.TypeVec; }
144 bool operator==(const TypeSet &RHS) const { return TypeVec == RHS.TypeVec; }
277 bool operator==(const TreePredicateFn &RHS) const {
281 bool operator!=(const TreePredicateFn &RHS) const { return !(*this == RHS); }
308 /// Operator - The Record for the operator if this is an interior node (not
310 Record *Operator;
332 : Operator(Op), Val(nullptr), TransformFn(nullptr), Children(Ch) {
336 : Operator(nullptr), Val(val), TransformFn(nullptr) {
368 Record *getOperator() const { assert(!isLeaf()); return Operator; }
498 inline raw_ostream &operator<<(raw_ostream &OS, const TreePatternNode &TPN) {