Searched refs:baseTag (Results 1 – 12 of 12) sorted by relevance
/external/python/pyasn1/pyasn1/codec/ber/ |
D | encoder.py | 207 baseTag = value.tagSet.baseTag 210 if baseTag: 211 tagSet = tag.TagSet(baseTag, baseTag) 252 baseTag = value.tagSet.baseTag 255 if baseTag: 256 tagSet = tag.TagSet(baseTag, baseTag) 264 baseTag = asn1Spec.tagSet.baseTag 267 if baseTag: 268 tagSet = tag.TagSet(baseTag, baseTag) 821 baseTagSet = tag.TagSet(tagSet.baseTag, tagSet.baseTag)
|
D | decoder.py | 520 tagSet=tag.TagSet(protoComponent.tagSet.baseTag, *tagSet.superTags) 1512 … 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/python/pyasn1/pyasn1/type/ |
D | tag.py | 187 def __init__(self, baseTag=(), *superTags): argument 188 self.__baseTag = baseTag 243 def baseTag(self): member in TagSet
|
/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/codec/native/ |
D | decoder.py | 154 baseTagSet = tag.TagSet(asn1Spec.tagSet.baseTag, asn1Spec.tagSet.baseTag)
|
D | encoder.py | 200 baseTagSet = tag.TagSet(value.tagSet.baseTag, value.tagSet.baseTag)
|
/external/chromium-trace/catapult/third_party/polymer/components/webcomponentsjs/ |
D | CustomElements.js | 837 var baseTag = definition.extends; 839 baseTag = a.is && a.tag; 841 definition.tag = baseTag || definition.__name; 842 if (baseTag) {
|
D | webcomponents-lite.js | 2306 var baseTag = definition.extends; 2308 baseTag = a.is && a.tag; 2310 definition.tag = baseTag || definition.__name; 2311 if (baseTag) {
|
D | webcomponents.js | 6992 var baseTag = definition.extends; 6994 baseTag = a.is && a.tag; 6996 definition.tag = baseTag || definition.__name; 6997 if (baseTag) {
|
/external/python/pyasn1/ |
D | CHANGES.rst | 418 - Fix to TagSet.repr() to include [obsolete] baseTag information.
|