Home
last modified time | relevance | path

Searched refs:tagMap (Results 1 – 25 of 58) sorted by relevance

123

/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
DObjectDescriptorFactory.java147 … Map<Integer, Class<? extends BaseDescriptor>> tagMap = descriptorRegistry.get(objectTypeInd);
148 if (tagMap == null) {
149 tagMap = new HashMap<Integer, Class<? extends BaseDescriptor>>();
152 tagMap.put(tag, clazz); in tagMap.put()
154 descriptorRegistry.put(objectTypeInd, tagMap); in descriptorRegistry.put() argument
161 …Map<Integer, Class<? extends BaseDescriptor>> tagMap = descriptorRegistry.get(objectTypeIndication… in createFrom() local
162 if (tagMap == null) { in createFrom()
163 tagMap = descriptorRegistry.get(-1); in createFrom()
165 Class<? extends BaseDescriptor> aClass = tagMap.get(tag); in createFrom()
/external/python/pyasn1/pyasn1/type/
Dnamedtype.py248 tagMap = namedType.asn1Object.tagMap
249 if isinstance(tagMap, NamedTypes.PostponedError):
250 return tagMap
251 if not tagMap:
253 for _tagSet in tagMap.presentTypes:
403 return self.__ambiguousTypes[idx].tagMap
477 tagMap = namedType.asn1Object.tagMap
478 if isinstance(tagMap, NamedTypes.PostponedError):
479 return tagMap
480 for tagSet in tagMap:
[all …]
/external/python/pyasn1/tests/type/
Dtest_namedtype.py84 assert self.e.tagMap.presentTypes == {
90 assert 'TagMap' in str(self.e.tagMap)
91 assert 'OctetString' in str(self.e.tagMap)
92 assert 'Integer' in str(self.e.tagMap)
95 assert 'TagMap' in repr(self.e.tagMap)
96 assert 'OctetString' in repr(self.e.tagMap)
97 assert 'Integer' in repr(self.e.tagMap)
134 assert isinstance(nt.tagMap, namedtype.NamedTypes.PostponedError)
/external/python/pyasn1/pyasn1/codec/der/
Ddecoder.py23 tagMap = decoder.tagMap.copy() variable
24 tagMap.update(
33 for typeDecoder in tagMap.values():
94 decode = Decoder(tagMap, typeMap)
Dencoder.py45 tagMap = encoder.tagMap.copy() variable
46 tagMap.update({
107 encode = Encoder(tagMap, typeMap)
/external/python/pyasn1/pyasn1/codec/cer/
Ddecoder.py42 tagMap = decoder.tagMap.copy() variable
43 tagMap.update(
53 for typeDecoder in tagMap.values():
114 decode = Decoder(tagMap, decoder.typeMap)
Dencoder.py237 tagMap = encoder.tagMap.copy() variable
238 tagMap.update({
311 encode = Encoder(tagMap, typeMap)
/external/python/pyasn1/pyasn1/codec/native/
Ddecoder.py67 tagMap = { variable
136 def __init__(self, tagMap, typeMap): argument
137 self.__tagMap = tagMap
213 decode = Decoder(tagMap, typeMap)
Dencoder.py110 tagMap = { variable
181 def __init__(self, tagMap, typeMap={}): argument
182 self.__tagMap = tagMap
256 encode = Encoder(tagMap, typeMap)
/external/kotlinpoet/kotlinpoet/src/main/java/com/squareup/kotlinpoet/
DTypeAliasSpec.kt28 private val tagMap: TagMap = builder.buildTagMap(), constant
29 ) : Taggable by tagMap { in <lambda>()
65 builder.tags += tagMap.tags in <lambda>()
DAnnotationSpec.kt31 private val tagMap: TagMap = builder.buildTagMap(), in <lambda>() constant
32 ) : Taggable by tagMap { in <lambda>()
86 builder.tags += tagMap.tags in <lambda>()
DParameterSpec.kt31 private val tagMap: TagMap = builder.buildTagMap(), in <lambda>() constant
32 ) : Taggable by tagMap { in <lambda>()
92 builder.tags += tagMap.tags in <lambda>()
DPropertySpec.kt30 private val tagMap: TagMap = builder.buildTagMap(), constant
33 ) : Taggable by tagMap, OriginatingElementsHolder by delegateOriginatingElementsHolder, ContextRece… in <lambda>()
168 builder.tags += tagMap.tags in <lambda>()
/external/python/pyasn1/pyasn1/codec/ber/
Ddecoder.py1060 isUntagged = tagSet not in asn1Spec.tagMap
1091 isTagged = tagSet in asn1Spec.tagMap
1204 tagMap = { variable
1245 for typeDecoder in tagMap.values():
1271 def __init__(self, tagMap, typeMap={}): argument
1272 self.__tagMap = tagMap
1298 tagMap = self.__tagMap
1449 concreteDecoder = tagMap[tagSet]
1459 concreteDecoder = tagMap[tagSet[:1]]
1494 elif tagSet == asn1Spec.tagSet or tagSet in asn1Spec.tagMap:
[all …]
/external/python/pyasn1/docs/source/pyasn1/type/base/
Dasn1type.rst10 :members: isSameTypeWith, isSuperTypeOf, tagSet, effectiveTagSet, tagMap, subtypeSpec
Dconstructedasn1type.rst10 :members: isSameTypeWith, isSuperTypeOf, tagSet, effectiveTagSet, tagMap, subtypeSpec
Dsimpleasn1type.rst10 :members: isValue, isSameTypeWith, isSuperTypeOf, tagSet, effectiveTagSet, tagMap, subtypeSpec
/external/python/pyasn1/docs/source/pyasn1/type/univ/
Dnull.rst10 :members: isValue, isSameTypeWith, isSuperTypeOf, tagSet, effectiveTagSet, tagMap, subtypeSpec
Dboolean.rst10 :members: isValue, isSameTypeWith, isSuperTypeOf, tagSet, effectiveTagSet, tagMap, subtypeSpec
Dreal.rst10 …:members: isValue, isSameTypeWith, isSuperTypeOf, tagSet, effectiveTagSet, tagMap, subtypeSpec, is…
Dobjectidentifier.rst10 …:members: isValue, isSameTypeWith, isSuperTypeOf, tagSet, effectiveTagSet, tagMap, subtypeSpec, is…
/external/python/pyasn1/docs/source/pyasn1/type/char/
Dt61string.rst12 :members: isValue, isSameTypeWith, isSuperTypeOf, tagSet, effectiveTagSet, tagMap
Dnumericstring.rst12 :members: isValue, isSameTypeWith, isSuperTypeOf, tagSet, effectiveTagSet, tagMap
Diso646string.rst12 :members: isValue, isSameTypeWith, isSuperTypeOf, tagSet, effectiveTagSet, tagMap
Dutf8string.rst12 :members: isValue, isSameTypeWith, isSuperTypeOf, tagSet, effectiveTagSet, tagMap

123