Home | History | Annotate | Download | only in TableGen

Lines Matching refs:Operator

154     bool operator!=(const TypeSet &RHS) const { return TypeVec != RHS.TypeVec; }
155 bool operator==(const TypeSet &RHS) const { return TypeVec == RHS.TypeVec; }
297 bool operator==(const TreePredicateFn &RHS) const {
301 bool operator!=(const TreePredicateFn &RHS) const { return !(*this == RHS); }
328 /// Operator - The Record for the operator if this is an interior node (not
330 Record *Operator;
352 : Operator(Op), Val(nullptr), TransformFn(nullptr), Children(Ch) {
356 : Operator(nullptr), Val(val), TransformFn(nullptr) {
388 Record *getOperator() const { assert(!isLeaf()); return Operator; }
518 inline raw_ostream &operator<<(raw_ostream &OS, const TreePatternNode &TPN) {