/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 | 78 enum Outcome { 85 // the |Outcome| values and any form of failure maps to REJECTED. 86 Outcome ShowModal();
|
/external/chromium_org/chromeos/login/auth/ |
test_attempt_state.cc | 24 void TestAttemptState::PresetOnlineLoginStatus(const AuthFailure& outcome) { 26 online_outcome_ = outcome;
|
auth_attempt_state.cc | 37 void AuthAttemptState::RecordOnlineLoginStatus(const AuthFailure& outcome) { 39 online_outcome_ = outcome;
|
test_attempt_state.h | 25 void PresetOnlineLoginStatus(const AuthFailure& outcome);
|
auth_attempt_state.h | 33 // Copy |user_context| and copy |outcome| into this object, so we can have 36 void RecordOnlineLoginStatus(const AuthFailure& outcome);
|
online_attempt.cc | 146 void OnlineAttempt::TriggerResolve(const AuthFailure& outcome) { 147 attempt_->RecordOnlineLoginStatus(outcome);
|
/external/chromium_org/chrome/browser/chromeos/login/signin/ |
oauth2_login_manager.cc | 303 MergeVerificationOutcome outcome = POST_MERGE_SUCCESS; local 323 outcome = POST_MERGE_MISSING_PRIMARY_ACCOUNT; 325 outcome = POST_MERGE_PRIMARY_NOT_FIRST_ACCOUNT; 328 outcome = POST_MERGE_NO_ACCOUNTS; 332 RecordCookiesCheckOutcome(is_pre_merge, outcome); 336 if (outcome != POST_MERGE_SUCCESS && 337 outcome != POST_MERGE_PRIMARY_NOT_FIRST_ACCOUNT) { 366 SessionRestoreOutcome outcome, 369 outcome, 377 MergeVerificationOutcome outcome) { [all...] |
oauth2_login_manager.h | 214 // Records |outcome| of session restore process and sets new |state|. 215 void RecordSessionRestoreOutcome(SessionRestoreOutcome outcome, 218 // Records |outcome| of merge verification check. |is_pre_merge| specifies 222 MergeVerificationOutcome outcome);
|
/external/chromium_org/gin/test/ |
expect.js | 262 var outcome = predicate.apply(null, arguments); 263 outcome.result = !outcome.result; 264 return outcome; 270 var outcome = predicate.apply(null, arguments); 271 if (outcome.result) 273 throw outcome.message;
|
/external/chromium_org/chrome/browser/diagnostics/ |
diagnostics_test.h | 21 // for the outcome of the test. 35 // The actual outcome of the test should be set using the RecordXX functions.
|
/external/chromium_org/chrome/browser/chromeos/login/screens/ |
base_screen.cc | 42 void BaseScreen::Finish(const std::string& outcome) {
|
base_screen.h | 77 // it's work with |outcome|. 78 void Finish(const std::string& outcome);
|
/external/chromium_org/third_party/webrtc/tools/e2e_quality/audio/ |
README | 11 resampling in PulseAudio. This will reduce the resampling impact on the outcome
|
/external/libutf/ |
runestrcat.3 | 74 The outcome of overlapping moves varies among implementations.
|
/external/valgrind/main/memcheck/tests/x86/ |
pushfpopf_s.S | 26 # resulting flag definedness depends on outcome of sub above
|
/external/chromium_org/chrome/browser/extensions/ |
install_verifier.cc | 355 void MustRemainDisabledHistogram(MustRemainDisabledOutcome outcome) { 357 outcome, MUST_REMAIN_DISABLED_OUTCOME_MAX); 384 MustRemainDisabledOutcome outcome = VERIFIED; local 387 outcome = FORCED_NOT_VERIFIED; 390 outcome = NOT_FROM_STORE; 397 outcome = NO_SIGNATURE; 401 outcome = NOT_VERIFIED_BUT_UNKNOWN_ID; 404 outcome = NOT_VERIFIED; 409 outcome = NOT_VERIFIED_BUT_NOT_ENFORCING; 411 MustRemainDisabledHistogram(outcome); [all...] |
/external/chromium_org/chrome/browser/chromeos/first_run/ |
drive_first_run_controller.cc | 148 DriveFirstRunController::UMAOutcome outcome); 152 DriveFirstRunController::UMAOutcome outcome); 236 DriveFirstRunController::UMAOutcome outcome) { 245 outcome)); 252 DriveFirstRunController::UMAOutcome outcome) { 253 completion_callback_.Run(success, outcome); 441 void DriveFirstRunController::OnOfflineInit(bool success, UMAOutcome outcome) { 446 outcome, OUTCOME_MAX);
|
/external/chromium_org/third_party/cython/src/Cython/Tests/ |
xmlrunner.py | 64 def __init__(self, test_result, test_method, outcome=SUCCESS, err=None): 68 self.outcome = outcome 117 """This callback prints the test method outcome to the stream, 228 failures = len([1 for e in tests if e.outcome == _TestInfo.FAILURE]) 231 errors = len([1 for e in tests if e.outcome == _TestInfo.ERROR]) 249 if (test_result.outcome != _TestInfo.SUCCESS): 250 elem_name = ('failure', 'error')[test_result.outcome-1]
|
/external/chromium_org/chrome/common/extensions/docs/templates/articles/ |
api_index.html | 43 If you need to know the outcome of an operation,
|