/external/fdlibm/ |
H A D | k_standard.c | 84 struct exception exc; local 95 exc.arg1 = x; 96 exc.arg2 = y; 100 exc.type = DOMAIN; 101 exc.name = "acos"; 102 exc.retval = zero; 105 else if (!ieee_matherr(&exc)) { 114 exc.type = DOMAIN; 115 exc.name = "asin"; 116 exc [all...] |
/external/chromium-trace/trace-viewer/third_party/WebOb/webob/ |
H A D | static.py | 4 from webob import exc namespace 38 return exc.HTTPMethodNotAllowed("You cannot %s a file" % 44 return exc.HTTPNotFound(comment=msg) 50 return exc.HTTPForbidden(msg) 151 return exc.HTTPNotFound(comment=path) 153 return exc.HTTPForbidden() 160 return exc.HTTPNotFound(comment=index_path)
|
H A D | client.py | 10 from webob import exc namespace 97 resp = exc.HTTPGatewayTimeout() 103 resp = exc.HTTPBadGateway( 109 resp = exc.HTTPBadGateway("Connection refused")
|
/external/chromium-trace/trace-viewer/third_party/webapp2/tests/ |
H A D | misc_test.py | 3 import webob.exc namespace 13 self.assertRaises(webob.exc.HTTPOk, webapp2.abort, 200) 14 self.assertRaises(webob.exc.HTTPCreated, webapp2.abort, 201) 15 self.assertRaises(webob.exc.HTTPAccepted, webapp2.abort, 202) 16 self.assertRaises(webob.exc.HTTPNonAuthoritativeInformation, webapp2.abort, 203) 17 self.assertRaises(webob.exc.HTTPNoContent, webapp2.abort, 204) 18 self.assertRaises(webob.exc.HTTPResetContent, webapp2.abort, 205) 19 self.assertRaises(webob.exc.HTTPPartialContent, webapp2.abort, 206) 20 self.assertRaises(webob.exc.HTTPMultipleChoices, webapp2.abort, 300) 21 self.assertRaises(webob.exc [all...] |
/external/lldb/source/Plugins/Process/MacOSX-Kernel/ |
H A D | RegisterContextKDP_arm.cpp | 66 RegisterContextKDP_arm::DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc) argument 72 if (static_cast<ProcessKDP *>(process_sp.get())->GetCommunication().SendRequestReadRegisters (tid, EXCRegSet, &exc, sizeof(exc), error)) 130 RegisterContextKDP_arm::DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc) argument 136 if (static_cast<ProcessKDP *>(process_sp.get())->GetCommunication().SendRequestWriteRegisters (tid, EXCRegSet, &exc, sizeof(exc), error))
|
H A D | RegisterContextKDP_i386.cpp | 66 RegisterContextKDP_i386::DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc) argument 72 if (static_cast<ProcessKDP *>(process_sp.get())->GetCommunication().SendRequestReadRegisters (tid, EXCRegSet, &exc, sizeof(exc), error)) 114 RegisterContextKDP_i386::DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc) argument 120 if (static_cast<ProcessKDP *>(process_sp.get())->GetCommunication().SendRequestWriteRegisters (tid, EXCRegSet, &exc, sizeof(exc), error))
|
H A D | RegisterContextKDP_x86_64.cpp | 66 RegisterContextKDP_x86_64::DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc) argument 72 if (static_cast<ProcessKDP *>(process_sp.get())->GetCommunication().SendRequestReadRegisters (tid, EXCRegSet, &exc, sizeof(exc), error)) 114 RegisterContextKDP_x86_64::DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc) argument 120 if (static_cast<ProcessKDP *>(process_sp.get())->GetCommunication().SendRequestWriteRegisters (tid, EXCRegSet, &exc, sizeof(exc), error))
|
/external/lldb/source/Plugins/Process/Utility/ |
H A D | RegisterContextMach_arm.cpp | 50 RegisterContextMach_arm::DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc) argument 53 return ::thread_get_state(tid, flavor, (thread_state_t)&exc, &count); 76 RegisterContextMach_arm::DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc) argument 78 return ::thread_set_state(tid, flavor, (thread_state_t)&exc, EXCWordCount);
|
H A D | RegisterContextMach_i386.cpp | 48 RegisterContextMach_i386::DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc) argument 51 return ::thread_get_state(tid, flavor, (thread_state_t)&exc, &count); 67 RegisterContextMach_i386::DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc) argument 69 return ::thread_set_state(tid, flavor, (thread_state_t)&exc, EXCWordCount);
|
H A D | RegisterContextMach_x86_64.cpp | 48 RegisterContextMach_x86_64::DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc) argument 51 return ::thread_get_state(tid, flavor, (thread_state_t)&exc, &count); 67 RegisterContextMach_x86_64::DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc) argument 69 return ::thread_set_state(tid, flavor, (thread_state_t)&exc, EXCWordCount);
|
H A D | RegisterContextDarwin_arm.h | 192 EXC exc; member in class:RegisterContextDarwin_arm 297 DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc) = 0; 309 DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc) = 0;
|
H A D | RegisterContextDarwin_i386.h | 148 EXC exc; member in class:RegisterContextDarwin_i386 239 DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc) = 0; 248 DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc) = 0;
|
H A D | RegisterContextDarwin_x86_64.h | 152 EXC exc; member in class:RegisterContextDarwin_x86_64 243 DoReadEXC (lldb::tid_t tid, int flavor, EXC &exc) = 0; 252 DoWriteEXC (lldb::tid_t tid, int flavor, const EXC &exc) = 0;
|
/external/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/ |
H A D | ProjectConverter.java | 104 } catch (IOException exc) { 105 addException(new ConversionException(exc.toString())); 109 public void addException(ConversionException exc) { argument 113 exception.add(exc); 120 ConversionException exc = (ConversionException) iterator.next(); 121 exc.print();
|
/external/chromium-trace/trace-viewer/third_party/WebOb/docs/comment-example-code/ |
H A D | example.py | 7 from webob import exc namespace 106 resp = exc.HTTPBadRequest('Missing parameter: %s' % e) 115 resp = exc.HTTPSeeOther(location=url+'#comment-area')
|
/external/chromium-trace/trace-viewer/third_party/WebOb/docs/jsonrpc-example-code/ |
H A D | jsonrpc.py | 3 from webob import exc namespace 21 resp = exc.HTTPBadRequest(str(e)) 22 except exc.HTTPException, e: 28 raise exc.HTTPMethodNotAllowed( 43 raise exc.HTTPForbidden(
|
/external/chromium-trace/trace-viewer/third_party/WebOb/docs/wiki-example-code/ |
H A D | example.py | 4 from webob import exc namespace 68 raise exc.HTTPBadRequest('No such action %r' % action) 70 except exc.HTTPException, e: 83 raise exc.HTTPBadRequest("Bad path") 89 return exc.HTTPTemporaryRedirect( 108 return exc.HTTPPreconditionFailed( 113 resp = exc.HTTPSeeOther(
|
/external/chromium-trace/trace-viewer/third_party/webapp2/webapp2_extras/ |
H A D | routes.py | 14 from webob import exc namespace 349 except exc.HTTPMethodNotAllowed: 353 raise exc.HTTPMethodNotAllowed()
|
/external/lldb/tools/debugserver/source/ |
H A D | DNBArch.h | 75 virtual bool NotifyException (MachException::Data& exc) { return false; } argument
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
H A D | ToSAXHandler.java | 367 public void fatalError(SAXParseException exc) throws SAXException { argument 368 super.fatalError(exc); 373 ((ErrorHandler)m_saxHandler).fatalError(exc); 380 public void error(SAXParseException exc) throws SAXException { argument 381 super.error(exc); 384 ((ErrorHandler)m_saxHandler).error(exc); 391 public void warning(SAXParseException exc) throws SAXException { argument 392 super.warning(exc); 395 ((ErrorHandler)m_saxHandler).warning(exc);
|
/external/google-breakpad/src/client/windows/unittests/ |
H A D | exception_handler_test.cc | 177 google_breakpad::ExceptionHandler *exc = local 189 ASSERT_TRUE(exc->IsOutOfProcess()); 209 google_breakpad::ExceptionHandler *exc = local 221 ASSERT_TRUE(exc->IsOutOfProcess());
|
H A D | exception_handler_death_test.cc | 127 scoped_ptr<google_breakpad::ExceptionHandler> exc( 152 scoped_ptr<google_breakpad::ExceptionHandler> exc; local 160 exc.reset(new google_breakpad::ExceptionHandler( 169 exc.reset(new google_breakpad::ExceptionHandler( 186 ASSERT_TRUE(exc->IsOutOfProcess()); 314 scoped_ptr<google_breakpad::ExceptionHandler> exc( 401 scoped_ptr<google_breakpad::ExceptionHandler> exc( 494 scoped_ptr<google_breakpad::ExceptionHandler> exc(
|
/external/lldb/tools/debugserver/source/MacOSX/arm/ |
H A D | DNBArchImpl.h | 65 virtual bool NotifyException(MachException::Data& exc); 134 EXC exc; member in struct:DNBArchMachARM::Context
|
/external/lldb/tools/debugserver/source/MacOSX/ppc/ |
H A D | DNBArchImpl.h | 86 ppc_exception_state_t exc; member in struct:DNBArchMachPPC::State
|
/external/speex/libspeex/ |
H A D | cb_search.c | 108 spx_sig_t *exc, 225 exc[j]=ADD32(exc[j],e[j]); 250 spx_sig_t *exc, 297 split_cb_search_shape_sign_N1(target,ak,awk1,awk2,par,p,nsf,exc,r,bits,stack,update_target); 498 exc[j]=ADD32(exc[j],e[j]); 515 spx_sig_t *exc, 560 exc[subvect_size*i+j]=SHL32(EXTEND32(shape_cb[ind[i]*subvect_size+j]),SIG_SHIFT-5); 563 exc[subvect_siz 100 split_cb_search_shape_sign_N1( spx_word16_t target[], spx_coef_t ak[], spx_coef_t awk1[], spx_coef_t awk2[], const void *par, int p, int nsf, spx_sig_t *exc, spx_word16_t *r, SpeexBits *bits, char *stack, int update_target ) argument 242 split_cb_search_shape_sign( spx_word16_t target[], spx_coef_t ak[], spx_coef_t awk1[], spx_coef_t awk2[], const void *par, int p, int nsf, spx_sig_t *exc, spx_word16_t *r, SpeexBits *bits, char *stack, int complexity, int update_target ) argument 514 split_cb_shape_sign_unquant( spx_sig_t *exc, const void *par, int nsf, SpeexBits *bits, char *stack, spx_int32_t *seed ) argument 572 noise_codebook_quant( spx_word16_t target[], spx_coef_t ak[], spx_coef_t awk1[], spx_coef_t awk2[], const void *par, int p, int nsf, spx_sig_t *exc, spx_word16_t *r, SpeexBits *bits, char *stack, int complexity, int update_target ) argument 599 noise_codebook_unquant( spx_sig_t *exc, const void *par, int nsf, SpeexBits *bits, char *stack, spx_int32_t *seed ) argument [all...] |