Searched refs:pps (Results 1 – 2 of 2) sorted by relevance
276 ProfilingPointSummaryEntity pps = ProfilingPointSummaryEntity.fromEntity(e); in testNewSummary() local277 assertNotNull(pps); in testNewSummary()279 pps.getBranch().equals(device.getBranch()) in testNewSummary()280 || pps.getBranch().equals(ProfilingPointSummaryEntity.ALL)); in testNewSummary()282 pps.getBuildFlavor().equals(ProfilingPointSummaryEntity.ALL) in testNewSummary()283 || pps.getBuildFlavor().equals(device.getBuildFlavor())); in testNewSummary()284 assertEquals(expected.getCount(), pps.getGlobalStats().getCount()); in testNewSummary()285 assertEquals(expected.getMax(), pps.getGlobalStats().getMax(), THRESHOLD); in testNewSummary()286 assertEquals(expected.getMin(), pps.getGlobalStats().getMin(), THRESHOLD); in testNewSummary()287 assertEquals(expected.getMean(), pps.getGlobalStats().getMean(), THRESHOLD); in testNewSummary()[all …]
160 ProfilingPointSummaryEntity pps = ProfilingPointSummaryEntity.fromEntity(e); in doGetHandler() local161 if (pps == null) continue; in doGetHandler()162 … plot.addSeriesData(Long.toString(pps.getStartTime()), pps.getSeries(), pps.getGlobalStats()); in doGetHandler()163 timestamps.add(pps.getStartTime()); in doGetHandler()