Home | History | Annotate | Download | only in db

Lines Matching refs:baseline

30 	BuildResults baseline, current;
44 /*if (this.baseline == null || this.current == null) */initialize();
50 * Returns the baseline build name used to compare results with.
52 * @return The name of the baseline build
56 if (this.baseline == null) {
59 return this.baseline.getName();
63 * Returns the most recent baseline build results.
65 * @return The {@link BuildResults baseline build results}.
69 if (this.baseline == null) {
72 return this.baseline;
76 * Return the baseline build results run just before the given build name.
79 * @return The {@link BuildResults baseline results} preceding the given build name
83 if (this.baseline == null) {
94 return this.baseline;
99 * Returns the most recent baseline build result value.
101 * @return The value of the most recent baseline build results.
104 if (this.baseline == null) {
107 return this.baseline.getValue();
201 * <li>{@link #BASELINE_VALUE_INDEX}: the baseline value in milliseconds</li>
202 * <li>{@link #DELTA_VALUE_INDEX}: the difference between the build value and its more recent baseline</li>
205 * <li>{@link #BASELINE_ERROR_INDEX}: the error made while measuring the baseline value</li>
235 * <li>{@link AbstractResults#BASELINE_VALUE_INDEX}: the baseline value in milliseconds</li>
236 * <li>{@link AbstractResults#DELTA_VALUE_INDEX}: the difference between the build value and its more recent baseline</li>
239 * <li>{@link AbstractResults#BASELINE_ERROR_INDEX}: the error made while measuring the baseline value</li>
281 if (this.baseline == null || this.current == null) {
342 * Returns the delta between current and baseline builds results.
347 if (this.baseline == null || this.current == null) {
354 * Returns the standard error of the delta between current and baseline builds results.
360 if (this.baseline == null || this.current == null) {
470 // Set baseline and current builds
484 this.baseline = buildResults;
492 if (this.baseline == null) {
493 this.baseline = (lastBaseline == null) ? (BuildResults) this.children.get(0) : lastBaseline;
504 // Set delta between current vs. baseline and the corresponding error
506 double baselineValue = this.baseline.getValue();
512 long baselineCount = this.baseline.getCount(dim_id);
517 double baselineError = this.baseline.getError(dim_id);
529 buffer.append(this.baseline.getName());
537 buffer.append(Util.timeString((long)this.baseline.getValue()));
544 * baseline build or not.
547 * for the performance baseline build, <code>false</code> otherwise.
550 if (this.baseline == null || this.current == null) {
571 if (this.baseline == null || this.current == null) {
617 this.baseline = null;