Home | History | Annotate | Download | only in profiler

Lines Matching refs:Sample

54         List<HprofData.Sample> samples
55 = new ArrayList<HprofData.Sample>(data.getSamples());
58 for (HprofData.Sample sample : samples) {
59 HprofData.StackTrace stackTrace = sample.stackTrace;
60 int count = sample.count;
76 for (HprofData.Sample sample : samples) {
78 HprofData.StackTrace stackTrace = sample.stackTrace;
79 int count = sample.count;
93 private static final Comparator<HprofData.Sample> SAMPLE_COMPARATOR
94 = new Comparator<HprofData.Sample>() {
95 public int compare(HprofData.Sample s1, HprofData.Sample s2) {