Searched refs:superTag (Results 1 – 1 of 1) sorted by relevance
/external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/type/ |
D | tag.py | 72 def __add__(self, superTag): argument 74 self.__baseTag, *self.__superTags + (superTag,) 76 def __radd__(self, superTag): argument 78 self.__baseTag, *(superTag,) + self.__superTags 81 def tagExplicitly(self, superTag): argument 82 tagClass, tagFormat, tagId = superTag 88 superTag = Tag(tagClass, tagFormatConstructed, tagId) 89 return self + superTag 91 def tagImplicitly(self, superTag): argument 92 tagClass, tagFormat, tagId = superTag [all …]
|