Searched defs:mHistogram (Results 1 - 1 of 1) sorted by relevance

/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DBaseCluster.java39 protected HashMap<String, Long> mHistogram = new HashMap<String, Long>(); field in class:BaseCluster
133 mHistogram.clear();
134 mHistogram.putAll(cluster.mHistogram);
139 for (Map.Entry<String, Long> entry : cluster.mHistogram.entrySet()) {
143 if (mHistogram.containsKey(timeLabel)) {
144 duration += mHistogram.get(timeLabel);
146 mHistogram.put(timeLabel, duration);
157 return mHistogram;
161 mHistogram
[all...]

Completed in 227 milliseconds