Searched refs:profiles (Results 1 – 3 of 3) sorted by relevance
25 private final double[] profiles; field in ProfilesTableModel28 public ProfilesTableModel(double[] profiles) { in ProfilesTableModel() argument29 this.profiles = profiles; in ProfilesTableModel()35 return profiles == null ? 0 : profiles.length; in getRowCount()40 if (profiles == null) return ""; in getValueAt()47 return formatter.format(profiles[row]) + ""; in getValueAt()
57 double[] profiles = new double[data.length]; in loadProfiles() local59 profiles[i] = (Long.parseLong(data[i]) / 1000.0) / 1000.0; // convert to ms in loadProfiles()61 return profiles; in loadProfiles()
667 private void updateProfiles(double[] profiles) { in updateProfiles() argument668 profilingTable.setModel(new ProfilesTableModel(profiles)); in updateProfiles()669 setVisibleRowCount(profilingTable, profiles.length + 1); in updateProfiles()