HomeSort by relevance Sort by last modified time
    Searched refs:typeMap (Results 1 - 25 of 39) sorted by null

1 2

  /external/python/pyasn1/pyasn1/codec/der/
decoder.py 30 typeMap = decoder.typeMap.copy()
36 if typeId is not None and typeId not in typeMap:
37 typeMap[typeId] = typeDecoder
94 decode = Decoder(tagMap, typeMap)
encoder.py 51 typeMap = encoder.typeMap.copy()
52 typeMap.update({
107 encode = Encoder(tagMap, typeMap)
  /external/python/pyasn1/pyasn1/type/
opentype.py 18 however the passed `typeMap` is stored by reference.
25 typeMap: :py:class:`dict`
46 def __init__(self, name, typeMap=None):
48 if typeMap is None:
51 self.__typeMap = typeMap
  /external/python/pyasn1/pyasn1/codec/cer/
decoder.py 50 typeMap = decoder.typeMap.copy()
56 if typeId is not None and typeId not in typeMap:
57 typeMap[typeId] = typeDecoder
114 decode = Decoder(tagMap, decoder.typeMap)
encoder.py 231 typeMap = encoder.typeMap.copy()
232 typeMap.update({
294 encode = Encoder(tagMap, typeMap)
  /external/robolectric-shadows/resources/src/main/java/org/robolectric/manifest/
MetaData.java 15 private final Map<String, VALUE_TYPE> typeMap = new LinkedHashMap<>();
27 typeMap.put(nameAttr.getNodeValue(), VALUE_TYPE.VALUE);
30 typeMap.put(nameAttr.getNodeValue(), VALUE_TYPE.RESOURCE);
37 for (Map.Entry<String,VALUE_TYPE> entry : typeMap.entrySet()) {
  /external/python/pyasn1/pyasn1/codec/native/
decoder.py 96 typeMap = {
134 def __init__(self, tagMap, typeMap):
136 self.__typeMap = typeMap
214 decode = Decoder(tagMap, typeMap)
encoder.py 136 typeMap = {
149 def __init__(self, tagMap, typeMap={}):
151 self.__typeMap = typeMap
229 encode = Encoder(tagMap, typeMap)
  /external/icu/icu4c/source/common/
uloc_keytype.cpp 37 UHashtable* typeMap;
76 if (keyData->typeMap != NULL) {
77 uhash_close(keyData->typeMap);
99 LocalUResourceBundlePointer typeMapRes(ures_getByKey(keyTypeDataRes.getAlias(), "typeMap", NULL, &sts));
391 keyData->typeMap = typeDataMap;
521 LocExtType* t = (LocExtType*)uhash_get(keyData->typeMap, type);
566 LocExtType* t = (LocExtType*)uhash_get(keyData->typeMap, type);
  /frameworks/av/media/libstagefright/xmlparser/include/media/stagefright/xmlparser/
MediaCodecsXmlParser.h 53 typedef std::map<std::string, AttributeMap> TypeMap;
66 TypeMap typeMap; ///< Map of types supported by this codec
  /frameworks/av/media/libstagefright/xmlparser/
MediaCodecsXmlParser.cpp 190 TypeMap::iterator mType;
246 && mCurrent.back().mType != mCurrent.back().mCodec->second.typeMap.end();
965 TypeMap::iterator typeIt;
973 typeIt = codecIt->second.typeMap.insert(Type(type, AttributeMap())).first;
975 typeIt = codecIt->second.typeMap.end();
984 typeIt = codecIt->second.typeMap.find(type);
985 if (typeIt == codecIt->second.typeMap.end()) {
990 typeIt = codecIt->second.typeMap.begin();
991 if (typeIt == codecIt->second.typeMap.end()
992 || codecIt->second.typeMap.size() != 1)
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
KeyTypeData.java 104 Map<String, Type> typeMap;
107 KeyData(String legacyId, String bcpId, Map<String, Type> typeMap,
111 this.typeMap = typeMap;
162 Type t = keyData.typeMap.get(type);
199 Type t = keyData.typeMap.get(type);
228 UResourceBundle typeMapRes = keyTypeDataRes.get("typeMap");
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
KeyTypeData.java 99 Map<String, Type> typeMap;
102 KeyData(String legacyId, String bcpId, Map<String, Type> typeMap,
106 this.typeMap = typeMap;
157 Type t = keyData.typeMap.get(type);
194 Type t = keyData.typeMap.get(type);
223 UResourceBundle typeMapRes = keyTypeDataRes.get("typeMap");
  /external/robolectric-shadows/processor/src/main/java/org/robolectric/annotation/processing/
RobolectricModel.java 86 private HashMultimap<String, TypeElement> typeMap = HashMultimap.create();
173 while (!typeMap.isEmpty()) {
175 for (Map.Entry<String, Set<TypeElement>> referents : Multimaps.asMap(typeMap).entrySet()) {
203 typeMap = nextRound;
240 typeMap.put(type.getSimpleName().toString(), type);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
ZoneMeta.java 402 UResourceBundle typeMap = keyTypeData.get("typeMap");
403 UResourceBundle typeKeys = typeMap.get("timezone");
878 UResourceBundle typeMap = keyTypeData.get("typeMap");
879 UResourceBundle typeKeys = typeMap.get("timezone");
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
ZoneMeta.java 401 UResourceBundle typeMap = keyTypeData.get("typeMap");
402 UResourceBundle typeKeys = typeMap.get("timezone");
877 UResourceBundle typeMap = keyTypeData.get("typeMap");
878 UResourceBundle typeKeys = typeMap.get("timezone");
  /external/antlr/runtime/Python/unittests/
testtreewizard.py 20 typeMap = computeTokenTypes(None)
21 self.failUnless(isinstance(typeMap, dict))
22 self.failUnlessEqual(typeMap, {})
28 typeMap = computeTokenTypes(['a', 'b'])
29 self.failUnless(isinstance(typeMap, dict))
30 self.failUnlessEqual(typeMap, { 'a': 0, 'b': 1 })
  /external/antlr/runtime/Python3/unittests/
testtreewizard.py 19 typeMap = computeTokenTypes(None)
20 self.assertIsInstance(typeMap, dict)
21 self.assertEqual(typeMap, {})
27 typeMap = computeTokenTypes(['a', 'b'])
28 self.assertIsInstance(typeMap, dict)
29 self.assertEqual(typeMap, { 'a': 0, 'b': 1 })
  /external/antlr/runtime/Python/antlr3/
treewizard.py 322 def __init__(self, adaptor=None, tokenNames=None, typeMap=None):
329 if typeMap is None:
334 raise ValueError("Can't have both tokenNames and typeMap")
336 self.tokenNameToTypeMap = typeMap
  /external/antlr/runtime/Python3/antlr3/
treewizard.py 322 def __init__(self, adaptor=None, tokenNames=None, typeMap=None):
329 if typeMap is None:
334 raise ValueError("Can't have both tokenNames and typeMap")
336 self.tokenNameToTypeMap = typeMap
  /external/python/pyasn1/pyasn1/codec/ber/
decoder.py     [all...]
encoder.py 568 typeMap = {
608 def __init__(self, tagMap, typeMap={}):
610 self.__typeMap = typeMap
721 encode = Encoder(tagMap, typeMap)
  /external/python/pyasn1/tests/codec/ber/
test_encoder.py 385 binEncBase, encoder.typeMap[univ.Real.typeId].binEncBase = encoder.typeMap[univ.Real.typeId].binEncBase, 16
389 encoder.typeMap[univ.Real.typeId].binEncBase = binEncBase
393 binEncBase, encoder.typeMap[univ.Real.typeId].binEncBase = encoder.typeMap[univ.Real.typeId].binEncBase, None
397 encoder.typeMap[univ.Real.typeId].binEncBase = binEncBase
    [all...]
  /frameworks/av/media/codec2/sfplugin/
Codec2InfoBuilder.cpp 503 for (auto typeIt = codec.typeMap.begin(); typeIt != codec.typeMap.end(); ++typeIt) {
  /external/deqp/external/openglcts/modules/common/
glcPackedPixelsTests.cpp     [all...]

Completed in 3010 milliseconds

1 2