Home
last modified time | relevance | path

Searched refs:baseTag (Results 1 – 12 of 12) sorted by relevance

/external/python/pyasn1/pyasn1/codec/ber/
Dencoder.py207 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)
Ddecoder.py520 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/
DTailoredSet.java154 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/
DTailoredSet.java152 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/
Dtag.py187 def __init__(self, baseTag=(), *superTags): argument
188 self.__baseTag = baseTag
243 def baseTag(self): member in TagSet
/external/icu/icu4c/source/i18n/
Dcollationsets.cpp137 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/
Ddecoder.py154 baseTagSet = tag.TagSet(asn1Spec.tagSet.baseTag, asn1Spec.tagSet.baseTag)
Dencoder.py200 baseTagSet = tag.TagSet(value.tagSet.baseTag, value.tagSet.baseTag)
/external/chromium-trace/catapult/third_party/polymer/components/webcomponentsjs/
DCustomElements.js837 var baseTag = definition.extends;
839 baseTag = a.is && a.tag;
841 definition.tag = baseTag || definition.__name;
842 if (baseTag) {
Dwebcomponents-lite.js2306 var baseTag = definition.extends;
2308 baseTag = a.is && a.tag;
2310 definition.tag = baseTag || definition.__name;
2311 if (baseTag) {
Dwebcomponents.js6992 var baseTag = definition.extends;
6994 baseTag = a.is && a.tag;
6996 definition.tag = baseTag || definition.__name;
6997 if (baseTag) {
/external/python/pyasn1/
DCHANGES.rst418 - Fix to TagSet.repr() to include [obsolete] baseTag information.