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

1 2

  /dalvik/dx/etc/
mainDexClasses.bat 98 if DEFINED output goto redirect
101 :redirect label
  /packages/apps/Exchange/src/com/android/exchange/
SettingsRedirector.java 40 Intent redirect = new Intent( local
44 redirect.setFlags(Intent.FLAG_ACTIVITY_FORWARD_RESULT);
46 startActivity(redirect);
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
RawResource.cpp 62 RedirectPair redirect = redirectChain()[i]; local
63 ResourceRequest request(redirect.m_request);
64 client->redirectReceived(this, request, redirect.m_redirectResponse);
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-php/
index.php 121 // This section performs the OpenID dance with the normal redirect. Use it
147 $redirect = $_SESSION['redirect_to']; variable
149 header('Location: ' . $redirect);
  /external/chromium_org/third_party/WebKit/Source/web/tests/
AssociatedURLLoaderTest.cpp 443 // Test a same-origin URL redirect and load.
447 char redirect[] = "http://www.test.com/RedirectSuccess2.html"; // Same-origin local
448 KURL redirectURL = toKURL(redirect);
458 m_expectedRedirectResponse.setHTTPHeaderField("Location", redirect);
481 // Test that a cross origin redirect response without CORS headers fails.
486 char redirect[] = "http://www.other.com/RedirectCrossOriginWithAccessControlFailure.html"; // Cross-origin local
487 KURL redirectURL = toKURL(redirect);
493 // Create a redirect response without CORS headers.
498 m_expectedRedirectResponse.setHTTPHeaderField("Location", redirect);
507 // We should not receive a notification for the redirect or any response
518 char redirect[] = "http:\/\/www.other.com\/RedirectCrossOriginWithAccessControlSuccess.html"; \/\/ Cross-origin local
    [all...]
WebFrameTest.cpp 5058 char redirect[] = "http:\/\/www.test.com\/first_party.html"; local
    [all...]
  /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/okhttp/mockwebserver/src/test/java/com/squareup/okhttp/mockwebserver/
MockWebServerTest.java 192 RecordedRequest redirect = server.takeRequest(); local
193 assertEquals("GET /new-path HTTP/1.1", redirect.getRequestLine());
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Job.java 147 Request redirect = processResponse(engine, response); local
149 if (redirect == null) {
157 if (!sameConnection(request, redirect)) {
163 request = redirect;
207 // the user agent MUST NOT automatically redirect the request"
  /external/okhttp/okhttp-apache/src/test/java/com/squareup/okhttp/apache/
OkApacheClientTest.java 54 @Test public void redirect() throws Exception { method in class:OkApacheClientTest
56 server.enqueue(new MockResponse().setBody("Hello, Redirect!"));
61 assertEquals("Hello, Redirect!", actual);
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
AsyncApiTest.java 201 @Test public void redirect() throws Exception { method in class:AsyncApiTest
205 .addHeader("Test", "Redirect from /a to /b")
210 .addHeader("Test", "Redirect from /b to /c")
223 .assertContainsHeaders("Test: Redirect from /b to /c")
226 .assertContainsHeaders("Test: Redirect from /a to /b");
238 .addHeader("Test", "Redirect from /a to /b")
SyncApiTest.java 175 @Test public void redirect() throws Exception { method in class:SyncApiTest
179 .addHeader("Test", "Redirect from /a to /b")
184 .addHeader("Test", "Redirect from /b to /c")
194 .assertContainsHeaders("Test: Redirect from /b to /c")
197 .assertContainsHeaders("Test: Redirect from /a to /b");
209 .addHeader("Test", "Redirect from /a to /b")
  /external/smack/src/org/jivesoftware/smack/packet/
XMPPError.java 45 * <tr><td>302</td><td>redirect</td><td>MODIFY</td></tr>
329 public static final Condition redirect = new Condition("redirect"); field in class:XMPPError.Condition
396 instances.put(Condition.redirect, new XMPPError.ErrorSpecification(
397 Condition.redirect, Type.MODIFY, 302));
  /external/chromium_org/chrome/common/extensions/docs/server2/
appengine_wrappers.py 205 def redirect(self, path, permanent=False): member in class:IsDownloadError.webapp2.RequestHandler
  /external/apache-http/src/org/apache/http/impl/client/
DefaultRequestDirector.java 140 /** The redirect handler. */
210 ("Redirect handler may not be null.");
935 HttpGet redirect = new HttpGet(uri); local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
session.cc 1316 SessionRedirect redirect; local
    [all...]
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
HttpOverSpdyTest.java 252 @Test public void redirect() throws Exception { method in class:HttpOverSpdyTest
  /external/robolectric/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...]
  /packages/apps/Contacts/src/com/android/contacts/activities/
ContactSelectionActivity.java 121 Intent redirect = mRequest.getRedirectIntent(); local
122 if (redirect != null) {
124 startActivity(redirect);
PeopleActivity.java 249 * Resolve the intent and initialize {@link #mRequest}, and launch another activity if redirect
269 Intent redirect = mRequest.getRedirectIntent(); local
270 if (redirect != null) {
272 startActivity(redirect);
277 redirect = new Intent(this, QuickContactActivity.class);
278 redirect.setAction(Intent.ACTION_VIEW);
279 redirect.setData(mRequest.getContactUri());
280 startActivity(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.6/sysroot/usr/include/X11/extensions/
XKBstr.h 256 XkbRedirectKeyAction redirect; member in union:_XkbAction

Completed in 1034 milliseconds

1 2