Home
last modified time | relevance | path

Searched refs:outcome (Results 1 – 25 of 58) sorted by relevance

123

/external/vogar/src/vogar/
DXmlReportPrinter.java90 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 …]
DAnnotatedOutcome.java40 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()
DDriver.java89 Outcome outcome = outcomes.get(action.getName()); in buildAndRun() local
90 if (outcome != null) { in buildAndRun()
91 addEarlyResult(outcome); in buildAndRun()
226 public synchronized void recordOutcome(Outcome outcome) { in recordOutcome() argument
227 outcomes.put(outcome.getName(), outcome); in recordOutcome() local
228 Expectation expectation = run.expectationStore.get(outcome); in recordOutcome()
229 ResultValue resultValue = outcome.getResultValue(expectation); in recordOutcome()
241 Result result = outcome.getResult(); in recordOutcome()
242 run.console.outcome(outcome.getName()); in recordOutcome()
243 run.console.printResult(outcome.getName(), result, resultValue, expectation); in recordOutcome()
[all …]
DExpectation.java119 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()
DJarSuggestions.java40 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()
DOutcome.java160 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()
DOutcomeStore.java71 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()
DExpectationStore.java77 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()
DConsole.java139 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/chromium-trace/catapult/experimental/statistical_analysis/
Dcompare_benchmark_results.py38 def PrintOutcomeLine(name, max_name_length, outcome, print_p_value): argument
40 print('{:{}}{}'.format(name, max_name_length + 2, outcome[0]), end='')
42 print('\t{:.10f}'.format(outcome[1]), end='')
61 for metric_name, outcome in test_outcome_dict.iteritems():
62 PrintOutcomeLine(metric_name, max_metric_name_len, outcome, print_p_value)
83 outcome = (combined_p_value < significance_level, combined_p_value)
84 PrintOutcomeLine(metric_name, max_metric_name_len, outcome, print_p_value)
/external/vogar/src/vogar/tasks/
DRunActionTask.java200 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/src/compiler/
Doperation-typer.cc384 ComparisonOutcome outcome) { in Invert() argument
386 if ((outcome & kComparisonUndefined) != 0) result |= kComparisonUndefined; in Invert()
387 if ((outcome & kComparisonTrue) != 0) result |= kComparisonFalse; in Invert()
388 if ((outcome & kComparisonFalse) != 0) result |= kComparisonTrue; in Invert()
392 Type* OperationTyper::FalsifyUndefined(ComparisonOutcome outcome) { in FalsifyUndefined() argument
393 if ((outcome & kComparisonFalse) != 0 || in FalsifyUndefined()
394 (outcome & kComparisonUndefined) != 0) { in FalsifyUndefined()
395 return (outcome & kComparisonTrue) != 0 ? Type::Boolean() in FalsifyUndefined()
399 DCHECK((outcome & kComparisonTrue) != 0); in FalsifyUndefined()
Dtyper.cc361 ComparisonOutcome outcome, Typer* t) { in Invert() argument
363 if ((outcome & kComparisonUndefined) != 0) result |= kComparisonUndefined; in Invert()
364 if ((outcome & kComparisonTrue) != 0) result |= kComparisonFalse; in Invert()
365 if ((outcome & kComparisonFalse) != 0) result |= kComparisonTrue; in Invert()
370 Type* Typer::Visitor::FalsifyUndefined(ComparisonOutcome outcome, Typer* t) { in FalsifyUndefined() argument
371 if ((outcome & kComparisonFalse) != 0 || in FalsifyUndefined()
372 (outcome & kComparisonUndefined) != 0) { in FalsifyUndefined()
373 return (outcome & kComparisonTrue) != 0 ? Type::Boolean() in FalsifyUndefined()
377 DCHECK((outcome & kComparisonTrue) != 0); in FalsifyUndefined()
/external/v8/tools/testrunner/local/
Dtestsuite.py186 for outcome in t.outcomes:
187 if outcome.startswith('Flags: '):
188 t.flags += outcome[7:].split()
282 outcome = self.GetOutcome(testcase)
283 return not outcome in (testcase.outcomes or [statusfile.PASS])
Dstatusfile.py118 for outcome in item[1:]:
119 assert type(outcome) == str
120 _AddOutcome(result, outcome)
Dprogress.py150 outcome = 'CRASH'
152 outcome = 'FAIL'
154 outcome = 'pass'
155 print 'Done running %s: %s' % (test.GetLabel(), outcome)
/external/v8/test/test262/
Dtestcfg.py202 outcome = self.GetOutcome(testcase)
205 return outcome != statusfile.FAIL
206 return not outcome in (testcase.outcomes or [statusfile.PASS])
/external/webrtc/webrtc/test/
Dfake_network_pipe.cc35 int outcome = rand() % 100; in UniformLoss() local
36 return outcome < loss_percent; in UniformLoss()
/external/crcalc/src/com/hp/creals/
DUnaryCRFunction.java486 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/
Dpushfpopf_s.S28 # resulting flag definedness depends on outcome of sub above
/external/webrtc/webrtc/tools/e2e_quality/audio/
DREADME11 resampling in PulseAudio. This will reduce the resampling impact on the outcome
/external/vogar/src/vogar/monitor/
DHostMonitor.java162 void finish(Outcome outcome); in finish() argument
/external/v8/test/webkit/
Dtry-try-return-finally-finally-expected.txt24 …ly's with interesting control statements nested within them. The correct outcome is for this test …
Dtry-catch-try-try-catch-try-finally-return-catch-finally-expected.txt24 … that gets inlined inside a complicated catch/finally stack. The correct outcome is for this test …
/external/protobuf/gtest/src/
Dgtest-death-test.cc332 DeathTestOutcome outcome() const { return outcome_; } in outcome() function in testing::internal::DeathTestImpl
457 switch (outcome()) { in Passed()

123