Home | History | Annotate | Download | only in db

Lines Matching refs:scenarios

159  * Get the scenarios of a given component.
171 * Get the scenarios which have a summary for a given component.
180 List scenarios = new ArrayList();
183 scenarios.addAll(componentResults.getSummaryScenarios(true, config));
185 return scenarios;
359 // Read all scenarios
391 List scenarios = this.allScenarios == null ? null : (List) this.allScenarios.get(componentName);
408 if (scenarios == null && !local) continue;
424 componentResults.readLocalFile(dataDir, scenarios);
434 componentResults.updateBuild(buildName, scenarios, force, dataDir, subMonitor.newChild(1), timeGuess);
459 * @param pattern The pattern of the concerned scenarios
584 // Write scenarios info
592 List scenarios = new ArrayList(size);
594 scenarios.add(new ScenarioResults(stream.readInt(), stream.readUTF(), stream.readUTF()));
596 this.allScenarios.put(this.components[i], scenarios);
615 titleSuffix = "all database scenarios..."; //$NON-NLS-1$
617 titleSuffix = "all database scenarios for "+buildName+" build..."; //$NON-NLS-1$ //$NON-NLS-2$
630 List scenarios = (List) this.allScenarios.get(componentName);
631 allScenariosSize += scenarios.size();
929 // Write scenarios info
934 List scenarios = (List) this.allScenarios.get(this.components[i]);
935 int size = scenarios.size();
938 final ScenarioResults scenarioResults = (ScenarioResults)scenarios.get(j);