Searched refs:baseTag (Results 1 – 9 of 9) sorted by relevance
/external/python/pyasn1/pyasn1/codec/ber/ |
D | encoder.py | 160 baseTag = value.tagSet.baseTag 163 if baseTag: 164 tagSet = tag.TagSet(baseTag, baseTag) 203 baseTag = value.tagSet.baseTag 206 if baseTag: 207 tagSet = tag.TagSet(baseTag, baseTag) 214 baseTag = asn1Spec.tagSet.baseTag 217 if baseTag: 218 tagSet = tag.TagSet(baseTag, baseTag) 652 baseTagSet = tag.TagSet(tagSet.baseTag, tagSet.baseTag)
|
D | decoder.py | 469 tagSet=tag.TagSet(protoComponent.tagSet.baseTag, *tagSet.superTags) 1256 … baseTagSet = tag.TagSet(chosenSpec.tagSet.baseTag, chosenSpec.tagSet.baseTag)
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/ |
D | TailoredSet.java | 154 int baseTag; in compare() local 156 baseTag = Collation.tagFromCE32(baseCE32); in compare() 157 assert (baseTag != Collation.PREFIX_TAG); in compare() 158 assert (baseTag != Collation.CONTRACTION_TAG); in compare() 160 baseTag = -1; in compare() 164 if (baseTag == Collation.OFFSET_TAG) { in compare() 182 if (tag != baseTag) { in compare()
|
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/ |
D | TailoredSet.java | 152 int baseTag; in compare() local 154 baseTag = Collation.tagFromCE32(baseCE32); in compare() 155 assert (baseTag != Collation.PREFIX_TAG); in compare() 156 assert (baseTag != Collation.CONTRACTION_TAG); in compare() 158 baseTag = -1; in compare() 162 if (baseTag == Collation.OFFSET_TAG) { in compare() 180 if (tag != baseTag) { in compare()
|
/external/icu/icu4c/source/i18n/ |
D | collationsets.cpp | 137 int32_t baseTag; in compare() local 139 baseTag = Collation::tagFromCE32(baseCE32); in compare() 140 U_ASSERT(baseTag != Collation::PREFIX_TAG); in compare() 141 U_ASSERT(baseTag != Collation::CONTRACTION_TAG); in compare() 143 baseTag = -1; in compare() 147 if(baseTag == Collation::OFFSET_TAG) { in compare() 165 if(tag != baseTag) { in compare()
|
/external/python/pyasn1/pyasn1/type/ |
D | tag.py | 185 def __init__(self, baseTag=(), *superTags): argument 186 self.__baseTag = baseTag 241 def baseTag(self): member in TagSet
|
/external/python/pyasn1/pyasn1/codec/native/ |
D | encoder.py | 173 baseTagSet = tag.TagSet(value.tagSet.baseTag, value.tagSet.baseTag)
|
D | decoder.py | 155 baseTagSet = tag.TagSet(asn1Spec.tagSet.baseTag, asn1Spec.tagSet.baseTag)
|
/external/python/pyasn1/ |
D | CHANGES.rst | 337 - Fix to TagSet.repr() to include [obsolete] baseTag information.
|