Home
last modified time | relevance | path

Searched refs:typeMap (Results 1 – 25 of 37) sorted by relevance

12

/external/icu/icu4c/source/test/testdata/
Dzoneinfo64.txt26 typeMap:bin { "01" }
31 typeMap:bin { "010201020102010201020102010201" }
37 typeMap:bin { "0102" }
44 typeMap:bin { "03010201020102010201020102010201040504050401040102010204050401020104" }
50 typeMap:bin { "0102" }
57 typeMap:bin { "020102" }
63 typeMap:bin { "01" }
68 typeMap:bin { "0102" }
73 typeMap:bin { "0102" }
78 typeMap:bin { "01" }
[all …]
DtimezoneTypes.txt139 typeMap{
/external/icu/icu4c/source/data/misc/
Dzoneinfo64.txt26 typeMap:bin { "01" }
32typeMap:bin { "01020102010201020102010201020102010201020102010201020102010201020102010201020102010…
39 typeMap:bin { "03010201020102010201020102010201040504050401040102010204050401020104" }
49 typeMap:bin { "0102" }
58typeMap:bin { "01020102010201020102010201020102010201020102010201020102010201020102010201020102010…
65typeMap:bin { "01020102010201020102010201020102010301020102010201020102010201020102010201020102010…
74typeMap:bin { "01020102010201020102010201020102010201020103040304030403040304030403040304030403040…
88typeMap:bin { "01020302030203020302030203020302030203020302030203020302030203020302030203020302030…
100 typeMap:bin { "010203020302" }
108 typeMap:bin { "01020102010201020102010201020102010201020102010201020102010201020103" }
[all …]
DkeyTypeData.txt45 typeMap{
532 timezone:alias{"/ICUDATA/timezoneTypes/typeMap/timezone"}
DtimezoneTypes.txt153 typeMap{
/external/opencv3/3rdparty/openexr/IlmImf/
DImfAttribute.cpp87 typeMap () in typeMap() function
92 static LockedTypeMap* typeMap = 0; in typeMap() local
94 if (typeMap == 0) in typeMap()
95 typeMap = new LockedTypeMap (); in typeMap()
97 return *typeMap; in typeMap()
107 LockedTypeMap& tMap = typeMap(); in knownType()
118 LockedTypeMap& tMap = typeMap(); in registerAttributeType()
133 LockedTypeMap& tMap = typeMap(); in unRegisterAttributeType()
143 LockedTypeMap& tMap = typeMap(); in newAttribute()
/external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/codec/der/
Ddecoder.py6 typeMap = decoder.typeMap variable
9 decode = Decoder(tagMap, typeMap)
Dencoder.py22 typeMap = encoder.typeMap variable
28 encode = Encoder(tagMap, typeMap)
/external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/codec/cer/
Ddecoder.py31 typeMap = decoder.typeMap variable
35 decode = Decoder(tagMap, decoder.typeMap)
Dencoder.py75 typeMap = encoder.typeMap.copy() variable
76 typeMap.update({
85 encode = Encoder(tagMap, typeMap)
/external/v8/src/js/
Dobject-observe.js107 function TypeMapAddType(typeMap, type, ignoreDuplicate) { argument
108 typeMap[type] = ignoreDuplicate ? 1 : (typeMap[type] || 0) + 1;
112 function TypeMapRemoveType(typeMap, type) { argument
113 typeMap[type]--;
118 var typeMap = TypeMapCreate();
120 TypeMapAddType(typeMap, typeList[i], true);
122 return typeMap;
126 function TypeMapHasType(typeMap, type) { argument
127 return !!typeMap[type];
/external/javassist/src/main/javassist/bytecode/analysis/
DType.java473 Map typeMap = getAllInterfaces(type.clazz, null); in findCommonInterfaces() local
476 return findCommonInterfaces(typeMap, thisMap); in findCommonInterfaces()
480 Map typeMap = getDeclaredInterfaces(type.clazz, null); in findExclusiveDeclaredInterfaces() local
487 typeMap.remove(intf); in findExclusiveDeclaredInterfaces()
491 return findCommonInterfaces(typeMap, thisMap); in findExclusiveDeclaredInterfaces()
495 Map findCommonInterfaces(Map typeMap, Map alterMap) { in findCommonInterfaces() argument
498 if (! typeMap.containsKey(i.next())) in findCommonInterfaces()
/external/icu/icu4c/source/common/
Duloc_keytype.cpp33 UHashtable* typeMap; member
72 if (keyData->typeMap != NULL) { in uloc_deleteKeyDataEntry()
73 uhash_close(keyData->typeMap); in uloc_deleteKeyDataEntry()
383 keyData->typeMap = typeDataMap; in initFromResourceBundle()
497 LocExtType* t = (LocExtType*)uhash_get(keyData->typeMap, type); in ulocimp_toBcpType()
539 LocExtType* t = (LocExtType*)uhash_get(keyData->typeMap, type); in ulocimp_toLegacyType()
/external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
DKeyTypeData.java62 Map<String, Type> typeMap; field in KeyTypeData.KeyData
65 KeyData(String legacyId, String bcpId, Map<String, Type> typeMap, in KeyData() argument
69 this.typeMap = typeMap; in KeyData()
120 Type t = keyData.typeMap.get(type); in toBcpType()
157 Type t = keyData.typeMap.get(type); in toLegacyType()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
DKeyTypeData.java60 Map<String, Type> typeMap; field in KeyTypeData.KeyData
63 KeyData(String legacyId, String bcpId, Map<String, Type> typeMap, in KeyData() argument
67 this.typeMap = typeMap; in KeyData()
118 Type t = keyData.typeMap.get(type); in toBcpType()
155 Type t = keyData.typeMap.get(type); in toLegacyType()
/external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/codec/ber/
Dencoder.py316 typeMap = { variable
326 def __init__(self, tagMap, typeMap={}): argument
328 self.__typeMap = typeMap
353 encode = Encoder(tagMap, typeMap)
Ddecoder.py560 typeMap = { variable
577 def __init__(self, tagMap, typeMap={}): argument
579 self.__typeMap = typeMap
805 decode = Decoder(tagMap, typeMap)
/external/antlr/antlr-3.4/runtime/Python/unittests/
Dtesttreewizard.py20 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/antlr-3.4/runtime/Python/antlr3/
Dtreewizard.py322 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/
DZoneMeta.java400 UResourceBundle typeMap = keyTypeData.get("typeMap"); in findCLDRCanonicalID() local
401 UResourceBundle typeKeys = typeMap.get("timezone"); in findCLDRCanonicalID()
874 UResourceBundle typeMap = keyTypeData.get("typeMap"); in getShortIDFromCanonical() local
875 UResourceBundle typeKeys = typeMap.get("timezone"); in getShortIDFromCanonical()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DZoneMeta.java399 UResourceBundle typeMap = keyTypeData.get("typeMap"); in findCLDRCanonicalID() local
400 UResourceBundle typeKeys = typeMap.get("timezone"); in findCLDRCanonicalID()
873 UResourceBundle typeMap = keyTypeData.get("typeMap"); in getShortIDFromCanonical() local
874 UResourceBundle typeKeys = typeMap.get("timezone"); in getShortIDFromCanonical()
/external/deqp/external/vulkancts/
Dgen_framework.py328 typeMap = { 'struct': CompositeType.CLASS_STRUCT, 'union': CompositeType.CLASS_UNION }
333 types.append(parseCompositeType(typeMap[type], typename, contents))
340 typeMap = {'': Handle.TYPE_DISP, '_NON_DISPATCHABLE': Handle.TYPE_NONDISP}
343 handle = Handle(typeMap[type], name)
/external/robolectric/v3/
Drobolectric-processor-3.1-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ org/ ...
/external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/
DCHANGES55 - Expose tagMap/typeMap/Decoder objects at DER decoder to uniform API.
/external/deqp/modules/gles31/functional/
Des31fProgramInterfaceDefinitionUtil.cpp1003 …st ProgramInterfaceDefinition::Shader* shader, glu::Storage storage, int (*typeMap)(glu::DataType)) in accumulateShaderStorage()
1005 …(shader, InterfaceBlockStorageFilter(storage), VariableDeclarationStorageFilter(storage), typeMap); in accumulateShaderStorage()

12