Home
last modified time | relevance | path

Searched refs:jsonMap (Results 1 – 1 of 1) sorted by relevance

/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/util/
DCollectorUtil.java149 HashMap<String, List<String>> jsonMap = new HashMap<>(); in reformatJsonString() local
158 if (!jsonMap.containsKey(key)) { in reformatJsonString()
159 jsonMap.put(key, new ArrayList<String>()); in reformatJsonString()
161 jsonMap.get(key).add(value); in reformatJsonString()
166 for (String key : jsonMap.keySet()) { in reformatJsonString()
174 for (String stream : jsonMap.get(key)) { in reformatJsonString()