HomeSort by relevance Sort by last modified time
    Searched refs:outcome (Results 1 - 25 of 143) sorted by null

1 2 3 4 5 6

  /external/vogar/src/vogar/
AnnotatedOutcome.java 27 * Contains an outcome for a test, along with some metadata pertaining to the history of this test,
28 * including a list of previous outcomes, an outcome corresponding to the tag Vogar is being run
40 private final Outcome outcome; field in class:AnnotatedOutcome
42 private final SortedMap<Long, Outcome> previousOutcomes = new TreeMap<Long, Outcome>();
44 AnnotatedOutcome(Outcome outcome, Expectation expectation) {
46 this.outcome = outcome;
    [all...]
Expectation.java 117 * Returns true if {@code outcome} matches this expectation.
119 public boolean matches(Outcome outcome) {
120 return patternMatches(outcome) && (bugIsOpen || result == outcome.getResult());
123 private boolean patternMatches(Outcome outcome) {
124 return pattern.matcher(outcome.getOutput()).matches();
XmlReportPrinter.java 75 public int generateReports(Collection<Outcome> results) {
88 private Map<String, Suite> testsToSuites(Collection<Outcome> outcomes) {
90 for (Outcome outcome : outcomes) {
91 if (outcome.getResult() == Result.UNSUPPORTED) {
95 String suiteName = outcome.getSuiteName();
102 suite.outcomes.add(outcome);
104 Expectation expectation = expectationStore.get(outcome);
105 if (!expectation.matches(outcome)) {
106 if (outcome.getResult() == Result.EXEC_FAILED)
    [all...]
JarSuggestions.java 40 public void addSuggestionsFromOutcome(Outcome outcome, ClassFileIndex classFileIndex,
42 Result result = outcome.getResult();
46 Set<File> suggestedJars = classFileIndex.suggestClasspaths(outcome.getOutput());
Driver.java 55 private final Map<String, Outcome> outcomes = Collections.synchronizedMap(
56 new LinkedHashMap<String, Outcome>());
89 Outcome outcome = outcomes.get(action.getName()); local
90 if (outcome != null) {
91 addEarlyResult(outcome);
93 addEarlyResult(new Outcome(action.getName(), Result.UNSUPPORTED,
208 public synchronized void addEarlyResult(Outcome earlyFailure) {
221 public synchronized void recordOutcome(Outcome outcome) {
222 outcomes.put(outcome.getName(), outcome); local
    [all...]
Outcome.java 28 * An outcome of an action. Some actions may have multiple outcomes. For
29 * example, JUnit tests have one outcome for each test method.
31 public final class Outcome {
38 public Outcome(String outcomeName, Result result, List<String> outputLines) {
45 public Outcome(String outcomeName, Result result, String outputLine, Date date) {
52 public Outcome(String outcomeName, Result result, String outputLine) {
59 public Outcome(String outcomeName, Result result, Throwable throwable) {
128 * Returns whether the result indicates that the contents of the Outcome are important.
151 * Returns a filesystem db path for this outcome. For example, a path for an outcome with nam
160 Outcome outcome = (Outcome) o; local
    [all...]
  /cts/libs/vogar-expect/src/vogar/
Expectation.java 95 * Returns true if {@code outcome} matches this expectation.
97 public boolean matches(Outcome outcome) {
98 return patternMatches(outcome) && (bugIsOpen || result == outcome.getResult());
101 private boolean patternMatches(Outcome outcome) {
102 return pattern.matcher(outcome.getOutput()).matches();
AnnotatedOutcome.java 26 * Contains an outcome for a test, along with some metadata pertaining to the history of this test,
27 * including a list of previous outcomes, an outcome corresponding to the tag Vogar is being run
39 private final Outcome outcome; field in class:AnnotatedOutcome
41 private final SortedMap<Long, Outcome> previousOutcomes;
44 private final Outcome tagOutcome;
47 AnnotatedOutcome(Outcome outcome, Expectation expectation,
48 SortedMap<Long, Outcome> previousOutcomes, String tagName, Outcome tagOutcome
    [all...]
Outcome.java 28 * An outcome of an action. Some actions may have multiple outcomes. For
29 * example, JUnit tests have one outcome for each test method.
31 public final class Outcome {
38 public Outcome(String outcomeName, Result result, List<String> outputLines) {
45 public Outcome(String outcomeName, Result result, String outputLine, Date date) {
52 public Outcome(String outcomeName, Result result, String outputLine) {
59 public Outcome(String outcomeName, Result result, Throwable throwable) {
128 * Returns whether the result indicates that the contents of the Outcome are important.
144 * Returns a filesystem db path for this outcome. For example, a path for an outcome with nam
153 Outcome outcome = (Outcome) o; local
    [all...]
  /external/libevent/test/
tinytest.c 76 enum outcome { SKIP=2, OK=1, FAIL=0 }; enum
77 static enum outcome cur_test_outcome = 0;
91 static enum outcome
95 int outcome; local
106 outcome = cur_test_outcome;
110 outcome = FAIL;
113 return outcome;
120 static enum outcome
194 perror("write outcome to pipe");
211 perror("read outcome from pipe")
226 enum outcome outcome; local
    [all...]
  /external/lmfit/lib/
lmstruct.h 66 int outcome; /* Status indicator. Nonnegative values are used as index member in struct:__anon28500
lmmin.c 149 S->outcome = 0; /* status code */
157 S->outcome = 10;
164 S->outcome = 10;
171 S->outcome = 10;
177 S->outcome = 10;
182 S->outcome = 10;
189 S->outcome = 10;
199 S->outcome = 9;
247 S->outcome = 12; /* nan */
250 S->outcome = 0; /* sum of squares almost zero, nothing to do *
    [all...]
  /external/swiftshader/third_party/LLVM/test/lib/
llvm.exp 2 proc execOneLine { test PRS outcome lineno line } {
144 set outcome PASS
191 set outcome XFAIL
195 set outcome XFAIL
206 set outcome PASS
209 set outcome PASS
225 set resultmsg [execOneLine $test $PRNUMS $outcome $i $theLine ]
227 if { $outcome == "XFAIL" } {
242 if { $outcome == "XFAIL" } {
  /external/vogar/test/vogar/target/
AbstractTestRunnerTest.java 139 String output = outcome(testClassName, methodName, message, Result.EXEC_FAILED);
144 String output = outcome(testClassName, methodName, null, Result.SUCCESS);
149 String output = outcome(testClassName, methodName, message, Result.SUCCESS);
155 String output = outcome(
165 String output = outcome(testClassName, null, message, Result.UNSUPPORTED);
179 private static String outcome( method in class:AbstractTestRunnerTest.ExpectedResults
183 return String.format("//00xx{\"outcome\":\"%s\"}\n"
  /external/lmfit/demo/
curve1.c 50 status.nfev, lm_infmsg[status.outcome] );
nonlin1.c 55 status.nfev, lm_infmsg[status.outcome] );
curve2.c 48 status.nfev, lm_infmsg[status.outcome] );
surface1.c 75 status.nfev, lm_infmsg[status.outcome] );
  /prebuilts/go/darwin-x86/doc/codewalk/
pig.go 26 // roll returns the (result, turnIsOver) outcome of simulating a die roll.
30 outcome := rand.Intn(6) + 1 // A random int in [1, 6]
31 if outcome == 1 {
34 return score{s.player, s.opponent, outcome + s.thisTurn}, false
37 // stay returns the (result, turnIsOver) outcome of staying.
  /prebuilts/go/linux-x86/doc/codewalk/
pig.go 26 // roll returns the (result, turnIsOver) outcome of simulating a die roll.
30 outcome := rand.Intn(6) + 1 // A random int in [1, 6]
31 if outcome == 1 {
34 return score{s.player, s.opponent, outcome + s.thisTurn}, false
37 // stay returns the (result, turnIsOver) outcome of staying.
  /external/vogar/src/vogar/tasks/
RunActionTask.java 23 import vogar.Outcome;
77 * outcome that wasn't completed.
112 run.driver.addEarlyResult(new Outcome(earlyResultOutcome, Result.ERROR,
124 run.driver.addEarlyResult(new Outcome(actionName, Result.ERROR, e));
136 * @param skipPast the last outcome to skip, or null to run all outcomes.
210 run.console.outcome(outcomeName);
214 @Override public void finish(Outcome outcome) {
219 lastFinishedOutcome = toQualifiedOutcomeName(outcome.getName());
221 run.driver.recordOutcome(new Outcome(lastFinishedOutcome, outcome.getResult()
    [all...]
  /external/llvm/test/MC/ARM/
aligned-blx.s 18 @ Align this Thumb function so we can predict the outcome of
misaligned-blx.s 22 @ Align this Thumb function so we can predict the outcome of
  /external/valgrind/memcheck/tests/x86/
pushfpopf_s.S 28 # resulting flag definedness depends on outcome of sub above
  /libcore/ojluni/src/main/java/java/util/concurrent/
FutureTask.java 81 * transient values of COMPLETING (while outcome is being set) or
105 private Object outcome; // non-volatile, protected by state reads/writes field in class:FutureTask
118 Object x = outcome;
232 outcome = v;
250 outcome = t;

Completed in 890 milliseconds

1 2 3 4 5 6