Lines Matching refs:Other
147 /// unlinkNode - Unlink the specified node from this chain. If Other == this,
148 /// we unlink the next pointer and return it. Otherwise we unlink Other from
150 Matcher *unlinkNode(Matcher *Other);
152 /// canMoveBefore - Return true if this matcher is the same as Other, or if
153 /// we can move this matcher past all of the nodes in-between Other and this
154 /// node. Other must be equal to or before this.
155 bool canMoveBefore(const Matcher *Other) const;
159 bool canMoveBeforeNode(const Matcher *Other) const;
163 bool isContradictory(const Matcher *Other) const {
167 // the CheckOpcode method, not the other way around.
168 if (getKind() < Other->getKind())
169 return isContradictoryImpl(Other);
170 return Other->isContradictoryImpl(this);