Home
last modified time | relevance | path

Searched refs:Map (Results 1 – 25 of 36) sorted by relevance

12

/system/tools/xsdc/src/com/android/xsdc/
DXmlSchema.java22 import java.util.Map;
25 final private Map<String, XsdElement> elementMap;
26 final private Map<String, XsdType> typeMap;
27 final private Map<String, XsdAttribute> attributeMap;
29 XmlSchema(Map<String, XsdElement> elementMap, Map<String, XsdType> typeMap, in XmlSchema()
30 Map<String, XsdAttribute> attributeMap) { in XmlSchema()
36 public Map<String, XsdElement> getElementMap() { in getElementMap()
40 public Map<String, XsdType> getTypeMap() { in getTypeMap()
44 public Map<String, XsdAttribute> getAttributeMap() { in getAttributeMap()
DFileSystem.java23 import java.util.Map;
27 private Map<String, StringBuffer> fileOutputMap;
33 public FileSystem(Map<String, StringBuffer> fileOutputMap) { in FileSystem()
DXsdHandler.java31 import java.util.Map;
40 final Map<String, String> attributeMap;
44 State(String name, Map<String, String> attributeMap) { in State()
54 private final Map<String, String> namespaces;
110 Map<String, String> attributeMap = new HashMap<>(); in startElement()
223 Map<String, XsdElement> elementMap = new LinkedHashMap<>(); in makeSchema()
224 Map<String, XsdType> typeMap = new LinkedHashMap<>(); in makeSchema()
225 Map<String, XsdAttribute> attrMap = new LinkedHashMap<>(); in makeSchema()
556 private boolean isDeprecated(Map<String, String> attributeMap,List<XsdTag> tags) in isDeprecated()
/system/libvintf/include/vintf/
DMapValueIterator.h27 template<typename Map>
29 using K = typename Map::key_type;
30 using V = typename Map::mapped_type;
48 typename Map::const_iterator, typename Map::iterator>::type;
84 using map_ref = typename std::conditional<is_const, const Map &, Map &>::type;
103 using iter_type = typename std::conditional<is_const, typename Map::const_iterator,
104 typename Map::iterator>::type;
/system/core/libion/tests/
Dmap_test.cpp25 class Map : public IonAllHeapsTest { class
28 TEST_F(Map, MapHandle) in TEST_F() argument
57 TEST_F(Map, MapFd) in TEST_F() argument
82 TEST_F(Map, MapOffset) in TEST_F() argument
112 TEST_F(Map, MapCached) in TEST_F() argument
138 TEST_F(Map, MapCachedNeedsSync) in TEST_F() argument
/system/tools/xsdc/tests/src/com/android/xsdc/tests/
DTestCompilationResult.java21 import java.util.Map;
25 private Map<String, byte[]> codeMap;
42 private Map<String, Class<?>> classes;
DTestHelper.java34 import java.util.Map;
108 Map<String, StringBuffer> fileOutputMap = new HashMap<>(); in parseXsdAndCompile()
113 for (Map.Entry<String, StringBuffer> entry : fileOutputMap.entrySet()) { in parseXsdAndCompile()
/system/timezone/tzlookup_generator/src/test/java/com/android/libcore/timezone/tzlookup/
DZoneTabFileTest.java29 import java.util.Map;
108 Map<String, List<String>> expected = new HashMap<>(); in createCountryToOlsonIdsMap()
113 Map<String, List<String>> actual = ZoneTabFile.createCountryToOlsonIdsMap(zoneTab); in createCountryToOlsonIdsMap()
117 private void addIds(Map<String, List<String>> map, String iso, String... ids) { in addIds()
/system/core/init/
Dtest_function_map.h47 Map builtin_functions_ = {};
49 const Map& map() const override { return builtin_functions_; } in map()
Dkeyword_map.h34 using Map = std::map<std::string, FunctionInfo>; variable
77 virtual const Map& map() const = 0;
Dbuiltins.h40 const Map& map() const override;
Dueventd_parser.cpp182 const Map& map() const override { in ParseLineSection()
184 static const Map option_parsers = { in ParseLineSection()
/system/timezone/tzlookup_generator/src/main/java/com/android/libcore/timezone/tzlookup/zonetree/
DCountryZoneUsage.java20 import java.util.Map;
27 private final Map<String, Entry> zoneIdEntryMap = new HashMap<>();
DUniqueZonesVisualizer.java26 import java.util.Map;
72 private final Map<String, Country> countryMap;
/system/timezone/tzlookup_generator/src/main/java/com/android/libcore/timezone/tzlookup/
DZoneTabFile.java26 import java.util.Map;
70 static Map<String, List<String>> createCountryToOlsonIdsMap(ZoneTabFile zoneTab) { in createCountryToOlsonIdsMap()
71 Map<String, List<String>> countryIsoToOlsonIdsMap = new HashMap<>(); in createCountryToOlsonIdsMap()
DTzLookupGenerator.java33 import java.util.Map;
121 Map<String, List<String>> zoneTabMapping = in execute()
176 Map<String, List<String>> zoneTabMapping, List<CountryZonesFile.Country> countriesIn, in createOutputTimeZones()
/system/timezone/zone_compactor/main/java/
DZoneCompactor.java46 private Map<String,String> links = new HashMap<String,String>();
49 private Map<String,Integer> offsets = new HashMap<String,Integer>();
52 private Map<String,Integer> lengths = new HashMap<String,Integer>();
/system/tools/aidl/tests/android/aidl/loggable/
DILoggableInterface.aidl13 inout Map mapValue, in LogThis()
/system/tools/hidl/docs/src/writer/files/
DIndexFileWriter.kt162 private fun buildTocEntries(pkgEntries: Map<String, List<EntryData>>): String { in <lambda>()
176 private fun collectPackages(): Map<String, List<EntryData>> { in <lambda>()
/system/tools/aidl/tests/android/aidl/tests/
DITestService.aidl53 Map RepeatMap(in Map token); in RepeatMap()
/system/tools/aidl/tests/
Daidl_test_client_primitives.cpp39 using android::binder::Map;
58 Map test_map; in ConfirmPrimitiveRepeat()
Daidl_test_service.cpp70 using android::binder::Map;
123 void LogRepeatedMapToken(const Map& token) { in LogRepeatedMapToken()
167 Status RepeatMap(const Map& token, Map* _aidl_return) override { in RepeatMap()
/system/extras/verity/
DUtils.java45 import java.util.Map;
62 private static final Map<String, String> ID_TO_ALG;
63 private static final Map<String, String> ALG_TO_ID;
/system/extras/perfprofd/
Dperf_profile.proto59 // Map from a stack of addresses to count.
62 // Map from a range triplet (start, end, to) to count.
/system/timezone/testing/src/main/java/libcore/timezone/testing/
DZoneInfoTestHelper.java24 import java.util.Map;
243 Map<String, Integer> offsets = new HashMap<>(); in build()

12