Searched defs:fail (Results 51 - 75 of 272) sorted by relevance

1234567891011

/external/elfutils/0.153/libdwfl/
H A Dargp-std.c127 inline error_t fail (Dwfl *dwfl, int errnum, const char *msg) function
146 return fail (dwfl, -1, arg);
156 return fail (dwfl, -1, arg);
175 return fail (dwfl, result, arg);
198 return fail (dwfl, result, arg);
233 return fail (dwfl, result, arg);
253 return fail (dwfl, result, _("cannot load kernel symbols"));
271 return fail (dwfl, result, _("cannot find kernel or modules"));
288 return fail (dwfl, -1, arg);
H A Dgzip.c126 inline Dwfl_Error fail (Dwfl_Error failure) function
144 return fail (DWFL_E_NOMEM);
146 return fail (DWFL_E_ERRNO);
148 return fail (DWFL_E_ZLIB);
279 return fail (DWFL_E_BADELF);
283 return fail (result);
/external/expat/tests/
H A Dminicheck.h34 #define fail(msg) _fail_unless(0, __FILE__, __LINE__, msg) macro
/external/junit/src/junit/framework/
H A DAssert.java20 fail(message);
46 static public void fail(String message) { method in class:Assert
55 static public void fail() { method in class:Assert
56 fail(null);
276 fail(formatted+"expected not same");
283 fail(formatted+"expected same:<"+expected+"> was not:<"+actual+">");
287 fail(format(message, expected, actual));
/external/mesa3d/src/glsl/
H A Dloop_unroll.cpp56 bool fail; member in class:loop_unroll_count
61 fail = false;
80 fail = true;
117 if (count.fail || count.nodes * iterations > (int)max_iterations * 5)
/external/mesa3d/src/mesa/main/
H A Dstencil.c308 * \param fail action to take when stencil test fails.
320 _mesa_StencilOp(GLenum fail, GLenum zfail, GLenum zpass) argument
330 if (!validate_stencil_op(ctx, fail)) {
347 ctx->Stencil.FailFunc[face] == fail)
352 ctx->Stencil.FailFunc[face] = fail;
358 ctx->Driver.StencilOpSeparate(ctx, GL_BACK, fail, zfail, zpass);
367 ctx->Stencil.FailFunc[0] == fail &&
368 ctx->Stencil.FailFunc[1] == fail)
373 ctx->Stencil.FailFunc[0] = ctx->Stencil.FailFunc[1] = fail;
378 fail, zfai
[all...]
/external/zlib/src/contrib/puff/
H A Dpufftest.c16 testing, and causes pufftest to fail with not enough output space (-f does
90 int ret, put = 0, fail = 0; local
103 fail = 1, put = 1;
148 if (fail)
/external/chromium_org/remoting/webapp/browser_test/
H A Dbrowser_test.js24 * browserTest.fail("My error message.") or browserTest.pass() is called.
33 * browserTest.fail('My error message.');
70 browserTest.fail('Expectation failed.' + message);
74 browserTest.fail = function(error) {
211 'Expected the Me2Me connection to fail.');
271 browserTest.fail(e);
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
H A DWebSocketDeflateFramer.cpp128 void DeflateResultHolder::fail(const String& failureReason) function in class:blink::DeflateResultHolder
146 void InflateResultHolder::fail(const String& failureReason) function in class:blink::InflateResultHolder
180 result->fail("Failed to compress frame");
203 result->fail("Received unexpected compressed frame");
207 result->fail("Failed to decompress frame");
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebSocketImpl.cpp145 void WebSocketImpl::fail(const WebString& reason) function in class:blink::WebSocketImpl
147 m_private->fail(reason, ErrorMessageLevel, String(), 0);
/external/chromium_org/third_party/libusb/src/libusb/os/
H A Dthreads_windows.c110 int fail = 0; local
115 fail = 1;
118 return fail ? ((errno=EINVAL)) : 0;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dradeon_program_tex.c162 int pass, fail; local
238 fail = 2;
241 fail = 1;
254 inst_cmp->U.I.SrcReg[fail] = shadow_fail_value(compiler, inst->U.I.TexSrcUnit);
/external/chromium_org/third_party/mesa/src/src/gallium/tests/unit/
H A Dtranslate_test.c198 unsigned fail = 0; local
283 fail = 1;
290 fail ? "FAIL" : "PASS",
312 if (!fail)
/external/chromium_org/third_party/opus/src/celt/tests/
H A Dtest_unit_mathops.c124 int i,fail; local
126 fail=chk=max_d=0;
137 fail = 1;
142 if ((chk!=15821257)||(max_d!=61)||(min_d!=-2)||fail||
/external/chromium_org/v8/test/cctest/
H A Dtest-assembler-x87.cc274 Label fail; local
276 __ j(not_equal, &fail);
278 __ j(not_equal, &fail);
280 __ j(not_equal, &fail);
282 __ j(not_equal, &fail);
284 __ j(not_equal, &fail);
286 __ j(not_equal, &fail);
294 __ bind(&fail);
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-347914.js30 function fail(expectedText, found, name_opt) { } function
33 assertSame = function assertSame(expected, found, name_opt) { if (found === expected) { if (expected !== 0 || (1 / expected) == (1 / found)) return; } else if ((expected !== expected) && (found !== found)) { return; } fail(PrettyPrint(expected), found, name_opt); }; assertEquals = function assertEquals(expected, found, name_opt) { if (!deepEquals(found, expected)) { fail(PrettyPrint(expected), found, name_opt); } };
35 assertPropertiesEqual = function assertPropertiesEqual(expected, found, name_opt) { if (!deepObjectEquals(expected, found)) { fail(expected, found, name_opt); } };
36 assertToStringEquals = function assertToStringEquals(expected, found, name_opt) { if (expected != String(found)) { fail(expected, found, name_opt); } };
40 assertNull = function assertNull(value, name_opt) { if (value !== null) { fail("null", value, name_opt); } };
41 assertNotNull = function assertNotNull(value, name_opt) { if (value === null) { fail("not null", value, name_opt); } };
43 assertInstanceof = function assertInstanceof(obj, type) { if (!(obj instanceof type)) { var actualTypeName = null; var actualConstructor = Object.getPrototypeOf(obj).constructor; if (typeof actualConstructor == "function") { actualTypeName = actualConstructor.name || String(actualConstructor); } fail("Object <" + PrettyPrint(obj) + "> is not an instance of <" + (type.name || type) + ">" + (actualTypeName ? " but of < " + actualTypeName + ">" : "")); } };
44 assertDoesNotThrow = function assertDoesNotThrow(code, name_opt) { try { if (typeof code == 'function') { code(); } else { eval(code); } } catch (e) { fail("threw an exception: ", e.message || e, name_opt); } };
/external/deqp/modules/gles31/functional/
H A Des31fNegativeTestShared.cpp69 void NegativeTestContext::fail (const string& msg) function in class:deqp::gles31::Functional::NegativeTestShared::NegativeTestContext
/external/junit/src/org/junit/
H A DAssert.java43 fail(message);
90 static public void fail(String message) { method in class:Assert
99 static public void fail() { method in class:Assert
100 fail(null);
493 fail("Use assertEquals(expected, actual, delta) to compare floating-point numbers");
633 fail(formatted + "expected not same");
641 fail(formatted + "expected same:<" + expected + "> was not:<" + actual
647 fail(format(message, expected, actual));
/external/libopus/celt/tests/
H A Dtest_unit_mathops.c124 int i,fail; local
126 fail=chk=max_d=0;
137 fail = 1;
142 if ((chk!=15821257)||(max_d!=61)||(min_d!=-2)||fail||
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_program_tex.c162 int pass, fail; local
238 fail = 2;
241 fail = 1;
254 inst_cmp->U.I.SrcReg[fail] = shadow_fail_value(compiler, inst->U.I.TexSrcUnit);
/external/mesa3d/src/gallium/tests/unit/
H A Dtranslate_test.c198 unsigned fail = 0; local
283 fail = 1;
290 fail ? "FAIL" : "PASS",
312 if (!fail)
/external/yaffs2/yaffs2/direct/
H A Dyaffs_flashif.c62 int fail = 0; local
84 for(i=0; i <ramdisk.nBlocks && !fail; i++)
88 fail = 1;
97 if(fail)
H A Dyaffs_ramdisk.c66 int fail = 0; local
89 for(i=0; i <ramdisk.nBlocks && !fail; i++)
93 fail = 1;
102 if(fail)
/external/chromium_org/ppapi/native_client/tools/browser_tester/browserdata/
H A Dnacltest.js252 this.fail = function(test_name, message, from_completed_test) {
327 function fail(message, info, test_status) {
339 test_status.fail(full_message);
349 fail(message, toString(condition), test_status);
369 // NaCl gets array types wrong. .toString will fail on these objects.
390 fail(message, toString(a) + ' != ' + toString(b), test_status);
400 fail(message, toString(a) + ' != ' + toString(b), test_status);
422 fail(message, 'did not raise', test_status);
709 this.fail = function(message) {
710 this.tester.rpc.fail(thi
[all...]
/external/chromium_org/chrome/third_party/chromevox/third_party/closure-library/closure/goog/asserts/
H A Dasserts.js136 * default: goog.assert.fail('Unrecognized type: ' + type);
145 goog.asserts.fail = function(opt_message, var_args) {
314 goog.asserts.fail(key + ' should not be enumerable in Object.prototype.');

Completed in 937 milliseconds

1234567891011