Lines Matching defs:buildName

144 	String buildName = getName();
145 if (buildName == null) return ""; //$NON-NLS-1$
348 private String[] read(boolean local, String buildName, String[][] configs, boolean force, File dataDir, String taskName, SubMonitor subMonitor) {
360 allScenariosSize = readScenarios(buildName, subMonitor.newChild(10)) ;
397 if (buildName != null) {
398 tnBuffer.append(buildName).append(": "); //$NON-NLS-1$
410 if (local || (buildName == null && force)) {
434 componentResults.updateBuild(buildName, scenarios, force, dataDir, subMonitor.newChild(1), timeGuess);
456 * @param buildName The name of the build
469 public String[] readAll(String buildName, String[][] configs, String pattern, File dataDir, int threshold, IProgressMonitor monitor) {
490 if (buildName != null) {
491 this.name = buildName;
492 buildMissing = Arrays.binarySearch(names, buildName, Util.BUILD_DATE_COMPARATOR) < 0;
610 private int readScenarios(String buildName, SubMonitor subMonitor) throws OperationCanceledException {
614 if (buildName == null) {
617 titleSuffix = "all database scenarios for "+buildName+" build..."; //$NON-NLS-1$ //$NON-NLS-2$
621 this.allScenarios = DB_Results.queryAllScenarios(this.scenarioPattern, buildName);
663 String buildName = (String) buildNames.next();
664 if (this.lastBuildName == null || Util.getBuildDate(buildName).compareTo(Util.getBuildDate(this.lastBuildName)) <= 0) {
665 this.allBuildNames[n++] = buildName;
718 * @param buildName The name of the baseline build
720 public void setBaselineName(String buildName) {
721 this.baselineName = buildName;
848 * @param buildName The build name to read new data
856 public String[] updateBuild(String buildName, boolean force, File dataDir, IProgressMonitor monitor) {
860 if (buildName == null) {
874 read(false, buildName, null, force, dataDir, taskName, subMonitor);
877 if (buildName != null && !buildName.startsWith(DB_Results.getDbBaselinePrefix())) {
878 this.name = buildName;