HomeSort by relevance Sort by last modified time
    Searched defs:redirect (Results 1 - 25 of 92) sorted by null

1 2 3 4

  /external/curl/tests/libtest/
lib1502.c 49 char redirect[160]; local
54 snprintf(redirect, sizeof(redirect), "google.com:%s:%s", libtest_arg2,
59 dns_cache_list = curl_slist_append(NULL, redirect);
  /dalvik/dx/etc/
mainDexClasses.bat 106 if DEFINED output goto redirect
109 :redirect label
  /external/jetty/src/java/org/eclipse/jetty/webapp/
Descriptor.java 44 protected void redirect(XmlParser parser, String resource, URL source) method in class:Descriptor
WebDescriptor.java 105 redirect(xmlParser,"web-app_2_2.dtd",dtd22); method
106 redirect(xmlParser,"-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN",dtd22); method
107 redirect(xmlParser,"web.dtd",dtd23); method
108 redirect(xmlParser,"web-app_2_3.dtd",dtd23); method
109 redirect(xmlParser,"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN",dtd23); method
110 redirect(xmlParser,"XMLSchema.dtd",schemadtd); method
111 redirect(xmlParser,"http://www.w3.org/2001/XMLSchema.dtd",schemadtd); method
112 redirect(xmlParser,"-//W3C//DTD XMLSCHEMA 200102//EN",schemadtd); method
113 redirect(xmlParser,"jsp_2_0.xsd",jsp20xsd); method
114 redirect(xmlParser,"http://java.sun.com/xml/ns/j2ee/jsp_2_0.xsd",jsp20xsd) method
115 redirect(xmlParser,"http:\/\/java.sun.com\/xml\/ns\/javaee\/jsp_2_1.xsd",jsp21xsd); method
116 redirect(xmlParser,"j2ee_1_4.xsd",j2ee14xsd); method
117 redirect(xmlParser,"http:\/\/java.sun.com\/xml\/ns\/j2ee\/j2ee_1_4.xsd",j2ee14xsd); method
118 redirect(xmlParser,"web-app_2_4.xsd",webapp24xsd); method
119 redirect(xmlParser,"http:\/\/java.sun.com\/xml\/ns\/j2ee\/web-app_2_4.xsd",webapp24xsd); method
120 redirect(xmlParser,"web-app_2_5.xsd",webapp25xsd); method
121 redirect(xmlParser,"http:\/\/java.sun.com\/xml\/ns\/javaee\/web-app_2_5.xsd",webapp25xsd); method
122 redirect(xmlParser,"web-app_3_0.xsd",webapp30xsd); method
123 redirect(xmlParser,"http:\/\/java.sun.com\/xml\/ns\/javaee\/web-app_3_0.xsd",webapp30xsd); method
124 redirect(xmlParser,"web-common_3_0.xsd",webcommon30xsd); method
125 redirect(xmlParser,"http:\/\/java.sun.com\/xml\/ns\/javaee\/web-common_3_0.xsd",webcommon30xsd); method
126 redirect(xmlParser,"web-fragment_3_0.xsd",webfragment30xsd); method
127 redirect(xmlParser,"http:\/\/java.sun.com\/xml\/ns\/javaee\/web-fragment_3_0.xsd",webfragment30xsd); method
128 redirect(xmlParser,"xml.xsd",xmlxsd); method
129 redirect(xmlParser,"http:\/\/www.w3.org\/2001\/xml.xsd",xmlxsd); method
130 redirect(xmlParser,"datatypes.dtd",datatypesdtd); method
131 redirect(xmlParser,"http:\/\/www.w3.org\/2001\/datatypes.dtd",datatypesdtd); method
132 redirect(xmlParser,"j2ee_web_services_client_1_1.xsd",webservice11xsd); method
133 redirect(xmlParser,"http:\/\/www.ibm.com\/webservices\/xsd\/j2ee_web_services_client_1_1.xsd",webservice11xsd); method
134 redirect(xmlParser,"javaee_web_services_client_1_2.xsd",webservice12xsd); method
135 redirect(xmlParser,"http:\/\/www.ibm.com\/webservices\/xsd\/javaee_web_services_client_1_2.xsd",webservice12xsd); method
    [all...]
TagLibConfiguration.java 382 redirect(parser, "web-jsptaglib_1_1.dtd",taglib11); method
383 redirect(parser, "web-jsptaglibrary_1_1.dtd",taglib11); method
387 redirect(parser, "web-jsptaglib_1_2.dtd",taglib12); method
388 redirect(parser, "web-jsptaglibrary_1_2.dtd",taglib12); method
392 redirect(parser, "web-jsptaglib_2_0.xsd",taglib20); method
393 redirect(parser, "web-jsptaglibrary_2_0.xsd",taglib20); method
397 redirect(parser, "web-jsptaglib_2_1.xsd",taglib21); method
398 redirect(parser, "web-jsptaglibrary_2_1.xsd",taglib21); method
  /external/chromium-trace/catapult/third_party/Paste/paste/auth/
open_id.py 149 Call the application, and redirect if the app returns a 401 response
215 # Now ask the library for the URL to redirect the user to
222 # Send the redirect response
223 return self.redirect(request, redirect_url)
228 """Handle the redirect from the OpenID server.
267 fmt = ("If you had supplied a login redirect path, you would have "
272 # @@: This stuff doesn't make sense to me; why not a remote redirect?
296 def redirect(self, request, redirect_url): member in class:AuthOpenIDHandler
297 """Send a redirect response to the given URL to the browser."""
300 request['start']('302 REDIRECT', response_headers
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/ui/
PermissionCheckActivity.java 95 redirect(); method
111 redirect(); method
133 redirect(); method
137 private void redirect() { method in class:PermissionCheckActivity
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/webapp/
service_handlers.py 389 redirect: Not implemented for this service handler.
454 def redirect(self, uri, permanent=False): member in class:ServiceHandler
  /external/emma/core/java12/com/vladium/util/
Property.java 509 final String redirect = (String) m_systemRedirects.get (key); local
511 if (redirect != null)
513 result = getSystemProperty (redirect, null);
  /external/mockwebserver/src/test/java/com/google/mockwebserver/
MockWebServerTest.java 132 RecordedRequest redirect = server.takeRequest(); local
133 assertEquals("GET /new-path HTTP/1.1", redirect.getRequestLine());
  /external/autotest/client/common_lib/
logging_manager.py 429 def redirect(self, filename): member in class:LoggingManager
430 """Redirect output to the specified file"""
435 """Redirect output to the given stream"""
514 result, every time we redirect output we need to spawn a new subprocess to
559 Redirect all configured logging StreamHandlers pointing to
  /external/okhttp/mockwebserver/src/test/java/com/squareup/okhttp/mockwebserver/
MockWebServerTest.java 97 @Test public void redirect() throws Exception { method in class:MockWebServerTest
111 RecordedRequest redirect = server.takeRequest(); local
112 assertEquals("GET /new-path HTTP/1.1", redirect.getRequestLine());
  /external/okhttp/okhttp-apache/src/test/java/com/squareup/okhttp/apache/
OkApacheClientTest.java 56 @Test public void redirect() throws Exception { method in class:OkApacheClientTest
58 server.enqueue(new MockResponse().setBody("Hello, Redirect!"));
63 assertEquals("Hello, Redirect!", actual);
  /external/apache-http/src/org/apache/http/impl/client/
DefaultRequestDirector.java 141 /** The redirect handler. */
211 ("Redirect handler may not be null.");
944 HttpGet redirect = new HttpGet(uri); local
    [all...]
  /external/chromium-trace/catapult/third_party/webapp2/
webapp2.py 600 def redirect(self, uri, permanent=False, abort=False, code=None, member in class:RequestHandler
602 """Issues an HTTP redirect to the given relative URI.
604 The arguments are described in :func:`redirect`.
606 return redirect(uri, permanent=permanent, abort=abort, code=code,
612 """Convenience method mixing :meth:`redirect` and :meth:`uri_for`.
614 The arguments are described in :func:`redirect` and :func:`uri_for`.
617 return self.redirect(uri, permanent=_permanent, abort=_abort,
662 """Performs a redirect.
668 - **_code**: The redirect status code. Default is 301 (permanent
669 redirect)
1736 def redirect(uri, permanent=False, abort=False, code=None, body=None, function
    [all...]
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
HttpOverSpdyTest.java 233 @Test public void redirect() throws Exception { method in class:HttpOverSpdyTest
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/impl/client/
DefaultRequestDirector.java 138 /** The redirect handler. */
215 ("Redirect handler may not be null.");
973 HttpRedirect redirect = new HttpRedirect(request.getMethod(), uri); local
    [all...]
  /ndk/sources/host-tools/nawk-20071023/
run.c 985 fp = redirect(ptoi(a[1]), a[2]);
1597 FILE *redirect(int a, Node *b) \/* set up all i\/o redirections *\/ function
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_urllib2.py 471 for scheme in "do", "proxy", "redirect":
948 def redirect(h, req, url=to_url): function in function:HandlerTests.test_redirect
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_urllib2.py 471 for scheme in "do", "proxy", "redirect":
948 def redirect(h, req, url=to_url): function in function:HandlerTests.test_redirect
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_urllib2.py 471 for scheme in "do", "proxy", "redirect":
948 def redirect(h, req, url=to_url): function in function:HandlerTests.test_redirect
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_urllib2.py 471 for scheme in "do", "proxy", "redirect":
948 def redirect(h, req, url=to_url): function in function:HandlerTests.test_redirect
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/extensions/
XKBstr.h 256 XkbRedirectKeyAction redirect; member in union:_XkbAction
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/extensions/
XKBstr.h 256 XkbRedirectKeyAction redirect; member in union:_XkbAction
  /external/robolectric/v3/
shadows-httpclient-3.1-SNAPSHOT.jar 

Completed in 2214 milliseconds

1 2 3 4