Searched defs:fail (Results 101 - 125 of 272) sorted by relevance

1234567891011

/external/chromium_org/third_party/WebKit/Source/modules/websockets/
H A DNewWebSocketChannelImpl.cpp239 void NewWebSocketChannelImpl::fail(const String& reason, MessageLevel level, const String& sourceURL, unsigned lineNumber) function in class:blink::NewWebSocketChannelImpl
241 WTF_LOG(Network, "NewWebSocketChannelImpl %p fail(%s)", this, reason.utf8().data());
407 void NewWebSocketChannelImpl::didConnect(WebSocketHandle* handle, bool fail, const WebString& selectedProtocol, const WebString& extensions) argument
409 WTF_LOG(Network, "NewWebSocketChannelImpl %p didConnect(%p, %d, %s, %s)", this, handle, fail, selectedProtocol.utf8().data(), extensions.utf8().data());
413 if (fail) {
447 // This function is called when the browser is required to fail the
448 // WebSocketConnection. Hence we fail this channel by calling
H A DWorkerThreadableWebSocketChannel.cpp155 void WorkerThreadableWebSocketChannel::fail(const String& reason, MessageLevel level, const String& sourceURL, unsigned lineNumber) function in class:blink::WorkerThreadableWebSocketChannel
165 m_bridge->fail(reason, level, callStack->at(0).sourceURL(), callStack->at(0).lineNumber());
169 m_bridge->fail(reason, level, m_sourceURLAtConnection, m_lineNumberAtConnection);
172 m_bridge->fail(reason, level, sourceURL, lineNumber);
257 void Peer::fail(const String& reason, MessageLevel level, const String& sourceURL, unsigned lineNumber) function in class:blink::Peer
263 m_mainWebSocketChannel->fail(reason, level, sourceURL, lineNumber);
442 void Bridge::fail(const String& reason, MessageLevel level, const String& sourceURL, unsigned lineNumber) function in class:blink::Bridge
445 m_loaderProxy.postTaskToLoader(createCrossThreadTask(&Peer::fail, m_peer.get(), reason, level, sourceURL, lineNumber));
H A DMainThreadWebSocketChannel.cpp189 void MainThreadWebSocketChannel::fail(const String& reason, MessageLevel level, const String& sourceURL, unsigned lineNumber) function in class:blink::MainThreadWebSocketChannel
191 WTF_LOG(Network, "MainThreadWebSocketChannel %p fail() reason='%s'", this, reason.utf8().data());
/external/chromium_org/third_party/icu/source/test/intltest/
H A Ddtfmtrtts.cpp454 UBool fail = (dmatch > maxDmatch || smatch > maxSmatch); local
455 if (optionv || fail) {
456 if (fail) {
/external/chromium_org/third_party/jinja2/
H A Dparser.py44 def fail(self, msg, lineno=None, exc=TemplateSyntaxError): member in class:Parser
82 self.fail(' '.join(message), lineno)
85 """Called if the parser encounters an unknown tag. Tries to fail
117 self.fail('tag name expected', token.lineno)
132 # from the stack so that the unknown tag fail function can
225 self.fail('Block names in Jinja have to be valid Python '
287 self.fail('names starting with an underline can not '
328 self.fail('expected call', node.lineno)
376 self.fail('can\'t assign to %r' % target.__class__.
575 self.fail("unexpecte
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_denoiser.c422 int i, fail; local
426 fail = vp9_alloc_frame_buffer(&denoiser->running_avg_y[i], width, height,
432 if (fail) {
441 fail = vp9_alloc_frame_buffer(&denoiser->mc_running_avg_y, width, height,
447 if (fail) {
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/gd3d1x/
H A Dsm4_to_tgsi.cpp35 #define fail(x) assert(0 && (x)) macro
38 #define fail(x) throw(x) macro
214 fail("invalid resource return type");
634 fail("Tessellation and compute shaders not yet supported");
639 fail("Malformed control flow");
641 fail("Failed to locate labels");
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
H A Ds_stencil.c42 Apply fail-op to stencil value
181 fail[i] = 0; \
184 /* stencil fail */ \
185 fail[i] = 1; \
190 fail[i] = 0; \
198 * For the values that fail, we'll apply the GL_STENCIL_FAIL operator to
214 GLubyte *fail = swrast->stencil_temp.buf2; local
223 * in the fail[] array:
224 * IF fail[i] is non-zero THEN
225 * the stencil fail operato
[all...]
/external/chromium_org/v8/src/arm64/
H A Dcodegen-arm64.cc142 Label* fail) {
157 __ JumpIfJSArrayHasAllocationMemento(receiver, x10, x11, fail);
218 __ B(fail);
248 Label* fail) {
260 __ JumpIfJSArrayHasAllocationMemento(receiver, x10, x11, fail);
311 __ B(fail);
135 GenerateSmiToDouble( MacroAssembler* masm, Register receiver, Register key, Register value, Register target_map, AllocationSiteMode mode, Label* fail) argument
241 GenerateDoubleToObject( MacroAssembler* masm, Register receiver, Register key, Register value, Register target_map, AllocationSiteMode mode, Label* fail) argument
/external/chromium_org/v8/src/x64/
H A Dcodegen-x64.cc223 Label* fail) {
230 // The fail label is not actually used since we do not allocate.
234 __ JumpIfJSArrayHasAllocationMemento(rdx, rdi, fail);
296 __ Allocate(rdi, r14, r11, r15, fail, TAG_OBJECT);
362 Label* fail) {
372 __ JumpIfJSArrayHasAllocationMemento(rdx, rdi, fail);
406 __ jmp(fail);
216 GenerateSmiToDouble( MacroAssembler* masm, Register receiver, Register key, Register value, Register target_map, AllocationSiteMode mode, Label* fail) argument
355 GenerateDoubleToObject( MacroAssembler* masm, Register receiver, Register key, Register value, Register target_map, AllocationSiteMode mode, Label* fail) argument
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-410912.js15 function fail(expectedText, found, name_opt) { } function
18 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); } };
21 assertPropertiesEqual = function assertPropertiesEqual(expected, found, name_opt) { if (!deepObjectEquals(expected, found)) { fail(expected, found, name_opt); } };
22 assertToStringEquals = function assertToStringEquals(expected, found, name_opt) { if (expected != String(found)) { fail(expected, found, name_opt); } };
25 assertNull = function assertNull(value, name_opt) { if (value !== null) { fail("null", value, name_opt); } };
26 assertNotNull = function assertNotNull(value, name_opt) { if (value === null) { fail("not null", value, name_opt); } };
/external/clang/test/CodeGen/
H A Datomic-ops.c340 void generalFailureOrder(_Atomic(int) *ptr, int *ptr2, int success, int fail) {
341 __c11_atomic_compare_exchange_strong(ptr, ptr2, 42, success, fail);
427 void EMIT_ALL_THE_THINGS(int *ptr, int *ptr2, int new, _Bool weak, int success, int fail) { argument
428 __atomic_compare_exchange(ptr, ptr2, &new, weak, success, fail);
/external/cmockery/cmockery_0_1_2/src/google/
H A Dcmockery.h158 // Assert that the two given integers are equal, otherwise fail.
160 // Assert that the two given integers are not equal, otherwise fail.
164 // Assert that the two given strings are equal, otherwise fail.
167 // Assert that the two given strings are not equal, otherwise fail.
172 // Assert that the two given areas of memory are equal, otherwise fail.
176 // Assert that the two given areas of memory are not equal, otherwise fail.
198 // Forces the test to fail immediately and quit.
199 #define fail() _fail(__FILE__, __LINE__) macro
/external/dhcpcd/
H A Ddhcpcd.h81 struct in_addr fail; member in struct:if_state
/external/icu/icu4c/source/test/intltest/
H A Ddtfmtrtts.cpp452 UBool fail = (dmatch > maxDmatch || smatch > maxSmatch); local
453 if (optionv || fail) {
454 if (fail) {
/external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d1x/
H A Dsm4_to_tgsi.cpp35 #define fail(x) assert(0 && (x)) macro
38 #define fail(x) throw(x) macro
214 fail("invalid resource return type");
634 fail("Tessellation and compute shaders not yet supported");
639 fail("Malformed control flow");
641 fail("Failed to locate labels");
/external/mesa3d/src/mesa/swrast/
H A Ds_stencil.c42 Apply fail-op to stencil value
181 fail[i] = 0; \
184 /* stencil fail */ \
185 fail[i] = 1; \
190 fail[i] = 0; \
198 * For the values that fail, we'll apply the GL_STENCIL_FAIL operator to
214 GLubyte *fail = swrast->stencil_temp.buf2; local
223 * in the fail[] array:
224 * IF fail[i] is non-zero THEN
225 * the stencil fail operato
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/maccommon/
H A DSDL_macwm.c207 Boolean fail = false; local
235 fail = true;
240 if (!fail) /* if we did not fail */
/external/smack/src/org/xbill/DNS/
H A DZoneTransferIn.java390 fail(String s) throws ZoneTransferException { method in class:ZoneTransferIn
397 fail("server doesn't support IXFR");
412 fail("missing initial SOA");
474 fail("IXFR out of sync: expected serial " +
496 fail("extra data");
500 fail("invalid state");
540 fail("TSIG failure");
555 fail(Rcode.string(rcode));
560 fail("invalid question section");
576 fail("las
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Dbencher319 def fail(reason) method
333 fail(r2)
715 doublePuts($stderr,file,".pass {\n font-weight: bold;\n color: green;\n}\n.fail {\n font-weight: bold;\n color: red;\n}\n\#console {\n white-space: pre-wrap;\n font-family: monospace;\n}")
1925 $stderr.puts "Warning: will only collect one sample per benchmark/VM. Confidence interval calculation will fail."
2098 fail(e)
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
H A Di830_state.c91 i830StencilOpSeparate(struct gl_context * ctx, GLenum face, GLenum fail, GLenum zfail, argument
97 DBG("%s: fail : %s, zfail: %s, zpass : %s\n", __FUNCTION__,
98 _mesa_lookup_enum_by_nr(fail),
106 switch (fail) {
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
H A Dnouveau_state.c371 nouveau_stencil_op_separate(struct gl_context *ctx, GLenum face, GLenum fail, argument
/external/chromium_org/third_party/opus/src/silk/
H A DMacroDebug.h169 int fail = 0; local
178 fail = 1;
182 fail = res != a64 + b64;
184 if ( fail )
230 int fail = 0; local
239 fail = 1;
243 fail = res != a64 - b64;
245 if ( fail )
381 int fail = 0; local
384 fail
451 int fail = 0; local
522 int fail = 0; local
[all...]
/external/chromium_org/v8/src/arm/
H A Dcodegen-arm.cc414 Label* fail) {
431 __ JumpIfJSArrayHasAllocationMemento(receiver, elements, fail);
514 __ b(fail);
556 Label* fail) {
569 __ JumpIfJSArrayHasAllocationMemento(receiver, elements, fail);
624 __ b(fail);
407 GenerateSmiToDouble( MacroAssembler* masm, Register receiver, Register key, Register value, Register target_map, AllocationSiteMode mode, Label* fail) argument
549 GenerateDoubleToObject( MacroAssembler* masm, Register receiver, Register key, Register value, Register target_map, AllocationSiteMode mode, Label* fail) argument
/external/chromium_org/v8/src/ia32/
H A Dregexp-macro-assembler-ia32.cc225 Label fail; local
251 __ j(above, &fail); // Weren't Latin-1 letters.
253 __ j(equal, &fail);
260 __ j(not_equal, &fail);
271 __ bind(&fail);
343 Label fail; local
377 __ j(not_equal, &fail);
386 __ bind(&fail);

Completed in 309 milliseconds

1234567891011