HomeSort by relevance Sort by last modified time
    Searched refs:failure (Results 251 - 275 of 682) sorted by null

<<11121314151617181920>>

  /external/chromium_org/v8/test/mjsunit/
short-circuit-boolean.js 34 return a != 0 && "failure";
43 return a == 0 || "failure";
  /external/compiler-rt/lib/builtins/
atomic.c 200 void *desired, int success, int failure) {
203 *(type*)desired, success, failure)
290 int success, int failure) {\
293 success, failure);\
  /external/junit/src/org/junit/internal/
TextListener.java 9 import org.junit.runner.notification.Failure;
37 public void testFailure(Failure failure) {
60 List<Failure> failures= result.getFailures();
64 getWriter().println("There was " + failures.size() + " failure:");
68 for (Failure each : failures)
72 protected void printFailure(Failure each, String prefix) {
  /external/mockito/src/org/mockito/runners/
ConsoleSpammingMockitoJUnitRunner.java 14 import org.junit.runner.notification.Failure;
113 @Override public void testFailure(Failure failure) throws Exception {
  /external/wpa_supplicant_8/hs20/server/www/
spp.php 75 error_log("Authentication failure - response mismatch");
  /frameworks/base/core/java/android/hardware/camera2/
CameraCaptureSession.java 633 * @param failure
634 * The output failure from the capture, including the failure reason
643 CaptureRequest request, CaptureFailure failure) {
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/std/
std_ios.i 34 // 27.4.2.1.1 Class ios_base::failure
35 class failure : public exception
38 explicit failure(const string& __str) throw();
  /external/chromium_org/chrome/browser/extensions/api/identity/
gaia_web_auth_flow.cc 133 void GaiaWebAuthFlow::OnAuthFlowFailure(WebAuthFlow::Failure failure) {
134 GaiaWebAuthFlow::Failure gaia_failure;
136 switch (failure) {
145 NOTREACHED() << "Unexpected error from web auth flow: " << failure;
  /external/chromium_org/mojo/public/c/system/tests/
core_unittest.cc 291 const char* failure = MinimalCTest(); local
292 EXPECT_TRUE(failure == NULL) << failure;
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/pipebuffer/
pb_bufmgr_mm.c 277 goto failure;
281 goto failure;
285 failure:
  /external/droiddriver/src/com/google/android/droiddriver/base/
BaseUiElement.java 167 String failure = validator.validate(this, action); local
168 if (failure != null) {
169 throw new DroidDriverException(toString() + " failed validation: " + failure);
  /external/elfutils/0.153/libdwfl/
argp-std.c 117 inline void failure (Dwfl *dwfl, int errnum, const char *msg) function
129 failure (dwfl, errnum, msg);
257 failure (dwfl, result, _("cannot find kernel modules"));
  /external/mesa3d/src/gallium/auxiliary/pipebuffer/
pb_bufmgr_mm.c 277 goto failure;
281 goto failure;
285 failure:
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
CropActivity.java 237 * Display toast for image loading failure.
422 boolean failure = false;
447 failure = true;
468 failure = true;
476 failure = true;
513 failure = true;
551 failure = true;
566 failure = true;
575 failure = true;
584 failure = true
    [all...]
  /external/bluetooth/bluedroid/stack/smp/
smp_utils.c 71 smp_build_pairing_fail, /* 0x05: pairing failure */
115 UINT8 failure = SMP_PAIR_INTERNAL_ERR; local
135 smp_sm_event(p_cb, SMP_AUTH_CMPL_EVT, &failure);
154 UINT8 failure = SMP_RSP_TIMEOUT; local
165 smp_sm_event(p_cb, SMP_AUTH_CMPL_EVT, &failure);
419 UINT8_TO_STREAM (p, p_cb->failure);
628 ** Description send pairing failure to an unexpected pairing request during
  /external/chromium_org/third_party/cython/src/Cython/Tests/
xmlrunner.py 62 (SUCCESS, FAILURE, ERROR) = range(3)
174 self._prepare_callback(_TestInfo(self, test, _TestInfo.FAILURE, err),
228 failures = len([1 for e in tests if e.outcome == _TestInfo.FAILURE])
250 elem_name = ('failure', 'error')[test_result.outcome-1]
251 failure = xml_document.createElement(elem_name)
252 testcase.appendChild(failure)
254 failure.setAttribute('type', str(test_result.err[0].__name__))
255 failure.setAttribute('message', str(test_result.err[1]))
259 failure.appendChild(failureText)
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
BuildResults.java 47 String failure; field in class:BuildResults
279 * Return the failure message which may happened on this scenario
282 * @return The failure message or <code>null</null> if the scenario passed.
285 return this.failure;
449 * Set the build failure.
451 void setFailure(String failure) {
452 this.failure = failure;
583 // Write extra infos (summary, failure and comment)
  /external/chromium_org/remoting/webapp/browser_test/
browser_test.js 90 // failure.
222 return Promise.reject('Unexpected failure. actual:' + actual +
286 var failure = browserTest.onUIMode(AppMode.HOST_SETUP_ERROR, Timeout.NONE);
287 failure = failure.then(function(){
288 return Promise.reject('Unexpected host setup failure');
290 return Promise.race([success, failure]);
  /external/icu/icu4c/source/test/intltest/
caltest.cpp 29 dataerrln("%s:%d: Test failure. status=%s", __FILE__, __LINE__, u_errorName(status)); \
31 errln("%s:%d: Test failure. status=%s", __FILE__, __LINE__, u_errorName(status)); \
34 #define TEST_ASSERT(expr) {if ((expr)==FALSE) {errln("%s:%d: Test failure \n", __FILE__, __LINE__);};}
377 if (failure(status, "Calendar::createInstance", TRUE)) return;
382 if (failure(status, "Calendar::createInstance")) return;
385 if (failure(status, "Calendar::setTime")) return;
400 if (failure(status, "Calendar::setTime")) return;
411 if (failure(status, "Calendar::roll")) return;
427 if (failure(status, "Calendar::roll")) return;
488 if (failure(status, "Calendar::getTime")) return
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
caltest.cpp 29 dataerrln("%s:%d: Test failure. status=%s", __FILE__, __LINE__, u_errorName(status)); \
31 errln("%s:%d: Test failure. status=%s", __FILE__, __LINE__, u_errorName(status)); \
34 #define TEST_ASSERT(expr) {if ((expr)==FALSE) {errln("%s:%d: Test failure \n", __FILE__, __LINE__);};}
356 if (failure(status, "Calendar::createInstance", TRUE)) return;
361 if (failure(status, "Calendar::createInstance")) return;
364 if (failure(status, "Calendar::setTime")) return;
379 if (failure(status, "Calendar::setTime")) return;
390 if (failure(status, "Calendar::roll")) return;
406 if (failure(status, "Calendar::roll")) return;
467 if (failure(status, "Calendar::getTime")) return
    [all...]
  /external/chromium_org/third_party/cython/src/Cython/Includes/cpython/
dict.pxd 30 # Return a new empty dictionary, or NULL on failure.
53 # success or -1 on failure.
58 # PyString_FromString(key). Return 0 on success or -1 on failure.
63 # or -1 on failure.
67 # the string key. Return 0 on success or -1 on failure.
  /frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/
WallpaperCropActivity.java 575 boolean failure = false;
593 failure = true;
595 return !failure;
612 failure = true;
631 failure = true;
645 failure = true;
721 failure = true;
    [all...]
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/launcher3/
WallpaperCropActivity.java 582 boolean failure = false;
600 failure = true;
602 return !failure;
619 failure = true;
638 failure = true;
652 failure = true;
728 failure = true;
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/options/
settings_format_browsertest.js 62 * Generates a failure message. During tear down of the test, the accumulation
63 * of pending messages triggers a test failure.
65 * @param {!Element} element The element that triggered the failure.
  /external/chromium_org/chrome/browser/service_process/
service_process_control.cc 95 base::Closure failure = failure_task; local
99 if (!failure.is_null())
100 connect_failure_tasks_.push_back(failure);

Completed in 582 milliseconds

<<11121314151617181920>>