Home | History | Annotate | Download | only in util

Lines Matching defs:label

23     private String label;
34 * <p>Sets the label, min, max, mean, sum of squared error, n, and mode as provided.
36 * @param label The (String) label to assign to the summary.
45 String label,
52 this.label = label;
64 * <p>Sets the label as provided. Initializes the mean, variance, and n (number of values seen)
67 * @param label The (String) label to assign to the summary.
70 public StatSummary(String label, VtsProfilingRegressionMode mode) {
71 this(label, Double.MAX_VALUE, Double.MIN_VALUE, 0, 0, 0, mode);
171 * Gets the label for the summarized statistics.
173 * @return The (string) label.
176 return label;