/external/vogar/src/vogar/ |
D | XmlReportPrinter.java | 90 for (Outcome outcome : outcomes) { in testsToSuites() 91 if (outcome.getResult() == Result.UNSUPPORTED) { in testsToSuites() 95 String suiteName = outcome.getSuiteName(); in testsToSuites() 102 suite.outcomes.add(outcome); in testsToSuites() 104 Expectation expectation = expectationStore.get(outcome); in testsToSuites() 105 if (!expectation.matches(outcome)) { in testsToSuites() 106 if (outcome.getResult() == Result.EXEC_FAILED) { in testsToSuites() 138 for (Outcome outcome : outcomes) { in print() 139 print(serializer, outcome); in print() 145 private void print(KXmlSerializer serializer, Outcome outcome) throws IOException { in print() argument [all …]
|
D | AnnotatedOutcome.java | 40 private final Outcome outcome; field in AnnotatedOutcome 44 AnnotatedOutcome(Outcome outcome, Expectation expectation) { in AnnotatedOutcome() argument 46 this.outcome = outcome; in AnnotatedOutcome() 49 public void add(long date, Outcome outcome) { in add() argument 50 previousOutcomes.put(date, outcome); in add() 54 return outcome; in getOutcome() 58 return outcome.getName(); in getName() 62 return outcome.getResultValue(expectation); in getResultValue()
|
D | Driver.java | 89 Outcome outcome = outcomes.get(action.getName()); in buildAndRun() local 90 if (outcome != null) { in buildAndRun() 91 addEarlyResult(outcome); in buildAndRun() 219 public synchronized void recordOutcome(Outcome outcome) { in recordOutcome() argument 220 outcomes.put(outcome.getName(), outcome); in recordOutcome() local 221 Expectation expectation = run.expectationStore.get(outcome); in recordOutcome() 222 ResultValue resultValue = outcome.getResultValue(expectation); in recordOutcome() 234 Result result = outcome.getResult(); in recordOutcome() 235 run.console.outcome(outcome.getName()); in recordOutcome() 236 run.console.printResult(outcome.getName(), result, resultValue, expectation); in recordOutcome() [all …]
|
D | Expectation.java | 119 public boolean matches(Outcome outcome) { in matches() argument 120 return patternMatches(outcome) && (bugIsOpen || result == outcome.getResult()); in matches() 123 private boolean patternMatches(Outcome outcome) { in patternMatches() argument 124 return pattern.matcher(outcome.getOutput()).matches(); in patternMatches()
|
D | JarSuggestions.java | 40 public void addSuggestionsFromOutcome(Outcome outcome, ClassFileIndex classFileIndex, in addSuggestionsFromOutcome() argument 42 Result result = outcome.getResult(); in addSuggestionsFromOutcome() 46 Set<File> suggestedJars = classFileIndex.suggestClasspaths(outcome.getOutput()); in addSuggestionsFromOutcome()
|
D | Outcome.java | 160 Outcome outcome = (Outcome) o; in equals() local 161 return outcomeName.equals(outcome.outcomeName) in equals() 162 && result == outcome.result in equals() 163 && output.equals(outcome.output); in equals()
|
D | ExpectationStore.java | 77 public Expectation get(Outcome outcome) { in get() argument 78 Expectation exactNameMatch = outcomes.get(outcome.getName()); in get() 84 if (entry.getValue().matches(outcome)) { in get() 89 Expectation byName = getByNameOrPackage(outcome.getName()); in get()
|
D | OutcomeStore.java | 71 Outcome outcome = entry.getValue(); in read() local 72 Expectation expectation = expectationStore.get(outcome); in read() 73 result.put(entry.getKey(), new AnnotatedOutcome(outcome, expectation)); in read()
|
D | Console.java | 139 public void outcome(String name) {} in outcome() method in Console 455 @Override public synchronized void outcome(String name) { in outcome() method in Console.StreamingConsole
|
/external/vogar/src/vogar/tasks/ |
D | RunActionTask.java | 200 run.console.outcome(outcomeName); in output() 204 @Override public void finish(Outcome outcome) { in finish() argument 209 lastFinishedOutcome = toQualifiedOutcomeName(outcome.getName()); in finish() 211 run.driver.recordOutcome(new Outcome(lastFinishedOutcome, outcome.getResult(), in finish() 212 outcome.getOutputLines())); in finish()
|
/external/v8/tools/testrunner/local/ |
D | statusfile.py | 108 for outcome in item[1:]: 109 assert type(outcome) == str 110 _AddOutcome(result, outcome)
|
D | progress.py | 124 outcome = 'CRASH' 126 outcome = 'FAIL' 128 outcome = 'pass' 129 print 'Done running %s: %s' % (test.GetLabel(), outcome)
|
D | testsuite.py | 208 outcome = self.GetOutcome(testcase) 209 return not outcome in (testcase.outcomes or [statusfile.PASS])
|
/external/crcalc/src/com/hp/creals/ |
D | UnaryCRFunction.java | 486 int outcome; in approximate() local 497 outcome = sloppy_compare(f_guess, arg_appr); in approximate() 498 if (outcome != 0) break; in approximate() 544 if (outcome > 0) { in approximate()
|
/external/valgrind/memcheck/tests/x86/ |
D | pushfpopf_s.S | 28 # resulting flag definedness depends on outcome of sub above
|
/external/vogar/src/vogar/monitor/ |
D | HostMonitor.java | 162 void finish(Outcome outcome); in finish() argument
|
/external/v8/test/webkit/ |
D | try-try-return-finally-finally-expected.txt | 24 …ly's with interesting control statements nested within them. The correct outcome is for this test …
|
D | try-catch-try-try-catch-try-finally-return-catch-finally-expected.txt | 24 … that gets inlined inside a complicated catch/finally stack. The correct outcome is for this test …
|
/external/protobuf/gtest/src/ |
D | gtest-death-test.cc | 332 DeathTestOutcome outcome() const { return outcome_; } in outcome() function in testing::internal::DeathTestImpl 457 switch (outcome()) { in Passed()
|
/external/mesa3d/src/gtest/src/ |
D | gtest-death-test.cc | 345 DeathTestOutcome outcome() const { return outcome_; } in outcome() function in testing::internal::DeathTestImpl 500 switch (outcome()) { in Passed()
|
/external/llvm/utils/unittest/googletest/src/ |
D | gtest-death-test.cc | 348 DeathTestOutcome outcome() const { return outcome_; } in outcome() function in testing::internal::DeathTestImpl 503 switch (outcome()) { in Passed()
|
/external/google-breakpad/src/testing/gtest/src/ |
D | gtest-death-test.cc | 383 DeathTestOutcome outcome() const { return outcome_; } in outcome() function in testing::internal::DeathTestImpl 538 switch (outcome()) { in Passed()
|
/external/gtest/src/ |
D | gtest-death-test.cc | 385 DeathTestOutcome outcome() const { return outcome_; } in outcome() function in testing::internal::DeathTestImpl 540 switch (outcome()) { in Passed()
|
/external/llvm/test/DebugInfo/X86/ |
D | nodebug_with_debug_loc.ll | 8 ; since 'f1' is a nodebug function, there's no positive outcome to confirm, just
|
/external/mesa3d/src/gallium/docs/source/ |
D | context.rst | 381 A drawing command can be skipped depending on the outcome of a query 389 drawing commands will be predicated on the outcome of the query. If 397 has completed, drawing will be predicated on the outcome of the query.
|