Searched refs:otherTag (Results 1 – 2 of 2) sorted by relevance
108 def __and__(self, otherTag): argument109 return self.__class__(self.__tagClass & otherTag.tagClass,110 self.__tagFormat & otherTag.tagFormat,111 self.__tagId & otherTag.tagId)113 def __or__(self, otherTag): argument114 return self.__class__(self.__tagClass | otherTag.tagClass,115 self.__tagFormat | otherTag.tagFormat,116 self.__tagId | otherTag.tagId)
110 int otherTag = otherConstant.getTag(); in compareTo() local112 if (thisTag != otherTag) in compareTo()114 return PRIORITIES[thisTag] < PRIORITIES[otherTag] ? -1 : 1; in compareTo()