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

1 2 3 4 5 6 7 8 91011>>

  /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_org/chrome/installer/util/
delete_reg_value_work_item.h 31 // One possible outcome after Do(). Value is deleted.
33 // One possible outcome after Do(). Value is not found.
37 // Another possible outcome after Do() (when there is an error).
set_reg_value_work_item.h 32 // One possible outcome after Do(). A new value is created under the key.
34 // One possible outcome after Do(). The previous value under the key has
37 // One possible outcome after Do(). No change is applied, either
html_dialog.h 77 enum Outcome {
84 // the |Outcome| values and any form of failure maps to REJECTED.
85 Outcome ShowModal();
  /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);
  /external/chromium_org/chrome/browser/chromeos/login/screens/
screen_flow.h 28 // Called when screen with |screen_id| finishes with |outcome|.
33 const std::string& outcome,
base_screen.cc 42 void BaseScreen::Finish(const std::string& outcome) {
screen_factory.h 35 // outcome. Legacy, should be gone once refactoring is finished.
  /external/chromium_org/chrome/browser/chromeos/login/
test_attempt_state.cc 35 const LoginFailure& outcome) {
37 online_outcome_ = outcome;
test_attempt_state.h 33 const LoginFailure& outcome);
auth_attempt_state.cc 75 const LoginFailure& outcome) {
78 online_outcome_ = 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/chromium_org/v8/tools/testrunner/local/
testsuite.py 174 outcome = statusfile.CRASH
176 outcome = statusfile.TIMEOUT
178 outcome = statusfile.FAIL
180 outcome = statusfile.PASS
182 return outcome != statusfile.PASS
183 return not outcome in testcase.outcomes
  /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

Completed in 2277 milliseconds

1 2 3 4 5 6 7 8 91011>>