Home
last modified time | relevance | path

Searched refs:Outcome (Results 1 – 15 of 15) sorted by relevance

/external/vogar/src/vogar/
DAnnotatedOutcome.java40 private final Outcome outcome;
42 private final SortedMap<Long, Outcome> previousOutcomes = new TreeMap<Long, Outcome>();
44 AnnotatedOutcome(Outcome outcome, Expectation expectation) { in AnnotatedOutcome()
49 public void add(long date, Outcome outcome) { in add()
53 public Outcome getOutcome() { in getOutcome()
67 for (Outcome previousOutcome : previousOutcomes.values()) { in getPreviousResultValues()
DOutcome.java31 public final class Outcome { class
38 public Outcome(String outcomeName, Result result, List<String> outputLines) { in Outcome() method in Outcome
45 public Outcome(String outcomeName, Result result, String outputLine, Date date) { in Outcome() method in Outcome
52 public Outcome(String outcomeName, Result result, String outputLine) { in Outcome() method in Outcome
59 public Outcome(String outcomeName, Result result, Throwable throwable) { in Outcome() method in Outcome
159 if (o instanceof Outcome) { in equals()
160 Outcome outcome = (Outcome) o; in equals()
DXmlReportPrinter.java75 public int generateReports(Collection<Outcome> results) { in generateReports()
88 private Map<String, Suite> testsToSuites(Collection<Outcome> outcomes) { in testsToSuites()
90 for (Outcome outcome : outcomes) { in testsToSuites()
118 private final List<Outcome> outcomes = new ArrayList<Outcome>();
138 for (Outcome outcome : outcomes) { in print()
145 private void print(KXmlSerializer serializer, Outcome outcome) throws IOException { in print()
DOutcomeStore.java68 public Map<String, AnnotatedOutcome> read(Map<String, Outcome> outcomes) { in read()
70 for (Map.Entry<String, Outcome> entry : outcomes.entrySet()) { in read()
71 Outcome outcome = entry.getValue(); in read()
117 annotatedOutcome.add(fileDate, new Outcome(outcomeName, result, in loadOutcomes()
124 public void write(Map<String, Outcome> outcomes) { in write()
136 for (Map.Entry<String, Outcome> entry : outcomes.entrySet()) { in write()
DXmlReportReader.java44 public Collection<Outcome> readSuiteReport(File xmlReport) { in readSuiteReport()
69 private Collection<Outcome> readTestSuite(KXmlParser parser) in readTestSuite()
71 Collection<Outcome> outcomes = new ArrayList<Outcome>(); in readTestSuite()
116 outcomes.add(new Outcome(classname + "#" + name, result, resultOutput, date)); in readTestSuite()
DDriver.java55 private final Map<String, Outcome> outcomes = Collections.synchronizedMap(
56 new LinkedHashMap<String, Outcome>());
89 Outcome outcome = outcomes.get(action.getName()); in buildAndRun()
93 addEarlyResult(new Outcome(action.getName(), Result.UNSUPPORTED, in buildAndRun()
213 public synchronized void addEarlyResult(Outcome earlyFailure) { in addEarlyResult()
226 public synchronized void recordOutcome(Outcome outcome) { in recordOutcome()
DActionFinder.java29 private final Map<String, Outcome> outcomes;
31 public ActionFinder(Log log, Map<String, Action> actions, Map<String, Outcome> outcomes) { in ActionFinder()
65 outcomes.put(actionName, new Outcome(actionName, Result.UNSUPPORTED, e)); in findActionsRecursive()
DExpectation.java119 public boolean matches(Outcome outcome) { in matches()
123 private boolean patternMatches(Outcome outcome) { in patternMatches()
DJarSuggestions.java40 public void addSuggestionsFromOutcome(Outcome outcome, ClassFileIndex classFileIndex, in addSuggestionsFromOutcome()
DExpectationStore.java77 public Expectation get(Outcome outcome) { in get()
/external/vogar/src/vogar/tasks/
DRunActionTask.java23 import vogar.Outcome;
112 run.driver.addEarlyResult(new Outcome(earlyResultOutcome, Result.ERROR, in execute()
124 run.driver.addEarlyResult(new Outcome(actionName, Result.ERROR, e)); in execute()
215 @Override public void finish(Outcome outcome) { in finish()
222 run.driver.recordOutcome(new Outcome(lastFinishedOutcome, outcome.getResult(), in finish()
DBuildActionTask.java35 import vogar.Outcome;
72 driver.addEarlyResult(new Outcome(action.getName(), Result.COMPILE_FAILED, in execute()
76 driver.addEarlyResult(new Outcome(action.getName(), Result.ERROR, e)); in execute()
/external/vogar/src/vogar/monitor/
DHostMonitor.java29 import vogar.Outcome;
130 handler.finish(new Outcome(currentOutcome, currentResult, output.toString())); in followProcess()
158 void finish(Outcome outcome); in finish()
/external/r8/src/test/java/com/android/tools/r8/
DJctfTestSpecifications.java24 public enum Outcome { enum in JctfTestSpecifications
4826 public static final Outcome getExpectedOutcome( in getExpectedOutcome()
4832 Outcome outcome = null; in getExpectedOutcome()
4835 outcome = Outcome.FAILS_WITH_ART; in getExpectedOutcome()
4839 outcome = Outcome.TIMEOUTS_WITH_ART; in getExpectedOutcome()
4843 outcome = Outcome.FLAKY_WITH_ART; in getExpectedOutcome()
4845 return outcome == null ? Outcome.PASSES : outcome; in getExpectedOutcome()
DR8RunArtTestsTest.java1176 JctfTestSpecifications.Outcome expectedOutcome = in runJctfTest()
1180 expectedOutcome == JctfTestSpecifications.Outcome.TIMEOUTS_WITH_ART in runJctfTest()
1181 || expectedOutcome == JctfTestSpecifications.Outcome.FLAKY_WITH_ART, in runJctfTest()
1182 expectedOutcome == JctfTestSpecifications.Outcome.FAILS_WITH_ART); in runJctfTest()
1269 expectedOutcome == JctfTestSpecifications.Outcome.TIMEOUTS_WITH_ART in runJctfTest()
1270 || expectedOutcome == JctfTestSpecifications.Outcome.FLAKY_WITH_ART, in runJctfTest()
1271 expectedOutcome == JctfTestSpecifications.Outcome.FAILS_WITH_ART); in runJctfTest()