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

1 2 3 4 5 6 7 8

  /cts/libs/vogar-expect/src/vogar/
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...]
Expectation.java 104 * Returns true if {@code outcome} matches this expectation.
106 public boolean matches(Outcome outcome) {
107 return patternMatches(outcome) && (bugIsOpen || result == outcome.getResult());
110 private boolean patternMatches(Outcome outcome) {
111 return pattern.matcher(outcome.getOutput()).matches();
ExpectationStore.java 41 * <li>Outcome expectations name an outcome (or its prefix, such as
45 * outcome. These expectations are useful for hiding failures caused by
49 * <p>If an outcome matches both an outcome expectation and a failure
50 * expectation, the outcome expectation will be returned.
60 * Finds the expected result for the specified action or outcome name. This
69 * Finds the expected result for the specified outcome after it has
71 * outcome's output.
77 public Expectation get(Outcome outcome)
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
test_attempt_state.cc 37 const LoginFailure& outcome) {
39 online_outcome_ = outcome;
online_attempt.h 58 const LoginFailure& outcome);
test_attempt_state.h 33 const LoginFailure& outcome);
auth_attempt_state.cc 56 const LoginFailure& outcome) {
59 online_outcome_ = outcome;
auth_attempt_state.h 35 // Copy |credentials| and |outcome| into this object, so we can have
40 const LoginFailure& outcome);
cryptohome_op_unittest.cc 111 void RunTest(CryptohomeOp* op, bool outcome, int code) {
112 mock_library_->SetAsyncBehavior(outcome, code);
122 EXPECT_EQ(outcome, state_.cryptohome_outcome());
online_attempt.cc 153 const LoginFailure& outcome) {
154 attempt_->RecordOnlineLoginStatus(credentials, outcome);
  /external/chromium/chrome/browser/chromeos/cros/
mock_cryptohome_library.h 25 void SetUp(bool outcome, int code) {
26 outcome_ = outcome;
95 void SetAsyncBehavior(bool outcome, int code) {
96 outcome_ = outcome;
  /external/chromium/chrome/browser/first_run/
first_run_import_observer.h 13 // This class is used by FirstRun::ImportNow to get notified of the outcome of
  /external/webkit/LayoutTests/fast/dom/Node/
fragment-mutation.html 11 function logResult(description, outcome)
13 log.push({ description: description, outcome: outcome});
19 return "<li>" + entry.description + ": " + entry.outcome;
  /external/chromium/chrome/browser/diagnostics/
diagnostics_test.h 17 // for the outcome of the test.
33 // The actual outcome of the test should be set using the RecordXX functions.
diagnostics_model.h 15 // uniform interface for querying the outcome.
40 // Called when the test has finished regardless of outcome.
  /external/chromium/chrome/common/extensions/docs/static/
api_index.html 36 If you need to know the outcome of an operation,
  /external/valgrind/main/memcheck/tests/x86/
pushfpopf_s.S 26 # resulting flag definedness depends on outcome of sub above
  /external/oauth/core/src/main/java/net/oauth/http/
HttpResponseMessage.java 53 /** The statusCode that indicates a normal outcome. */
  /frameworks/base/docs/html/design/style/
touch-feedback.jd 37 <p>When your objects react to more complex gestures, help users understand what the outcome of the
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
predict.def 37 /* A value used as final outcome of all heuristics. */
40 /* An outcome estimated by Dempster-Shaffer theory. */
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
predict.def 37 /* A value used as final outcome of all heuristics. */
40 /* An outcome estimated by Dempster-Shaffer theory. */
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
predict.def 37 /* A value used as final outcome of all heuristics. */
40 /* An outcome estimated by Dempster-Shaffer theory. */
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
predict.def 37 /* A value used as final outcome of all heuristics. */
40 /* An outcome estimated by Dempster-Shaffer theory. */
  /libcore/luni/src/main/java/java/util/concurrent/
FutureTask.java 51 * transient values of COMPLETING (while outcome is being set) or
75 private Object outcome; // non-volatile, protected by state reads/writes field in class:FutureTask
87 Object x = outcome;
199 outcome = v;
217 outcome = t;

Completed in 1174 milliseconds

1 2 3 4 5 6 7 8