Home
last modified time | relevance | path

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

/libcore/tools/non-cts-json-generator/src/libcore/tools/generator/noncts/
DMain.java229 private final TreeMap<NonCtsCluster.Key, NonCtsCluster> clusterMap; field in Main.ExpectationWriter
231 private ExpectationWriter(TreeMap<NonCtsCluster.Key, NonCtsCluster> clusterMap) { in ExpectationWriter() argument
232 this.clusterMap = clusterMap; in ExpectationWriter()
237 TreeMap<NonCtsCluster.Key, NonCtsCluster> clusterMap = new TreeMap<>(); in from() local
240 clusterMap.compute(key, (k, cluster) -> { in from()
251 clusterMap.compute(key, (k, cluster) -> { in from()
260 return new ExpectationWriter(clusterMap); in from()
269 for (NonCtsCluster cluster : clusterMap.values()) { in write()