Home
last modified time | relevance | path

Searched refs:otherTag (Results 1 – 2 of 2) sorted by relevance

/external/python/pyasn1/pyasn1/type/
Dtag.py106 def __and__(self, otherTag): argument
107 return self.__class__(self.__tagClass & otherTag.tagClass,
108 self.__tagFormat & otherTag.tagFormat,
109 self.__tagId & otherTag.tagId)
111 def __or__(self, otherTag): argument
112 return self.__class__(self.__tagClass | otherTag.tagClass,
113 self.__tagFormat | otherTag.tagFormat,
114 self.__tagId | otherTag.tagId)
/external/proguard/src/proguard/classfile/editor/
DComparableConstant.java110 int otherTag = otherConstant.getTag(); in compareTo() local
112 if (thisTag != otherTag) in compareTo()
114 return PRIORITIES[thisTag] < PRIORITIES[otherTag] ? -1 : 1; in compareTo()