Home
last modified time | relevance | path

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

/external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/type/
Dtag.py41 def __and__(self, otherTag): argument
42 (tagClass, tagFormat, tagId) = otherTag
46 def __or__(self, otherTag): argument
47 (tagClass, tagFormat, tagId) = otherTag
/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()