Lines Matching defs:label

29  * with name of test as the label, e.g. EmailPerformanceTest.
34 * with the name of test case as the label, e.g. testSimpleSendMailSequence.
71 * @param label description of code block between beginSnapshot and
75 public void writeBeginSnapshot(String label);
93 * @param label description of code block between startTiming and
97 public void writeStartTiming(String label);
116 * @param label short description of the metric that was measured
119 public void writeMeasurement(String label, long value);
126 * @param label short description of the metric that was measured
129 public void writeMeasurement(String label, float value);
136 * @param label short description of the metric that was measured
139 public void writeMeasurement(String label, String value);
149 public static final String METRIC_KEY_LABEL = "label";
302 * @param label description of code block between beginSnapshot and
303 * endSnapshot, used to label output
305 public void beginSnapshot(String label) {
307 mPerfWriter.writeBeginSnapshot(label);
359 * @param label description of code block between startTiming and
360 * stopTiming, used to label output
362 public void startTiming(String label) {
364 mPerfWriter.writeStartTiming(label);
376 * @param label description of code block between startTiming and
378 * to label output
382 * <li>{@link #METRIC_KEY_LABEL label}
387 public Bundle addIteration(String label) {
392 iteration.putString(METRIC_KEY_LABEL, label);
405 * @param label description of code block between addIteration or
406 * startTiming and stopTiming, used to label output
411 public Bundle stopTiming(String label) {
412 addIteration(label);
421 * @param label short description of the metric that was measured
424 public void addMeasurement(String label, long value) {
426 mPerfWriter.writeMeasurement(label, value);
432 * @param label short description of the metric that was measured
435 public void addMeasurement(String label, float value) {
437 mPerfWriter.writeMeasurement(label, value);
443 * @param label short description of the metric that was measured
446 public void addMeasurement(String label, String value) {
448 mPerfWriter.writeMeasurement(label, value);