Home
last modified time | relevance | path

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

/external/python/pyasn1/pyasn1/type/
Dtag.py108 def __and__(self, otherTag): argument
109 return self.__class__(self.__tagClass & otherTag.tagClass,
110 self.__tagFormat & otherTag.tagFormat,
111 self.__tagId & otherTag.tagId)
113 def __or__(self, otherTag): argument
114 return self.__class__(self.__tagClass | otherTag.tagClass,
115 self.__tagFormat | otherTag.tagFormat,
116 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()