/external/icu/icu4c/source/test/testdata/ |
D | zoneinfo64.txt | 28 typeMap:bin { "01" } 33 typeMap:bin { "010201020102010201020102010201" } 39 typeMap:bin { "0102" } 46 typeMap:bin { "03010201020102010201020102010201040504050401040102010204050401020104" } 52 typeMap:bin { "0102" } 59 typeMap:bin { "020102" } 65 typeMap:bin { "01" } 70 typeMap:bin { "0102" } 75 typeMap:bin { "0102" } 80 typeMap:bin { "01" } [all …]
|
/external/icu/icu4c/source/data/misc/ |
D | zoneinfo64.txt | 26 typeMap:bin { "01" } 32 …typeMap:bin { "01020102010201020102010201020102010201020102010201020102010201020102010201020102010… 39 typeMap:bin { "03010201020102010201020102010201040504050401040102010204050401020104" } 49 typeMap:bin { "0102" } 58 …typeMap:bin { "01020102010201020102010201020102010201020102010201020102010201020102010201020102010… 65 …typeMap:bin { "01020102010201020102010201020102010301020102010201020102010201020102010201020102010… 71 …typeMap:bin { "01020102010201020102010201020102010201020103040304030403040304030403040304030403040… 85 …typeMap:bin { "01020302030203020302030203020302030203020302030203020302030203020302030203020302030… 94 typeMap:bin { "010203020302" } 100 typeMap:bin { "0102010201020102010201020102010201020102010201020102010201020102010301" } [all …]
|
/external/python/pyasn1/pyasn1/codec/der/ |
D | decoder.py | 30 typeMap = decoder.typeMap.copy() variable 36 if typeId is not None and typeId not in typeMap: 37 typeMap[typeId] = typeDecoder 94 decode = Decoder(tagMap, typeMap)
|
D | encoder.py | 51 typeMap = encoder.typeMap.copy() variable 52 typeMap.update({ 107 encode = Encoder(tagMap, typeMap)
|
/external/python/pyasn1/pyasn1/codec/cer/ |
D | decoder.py | 50 typeMap = decoder.typeMap.copy() variable 56 if typeId is not None and typeId not in typeMap: 57 typeMap[typeId] = typeDecoder 114 decode = Decoder(tagMap, decoder.typeMap)
|
D | encoder.py | 248 typeMap = encoder.typeMap.copy() variable 249 typeMap.update({ 311 encode = Encoder(tagMap, typeMap)
|
/external/python/pyasn1/pyasn1/type/ |
D | opentype.py | 75 def __init__(self, name, typeMap=None): argument 77 if typeMap is None: 80 self.__typeMap = typeMap
|
/external/javassist/src/main/javassist/bytecode/analysis/ |
D | Type.java | 472 Map<String,CtClass> typeMap = getAllInterfaces(type.clazz, null); in findCommonInterfaces() local 475 return findCommonInterfaces(typeMap, thisMap); in findCommonInterfaces() 479 Map<String,CtClass> typeMap = getDeclaredInterfaces(type.clazz, null); in findExclusiveDeclaredInterfaces() local 484 typeMap.remove(intf); in findExclusiveDeclaredInterfaces() 488 return findCommonInterfaces(typeMap, thisMap); in findExclusiveDeclaredInterfaces() 492 …Map<String,CtClass> findCommonInterfaces(Map<String,CtClass> typeMap, Map<String,CtClass> alterMap… in findCommonInterfaces() argument 496 if (typeMap == null||typeMap.isEmpty()) in findCommonInterfaces() 500 if (!typeMap.containsKey(name)) in findCommonInterfaces()
|
/external/robolectric-shadows/resources/src/main/java/org/robolectric/manifest/ |
D | MetaData.java | 15 private final Map<String, VALUE_TYPE> typeMap = new LinkedHashMap<>(); field in MetaData 27 typeMap.put(nameAttr.getNodeValue(), VALUE_TYPE.VALUE); in MetaData() 30 typeMap.put(nameAttr.getNodeValue(), VALUE_TYPE.RESOURCE); in MetaData() 37 for (Map.Entry<String,VALUE_TYPE> entry : typeMap.entrySet()) { in init()
|
/external/python/pyasn1/pyasn1/codec/native/ |
D | decoder.py | 98 typeMap = { variable 136 def __init__(self, tagMap, typeMap): argument 138 self.__typeMap = typeMap 213 decode = Decoder(tagMap, typeMap)
|
D | encoder.py | 143 typeMap = { variable 181 def __init__(self, tagMap, typeMap={}): argument 183 self.__typeMap = typeMap 256 encode = Encoder(tagMap, typeMap)
|
/external/robolectric-shadows/processor/src/main/java/org/robolectric/annotation/processing/ |
D | RobolectricModel.java | 86 private HashMultimap<String, TypeElement> typeMap = HashMultimap.create(); field in RobolectricModel.Builder 173 while (!typeMap.isEmpty()) { in prepare() 175 for (Map.Entry<String, Set<TypeElement>> referents : Multimaps.asMap(typeMap).entrySet()) { in prepare() 203 typeMap = nextRound; in prepare() 240 typeMap.put(type.getSimpleName().toString(), type); in registerType()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/ |
D | KeyTypeData.java | 108 Map<String, Type> typeMap; field in KeyTypeData.KeyData 111 KeyData(String legacyId, String bcpId, Map<String, Type> typeMap, in KeyData() argument 115 this.typeMap = typeMap; in KeyData() 166 Type t = keyData.typeMap.get(type); in toBcpType() 203 Type t = keyData.typeMap.get(type); in toLegacyType()
|
/external/icu/android_icu4j/testing/src/com/android/i18n/test/timezone/ |
D | ZoneInfoDataTest.java | 846 private ZoneInfoData createInstance(long[][] transitionMap, int[][] typeMap) { in createInstance() argument 853 int[] offsets = new int[typeMap.length]; in createInstance() 854 boolean[] isDsts = new boolean[typeMap.length]; in createInstance() 855 for (int i = 0; i < typeMap.length; ++i) { in createInstance() 856 offsets[i] = typeMap[i][0]; in createInstance() 857 isDsts[i] = (typeMap[i][1] != 0); in createInstance()
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/locale/ |
D | KeyTypeData.java | 113 Map<String, Type> typeMap; field in KeyTypeData.KeyData 116 KeyData(String legacyId, String bcpId, Map<String, Type> typeMap, in KeyData() argument 120 this.typeMap = typeMap; in KeyData() 171 Type t = keyData.typeMap.get(type); in toBcpType() 208 Type t = keyData.typeMap.get(type); in toLegacyType()
|
/external/llvm-project/mlir/lib/Dialect/SPIRV/Serialization/ |
D | Deserializer.cpp | 252 Type getType(uint32_t id) { return typeMap.lookup(id); } in getType() 499 DenseMap<uint32_t, Type> typeMap; member in __anonf1899d380111::Deserializer 1154 if (typeMap.count(operands[0])) { in processType() 1163 typeMap[operands[0]] = opBuilder.getNoneType(); in processType() 1168 typeMap[operands[0]] = opBuilder.getI1Type(); in processType() 1184 typeMap[operands[0]] = IntegerType::get(operands[1], sign, context); in processType() 1205 typeMap[operands[0]] = floatTy; in processType() 1218 typeMap[operands[0]] = VectorType::get({operands[2]}, elementTy); in processType() 1252 typeMap[typePointerID] = spirv::PointerType::get(pointeeType, storageClass); in processOpTypePointer() 1265 typeMap[typePointerID]; in processOpTypePointer() [all …]
|
/external/icu/icu4c/source/common/ |
D | uloc_keytype.cpp | 40 icu::LocalUHashtablePointer typeMap; member 339 keyData->typeMap.adoptInstead(typeDataMap); in initFromResourceBundle() 464 LocExtType* t = (LocExtType*)uhash_get(keyData->typeMap.getAlias(), type); in ulocimp_toBcpType() 509 LocExtType* t = (LocExtType*)uhash_get(keyData->typeMap.getAlias(), type); in ulocimp_toLegacyType()
|
/external/antlr/runtime/Python/unittests/ |
D | 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/ |
D | 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/Python3/antlr3/ |
D | treewizard.py | 322 def __init__(self, adaptor=None, tokenNames=None, typeMap=None): argument 329 if typeMap is None: 336 self.tokenNameToTypeMap = typeMap
|
/external/antlr/runtime/Python/antlr3/ |
D | treewizard.py | 322 def __init__(self, adaptor=None, tokenNames=None, typeMap=None): argument 329 if typeMap is None: 336 self.tokenNameToTypeMap = typeMap
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
D | ZoneMeta.java | 402 UResourceBundle typeMap = keyTypeData.get("typeMap"); in findCLDRCanonicalID() local 403 UResourceBundle typeKeys = typeMap.get("timezone"); in findCLDRCanonicalID() 878 UResourceBundle typeMap = keyTypeData.get("typeMap"); in getShortIDFromCanonical() local 879 UResourceBundle typeKeys = typeMap.get("timezone"); in getShortIDFromCanonical()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | ZoneMeta.java | 401 UResourceBundle typeMap = keyTypeData.get("typeMap"); in findCLDRCanonicalID() local 402 UResourceBundle typeKeys = typeMap.get("timezone"); in findCLDRCanonicalID() 877 UResourceBundle typeMap = keyTypeData.get("typeMap"); in getShortIDFromCanonical() local 878 UResourceBundle typeKeys = typeMap.get("timezone"); in getShortIDFromCanonical()
|
/external/python/pyasn1/pyasn1/codec/ber/ |
D | decoder.py | 1235 typeMap = { variable 1248 if typeId is not None and typeId not in typeMap: 1249 typeMap[typeId] = typeDecoder 1271 def __init__(self, tagMap, typeMap={}): argument 1273 self.__typeMap = typeMap 1299 typeMap = self.__typeMap 1505 concreteDecoder = typeMap[chosenSpec.typeId] 1651 decode = Decoder(tagMap, typeMap)
|
/external/auto/value/src/test/java/com/google/auto/value/processor/ |
D | TypeEncoderTest.java | 260 ImmutableMap<TypeMirror, String> typeMap = in testSimplifyComplicatedTypes() local 278 typeMap.keySet(), in testSimplifyComplicatedTypes() 286 ImmutableList.copyOf(typeMap.values())); in testSimplifyComplicatedTypes()
|