Searched defs:exc (Results 1 - 25 of 75) sorted by relevance

123

/external/fdlibm/
H A Dk_standard.c84 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/catapult/third_party/WebOb/webob/
H A Dstatic.py4 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 Dclient.py10 from webob import exc namespace
97 resp = exc.HTTPGatewayTimeout()
103 resp = exc.HTTPBadGateway(
109 resp = exc.HTTPBadGateway("Connection refused")
/external/chromium-trace/catapult/third_party/webapp2/tests/
H A Dmisc_test.py3 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/curl/tests/libtest/
H A Dlib503.c65 fd_set rd, wr, exc; local
80 FD_ZERO(&exc);
82 multi_fdset(m, &rd, &wr, &exc, &maxfd);
86 select_test(maxfd+1, &rd, &wr, &exc, &interval);
H A Dlib504.c42 fd_set rd, wr, exc; local
90 FD_ZERO(&exc);
94 multi_fdset(m, &rd, &wr, &exc, &maxfd);
98 select_test(maxfd+1, &rd, &wr, &exc, &interval);
H A Dlib525.c117 fd_set rd, wr, exc; local
132 FD_ZERO(&exc);
134 multi_fdset(m, &rd, &wr, &exc, &maxfd);
138 select_test(maxfd+1, &rd, &wr, &exc, &interval);
H A Dlib526.c86 fd_set rd, wr, exc; local
130 FD_ZERO(&exc);
132 multi_fdset(m, &rd, &wr, &exc, &maxfd);
136 select_test(maxfd+1, &rd, &wr, &exc, &interval);
H A Dlib530.c76 fd_set rd, wr, exc; local
98 FD_ZERO(&exc);
100 multi_fdset(m, &rd, &wr, &exc, &maxfd);
104 select_test(maxfd+1, &rd, &wr, &exc, &interval);
H A Dlib533.c60 fd_set rd, wr, exc; local
92 FD_ZERO(&exc);
94 multi_fdset(m, &rd, &wr, &exc, &maxfd);
98 select_test(maxfd+1, &rd, &wr, &exc, &interval);
H A Dlib564.c58 fd_set rd, wr, exc; local
73 FD_ZERO(&exc);
75 multi_fdset(m, &rd, &wr, &exc, &maxfd);
79 select_test(maxfd+1, &rd, &wr, &exc, &interval);
H A Dlib1506.c92 fd_set rd, wr, exc; local
107 FD_ZERO(&exc);
109 multi_fdset(m, &rd, &wr, &exc, &maxfd);
113 select_test(maxfd+1, &rd, &wr, &exc, &interval);
H A Dfirst.c41 int select_wrapper(int nfds, fd_set *rd, fd_set *wr, fd_set *exc, argument
59 return select(nfds, rd, wr, exc, tv);
H A Dlib1900.c171 fd_set rd, wr, exc; local
217 FD_ZERO(&exc);
219 curl_multi_fdset(m, &rd, &wr, &exc, &maxfd);
234 select_test(maxfd+1, &rd, &wr, &exc, &interval);
/external/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/
H A DProjectConverter.java104 } 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/catapult/third_party/WebOb/docs/comment-example-code/
H A Dexample.py7 from webob import exc namespace
106 resp = exc.HTTPBadRequest('Missing parameter: %s' % e)
115 resp = exc.HTTPSeeOther(location=url+'#comment-area')
/external/chromium-trace/catapult/third_party/WebOb/docs/jsonrpc-example-code/
H A Djsonrpc.py3 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/catapult/third_party/WebOb/docs/wiki-example-code/
H A Dexample.py4 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/catapult/third_party/webapp2/webapp2_extras/
H A Droutes.py14 from webob import exc namespace
349 except exc.HTTPMethodNotAllowed:
353 raise exc.HTTPMethodNotAllowed()
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DToSAXHandler.java367 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 Dexception_handler_test.cc177 google_breakpad::ExceptionHandler *exc = local
189 ASSERT_TRUE(exc->IsOutOfProcess());
209 google_breakpad::ExceptionHandler *exc = local
221 ASSERT_TRUE(exc->IsOutOfProcess());
H A Dexception_handler_death_test.cc127 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/sl4a/ScriptingLayerForAndroid/jni/
H A Dcom_googlecode_android_scripting_Exec.cpp88 jthrowable exc; local
97 exc = env->ExceptionOccurred();
98 if (!exc) {
109 env->DeleteLocalRef(exc);
/external/speex/libspeex/
H A Dcb_search.c108 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...]
/external/neven/
H A DFaceDetector_jni.cpp86 static void doThrow(JNIEnv* env, const char* exc, const char* msg = NULL) argument
88 jclass npeClazz = env->FindClass(exc);

Completed in 723 milliseconds

123