/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); 94 addEarlyResult(new Outcome(action.getName(), Result.UNSUPPORTED, 209 public synchronized void addEarlyResult(Outcome earlyFailure) { 222 public synchronized void recordOutcome(Outcome outcome) { 223 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:__anon32217
|
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/tensorflow/tensorflow/contrib/kinesis/kernels/ |
kinesis_dataset_ops.cc | 18 #include <aws/core/utils/Outcome.h> 229 auto outcome = client_->GetRecords( variable 231 if (!outcome.IsSuccess()) { 232 return errors::Unknown(outcome.GetError().GetExceptionName(), ": ", 233 outcome.GetError().GetMessage()); 235 if (outcome.GetResult().GetRecords().size() == 0) { 246 if (outcome.GetResult().GetRecords().size() != 1) { 248 outcome.GetResult().GetRecords().size(), 252 iterator_ = outcome.GetResult().GetNextShardIterator(); 254 const auto& data = outcome.GetResult().GetRecords()[0].GetData() 286 auto outcome = client_->DescribeStream( local [all...] |
/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/grpc-grpc/src/core/lib/gprpp/ |
thd_posix.cc | 140 bool outcome = false; local 142 grpc_core::New<ThreadInternalsPosix>(thd_name, thd_body, arg, &outcome); 143 if (outcome) { 152 *success = outcome;
|
thd_windows.cc | 136 bool outcome = false; local 137 impl_ = grpc_core::New<ThreadInternalsWindows>(thd_body, arg, &outcome); 138 if (outcome) { 147 *success = outcome;
|
/external/lmfit/demo/ |
curve1.c | 50 status.nfev, lm_infmsg[status.outcome] );
|
nonlin1.c | 55 status.nfev, lm_infmsg[status.outcome] );
|
/external/skia/tools/skqp/src/ |
skqp_main.cpp | 106 SkQP::RenderOutcome outcome; local 109 std::tie(outcome, except) = skqp.evaluateGM(backend, gmFactory); 113 } else if (outcome.fMaxError != 0) { 114 out << "FAILED: " << testName << " (" << outcome.fMaxError << ")\n";
|
/external/skqp/tools/skqp/src/ |
skqp_main.cpp | 106 SkQP::RenderOutcome outcome; local 109 std::tie(outcome, except) = skqp.evaluateGM(backend, gmFactory); 113 } else if (outcome.fMaxError != 0) { 114 out << "FAILED: " << testName << " (" << outcome.fMaxError << ")\n";
|
/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/grpc-grpc/src/python/grpcio_tests/tests/testing/ |
_client_application.py | 44 class Outcome(collections.namedtuple('Outcome', ('kind', 'code', 'details'))): 45 """Outcome of a client application scenario. 60 _SATISFACTORY_OUTCOME = Outcome(Outcome.Kind.SATISFACTORY, None, None) 61 _UNSATISFACTORY_OUTCOME = Outcome(Outcome.Kind.UNSATISFACTORY, None, None) 172 outcome = _run_stream_stream(stub) 174 outcomes[index] = outcome 183 for outcome in outcomes [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
|