/external/glide/library/src/main/java/com/bumptech/glide/request/ |
H A D | Request.java | 6 public interface Request { interface
|
/external/chromium-trace/trace-viewer/third_party/WebOb/webob/ |
H A D | dec.py | 14 from webob.request import Request namespace 38 decorator. Most notably, you can use a :class:`webob.Request` 41 class MyRequest(webob.Request): 83 RequestClass = Request
|
H A D | exc.py | 177 from webob.request import Request namespace 491 req = Request(environ) 611 this is a '400 Bad Request' 613 code: 400, title: Bad Request 616 title = 'Bad Request' 667 Request-URI. 679 This indicates that the method specified in the Request-Line is 680 not allowed for the resource identified by the Request-URI. 730 code: 408, title: Request Timeout 733 title = 'Request Timeou [all...] |
H A D | request.py | 83 __all__ = ['BaseRequest', 'Request', 'LegacyRequest'] 118 "You unicode_errors=%r to the Request constructor. Passing a " 119 "``unicode_errors`` value to the Request is no longer " 126 "You passed decode_param_names=%r to the Request constructor. " 127 "Passing a ``decode_param_names`` value to the Request " 134 "You passed charset=%r to the Request constructor. As of " 254 # BaseRequest and Request (due to AdhocAttrMixin.__setattr__) 688 value use :meth:`webob.request.Request.host` instead. 709 raise TypeError("You can only set Request.body to bytes (not %r)" 741 "You cannot access Request 1423 class Request(AdhocAttrMixin, BaseRequest): class in inherits:AdhocAttrMixin, BaseRequest [all...] |
/external/chromium-trace/trace-viewer/third_party/WebOb/docs/comment-example-code/ |
H A D | example.py | 6 from webob import Request, Response, html_escape namespace 18 req = Request(environ)
|
/external/chromium-trace/trace-viewer/third_party/WebOb/docs/jsonrpc-example-code/ |
H A D | jsonrpc.py | 2 from webob import Request, Response namespace 17 req = Request(environ) 107 req = Request.blank(self.parent._url)
|
/external/chromium-trace/trace-viewer/third_party/WebOb/docs/wiki-example-code/ |
H A D | example.py | 3 from webob import Request, Response namespace 61 req = Request(environ)
|
/external/jetty/src/java/org/eclipse/jetty/server/ |
H A D | LocalConnector.java | 37 private final BlockingQueue<Request> _requests = new LinkedBlockingQueue<Request>(); 63 Request request = new Request(requestsBuffer, keepOpen, latch); 72 Request request = _requests.take(); 91 Request request = new Request(new ByteArrayBuffer(rawRequest, "UTF-8"), true, null); 95 private class Request implements Runnable class in class:LocalConnector 102 private Request(ByteArrayBuffer requestsBuffer, boolean keepOpen, CountDownLatch latch) method in class:LocalConnector.Request
|
H A D | Request.java | 98 * Jetty Request. 107 * <li>The {@link Request#getContextPath()} method will return null, until the request has been passed to a {@link ContextHandler} which matches the 108 * {@link Request#getPathInfo()} with a context path and calls {@link Request#setContextPath(String)} as a result.</li> 113 * <li>The {@link Request#getServletPath()} method will return null until the request has been passed to a <code>org.eclipse.jetty.servlet.ServletHandler</code> 114 * and the pathInfo matched against the servlet URL patterns and {@link Request#setServletPath(String)} called as a result.</li> 122 * {@link ContextHandler#getMaxFormContentSize()} or if there is no context then the "org.eclipse.jetty.server.Request.maxFormContentSize" {@link Server} 124 * "org.eclipse.jetty.server.Request.maxFormKeys" {@link Server} attribute. 128 public class Request implements HttpServletRequest class in inherits:HttpServletRequest 133 private static final Logger LOG = Log.getLogger(Request 232 public Request() method in class:Request 237 public Request(AbstractHttpConnection connection) method in class:Request [all...] |
/external/junit/src/org/junit/runner/ |
H A D | Request.java | 14 * <p>A <code>Request</code> is an abstract description of tests to be run. Older versions of 20 * <p>The flow when JUnit runs tests is that a <code>Request</code> specifies some tests to be run -> 21 * a {@link org.junit.runner.Runner} is created for each class implied by the <code>Request</code> -> 25 public abstract class Request { class 27 * Create a <code>Request</code> that, when processed, will run a single test. 32 * @return a <code>Request</code> that will cause a single test be run 34 public static Request method(Class<?> clazz, String methodName) { 36 return Request.aClass(clazz).filterWith(method); 40 * Create a <code>Request</code> that, when processed, will run all the tests 43 * @return a <code>Request</cod [all...] |
/external/nist-sip/java/javax/sip/message/ |
H A D | Request.java | 6 public interface Request extends Message { interface in inherits:Message
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
H A D | Request.java | 31 public final class Request { class 42 private Request(Builder builder) { method in class:Request 115 return "Request{method=" 137 private Builder(Request request) { 253 public Request build() { 255 return new Request(this);
|
/external/apache-http/android/src/android/net/http/ |
H A D | Request.java | 47 class Request { class 96 * Instantiates a new Request. 106 Request(String method, HttpHost host, HttpHost proxyHost, String path, method in class:Request 151 * @param connection Request served by this connection 207 HttpLog.v("Request.sendRequest() " + mHost.getSchemeName() + "://" + getHostPort()); 227 HttpLog.v("Request.requestSent() " + mHost.getSchemeName() + "://" + getHostPort() + mPath); 253 "Request.readResponseStatus() " + 316 if (HttpLog.LOGV) HttpLog.v("Request.readResponse() " + count); 352 if (HttpLog.LOGV) HttpLog.v("Request.readResponse(): done " + 364 HttpLog.v("Request [all...] |
/external/chromium-trace/trace-viewer/third_party/webapp2/tests/ |
H A D | routing_test.py | 5 from webapp2 import BaseRoute, RedirectHandler, Request, Route, Router namespace 13 route, args, kwargs = route.match(Request.blank('/hello')) 15 url = route.build(Request.blank('/'), (), {}) 19 route, args, kwargs = route.match(Request.blank('/hello/world/')) 21 url = route.build(Request.blank('/'), (), {}) 26 self.assertEqual(route.match(Request.blank('/1')), (route, ('1',), {})) 27 self.assertEqual(route.match(Request.blank('/2')), (route, ('2',), {})) 30 self.assertEqual(route.match(Request.blank('/11')), (route, ('11',), {})) 31 self.assertEqual(route.match(Request.blank('/111')), (route, ('111',), {})) 32 self.assertEqual(route.match(Request [all...] |
/external/kernel-headers/original/uapi/linux/ |
H A D | cciss_ioctl.h | 42 RequestBlock_struct Request; member in struct:_IOCTL_Command_struct 50 RequestBlock_struct Request; member in struct:_BIG_IOCTL_Command_struct
|
/external/google-breakpad/src/client/mac/handler/ |
H A D | exception_handler.cc | 179 } Request; typedef in typeref:struct:google_breakpad::__anon5082 190 Request* In0P = (Request*)InHeadP;
|
/external/chromium-trace/trace-viewer/third_party/webapp2/ |
H A D | webapp2.py | 102 408: 'Request Time-out', 103 414: 'Request-URI Too Large', 114 class Request(webob.Request): class in inherits:webob.Request 139 """Constructs a Request object from a WSGI environment. 155 super(Request, self).__init__(environ, *args, **kwargs) 178 'Please use the Request.get_all() method instead.') 266 return super(Request, cls).blank(path, environ=environ, 287 base = super(Request, cls).blank(path, environ=environ, 499 #: A :class:`Request` instanc [all...] |
/external/valgrind/coregrind/m_syswrap/ |
H A D | syswrap-darwin.c | 4819 } Request; typedef in typeref:struct:__anon16046 4822 Request *req = (Request *)ARG1; 4881 } Request; typedef in typeref:struct:__anon16049 4884 // Request *req = (Request *)ARG1; 4917 } Request; typedef in typeref:struct:__anon16051 4920 Request *req = (Request *)ARG1; 4939 } Request; typedef in typeref:struct:__anon16052 4984 } Request; typedef in typeref:struct:__anon16053 5016 } Request; typedef in typeref:struct:__anon16055 5051 } Request; typedef in typeref:struct:__anon16057 5075 } Request; typedef in typeref:struct:__anon16058 5112 } Request; typedef in typeref:struct:__anon16060 5159 } Request; typedef in typeref:struct:__anon16062 5210 } Request; typedef in typeref:struct:__anon16064 5255 } Request; typedef in typeref:struct:__anon16066 5309 } Request; typedef in typeref:struct:__anon16068 5350 } Request; typedef in typeref:struct:__anon16070 5394 } Request; typedef in typeref:struct:__anon16072 5450 } Request; typedef in typeref:struct:__anon16074 5480 } Request; typedef in typeref:struct:__anon16075 5515 } Request; typedef in typeref:struct:__anon16076 5544 } Request; typedef in typeref:struct:__anon16077 5571 } Request; typedef in typeref:struct:__anon16078 5596 } Request; typedef in typeref:struct:__anon16079 5621 } Request; typedef in typeref:struct:__anon16080 5714 } Request; typedef in typeref:struct:__anon16082 5755 } Request; typedef in typeref:struct:__anon16084 5795 } Request; typedef in typeref:struct:__anon16086 5834 } Request; typedef in typeref:struct:__anon16088 5867 } Request; typedef in typeref:struct:__anon16090 5903 } Request; typedef in typeref:struct:__anon16092 5938 } Request; typedef in typeref:struct:__anon16094 6020 } Request; typedef in typeref:struct:__anon16096 6077 } Request; typedef in typeref:struct:__anon16098 6135 } Request; typedef in typeref:struct:__anon16100 6196 } Request; typedef in typeref:struct:__anon16102 6240 } Request; typedef in typeref:struct:__anon16104 6287 } Request; typedef in typeref:struct:__anon16106 6333 } Request; typedef in typeref:struct:__anon16108 6389 } Request; typedef in typeref:struct:__anon16110 6449 } Request; typedef in typeref:struct:__anon16112 6512 } Request; typedef in typeref:struct:__anon16114 6587 } Request; typedef in typeref:struct:__anon16116 6629 } Request; typedef in typeref:struct:__anon16118 6672 } Request; typedef in typeref:struct:__anon16120 6715 } Request; typedef in typeref:struct:__anon16122 6771 } Request; typedef in typeref:struct:__anon16124 6829 } Request; typedef in typeref:struct:__anon16126 6887 } Request; typedef in typeref:struct:__anon16128 6930 } Request; typedef in typeref:struct:__anon16130 6979 } Request; typedef in typeref:struct:__anon16132 7033 } Request; typedef in typeref:struct:__anon16134 7103 } Request; typedef in typeref:struct:__anon16136 7158 } Request; typedef in typeref:struct:__anon16138 7273 } Request; typedef in typeref:struct:__anon16140 7492 } Request; typedef in typeref:struct:__anon16143 7596 } Request; typedef in typeref:struct:__anon16145 7652 } Request; typedef in typeref:struct:__anon16147 [all...] |
/external/mdnsresponder/mDNSCore/ |
H A D | mDNSEmbeddedAPI.h | 981 mDNSu8 *Request; // xml request to router member in struct:tcpLNTInfo_struct
|
/external/owasp/sanitizer/lib/junit/ |
H A D | junit-dep.jar | META-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ... |
H A D | junit.jar | META-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ... |
/external/libphonenumber/lib/ |
H A D | junit-4.8.1.jar | META-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ... |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
H A D | org.mortbay.jetty.server_6.1.23.v201004211559.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |
H A D | org.eclipse.debug.core_3.6.0.v20100519.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |
H A D | org.eclipse.text_3.5.0.v20100601-1300.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |