Home | History | Annotate | Download | only in TableGen

Lines Matching refs:Operator

139     bool operator!=(const TypeSet &RHS) const { return TypeVec != RHS.TypeVec; }
140 bool operator==(const TypeSet &RHS) const { return TypeVec == RHS.TypeVec; }
273 bool operator==(const TreePredicateFn &RHS) const {
277 bool operator!=(const TreePredicateFn &RHS) const { return !(*this == RHS); }
304 /// Operator - The Record for the operator if this is an interior node (not
306 Record *Operator;
328 : Operator(Op), Val(0), TransformFn(0), Children(Ch) {
332 : Operator(0), Val(val), TransformFn(0) {
363 Record *getOperator() const { assert(!isLeaf()); return Operator; }
487 inline raw_ostream &operator<<(raw_ostream &OS, const TreePatternNode &TPN) {