Searched defs:failure (Results 1 - 25 of 141) sorted by relevance

123456

/external/chromium_org/third_party/mesa/src/src/glsl/glcpp/tests/
H A D027-define-chain-obj-to-func.c1 #define failure() success macro
2 #define foo failure()
H A D055-define-chain-obj-to-func-parens-in-text.c1 #define failure() success macro
2 #define foo failure
/external/mesa3d/src/glsl/glcpp/tests/
H A D027-define-chain-obj-to-func.c1 #define failure() success macro
2 #define foo failure()
H A D055-define-chain-obj-to-func-parens-in-text.c1 #define failure() success macro
2 #define foo failure
/external/chromium_org/native_client_sdk/src/examples/api/media_stream_audio/
H A Dexample.js12 function failure(e) { function
17 navigator.webkitGetUserMedia({'audio': true}, success, failure);
/external/chromium_org/v8/test/mjsunit/
H A Dregress-3225.js10 var failure = null; variable
26 failure = e;
46 assertNull(failure);
/external/chromium_org/native_client_sdk/src/examples/api/media_stream_video/
H A Dexample.js15 function failure(e) { function
28 navigator.webkitGetUserMedia({'video': true}, success, failure);
/external/mockito/src/org/mockito/internal/util/junit/
H A DJUnitFailureHacker.java13 public void appendWarnings(Failure failure, String warnings) { argument
18 Throwable throwable = (Throwable) Whitebox.getInternalState(failure, "fThrownException");
20 String newMessage = "contains both: actual test failure *and* Mockito warnings.\n" +
21 warnings + "\n *** The actual failure is because of: ***\n";
25 Whitebox.setInternalState(failure, "fThrownException", e);
/external/chromium_org/mojo/public/c/system/tests/
H A Dcore_unittest.cc278 const char* failure = MinimalCTest(); local
279 EXPECT_TRUE(failure == NULL) << failure;
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dsaslmechanism.cc52 SaslMechanism::HandleSaslFailure(const XmlElement * failure) { argument
/external/chromium_org/third_party/skia/dm/
H A DDMTestTask.h18 const char* failure() const { return fFailure.c_str(); } function in class:DM::TestReporter
/external/junit/src/org/junit/runner/notification/
H A DRunListener.java16 * public void testFailure(Failure failure) {
67 * @param failure describes the test that failed and the exception that was thrown
69 public void testFailure(Failure failure) throws Exception { argument
76 * @param failure
80 public void testAssumptionFailure(Failure failure) { argument
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
H A DRecordingReceiver.java38 @Override public synchronized void onFailure(Failure failure) { argument
39 responses.add(new RecordedResponse(failure.request(), null, null, failure));
H A DRecordedResponse.java28 * A received response or failure recorded by the response recorder.
34 public final Failure failure; field in class:RecordedResponse
36 RecordedResponse(Request request, Response response, String body, Failure failure) { argument
40 this.failure = failure;
87 assertNotNull(failure);
88 assertEquals(message, failure.exception().getMessage());
/external/skia/dm/
H A DDMTestTask.h18 const char* failure() const { return fFailure.c_str(); } function in class:DM::TestReporter
/external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/tests/
H A Dutilities.js175 var failure = {success: false, messages: [message]};
177 failure.messages.push(this.getDescription_('expected: ', expected));
178 failure.messages.push(this.getDescription_('actual: ', actual));
180 test.steps.push(failure);
/external/chromium_org/chrome/browser/chromeos/login/managed/
H A Dlocally_managed_user_creation_flow.cc76 const LoginFailure& failure) {
77 if (failure.reason() == LoginFailure::COULD_NOT_MOUNT_CRYPTOHOME)
75 HandleLoginFailure( const LoginFailure& failure) argument
/external/chromium_org/components/url_matcher/
H A Dsubstring_set_matcher.h71 // The Aho Corasick algorithm improves this runtime by using failure edges.
75 // text[i + k] at depth k + 1, we follow a failure edge. This edge
99 uint32 failure() const { return failure_; } function in class:url_matcher::SubstringSetMatcher::AhoCorasickNode
100 void set_failure(uint32 failure) { failure_ = failure; } argument
110 // Node index that failure edge leads to.
/external/chromium_org/sandbox/win/src/
H A Dsharedmem_ipc_client.cc18 bool failure = false; local
19 size_t ix = LockFreeChannel(&failure);
20 if (failure) {
/external/bluetooth/bluedroid/stack/smp/
H A Dsmp_api.c230 UINT8 failure = SMP_PASSKEY_ENTRY_FAIL; local
259 /* send pairing failure */
260 smp_sm_event(p_cb, SMP_AUTH_CMPL_EVT, &failure);
286 UINT8 failure = SMP_OOB_FAIL; local
299 smp_sm_event(p_cb, SMP_AUTH_CMPL_EVT, &failure);
/external/chromium_org/chrome/browser/chromeos/login/auth/
H A Dmock_authenticator.cc91 void MockAuthenticator::OnLoginFailure(const LoginFailure& failure) { argument
92 consumer_->OnLoginFailure(failure);
/external/chromium_org/chrome/browser/chromeos/login/
H A Duser_flow.cc43 bool DefaultUserFlow::HandleLoginFailure(const LoginFailure& failure) { argument
/external/chromium_org/third_party/skia/tests/
H A DTest.cpp66 const SkString& failure(int i) const { return fFailures[i]; } function in class:LocalReporter
113 fReporter->reportFailed(local.failure(i));
/external/droiddriver/src/com/google/android/droiddriver/helpers/
H A DBaseDroidDriverTest.java39 * example OOME, and takes screenshot on failure. It is NOT required, but
98 * Takes a screenshot on failure.
100 protected void onFailure(Throwable failure) throws Throwable { argument
101 // If skipRemainingTests is true, the failure has already been reported.
105 if (shouldSkipRemainingTests(failure)) {
111 failure = uncaughtException;
115 if (failure instanceof OutOfMemoryError) {
124 // throw the original failure.
126 if (e instanceof OutOfMemoryError && !(failure instanceof OutOfMemoryError)) {
132 throw failure;
[all...]
/external/elfutils/0.153/libdwfl/
H A Dargp-std.c117 inline void failure (Dwfl *dwfl, int errnum, const char *msg) function
129 failure (dwfl, errnum, msg);
257 failure (dwfl, result, _("cannot find kernel modules"));

Completed in 1023 milliseconds

123456