HomeSort by relevance Sort by last modified time
    Searched full:redirect (Results 426 - 450 of 1272) sorted by null

<<11121314151617181920>>

  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/config/
_evc.h 80 * Redirect cout, cerr and clog:
81 * If defined redirect cout, cerr and clog to
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/config/
_evc.h 80 * Redirect cout, cerr and clog:
81 * If defined redirect cout, cerr and clog to
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/config/
_evc.h 80 * Redirect cout, cerr and clog:
81 * If defined redirect cout, cerr and clog to
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/config/
_evc.h 80 * Redirect cout, cerr and clog:
81 * If defined redirect cout, cerr and clog to
  /external/chromium/chrome/browser/history/
history_backend.cc 83 // The maximum number of items we'll allow in the redirect list before
377 // If a redirect chain is given, we expect the last item in that chain to be
407 // No redirect case (one element means just the page itself).
419 // Redirect case. Add the redirect chain.
424 // When the redirect source + referrer is "about" we skip it. This
429 // subsequent client redirect came from.
436 // The first entry in the redirect chain initiated a client redirect.
439 // transition to client redirect
    [all...]
top_sites_unittest.cc 395 // Same as AppendMostVisitedURL except that it adds a redirect from the first
429 // The URL in question is the source URL in a redirect list.
433 // The URL in question is the destination of a redirect.
511 // Set on the redirect source should succeed. It should be replacable by
512 // the same score on the redirect destination, which in turn should not
577 // Get a thumbnail via a redirect.
681 GURL google2_url("http://google.com/redirect");
791 GURL google2_url("http://google.com/redirect");
862 GURL google2_url("http://google.com/redirect");
    [all...]
  /external/chromium_org/chrome/browser/content_settings/
content_settings_browsertest.cc 234 GURL test_url = test_server()->GetURL("files/redirect-loop.html");
266 // Tests that if redirect across origins occurs, the new process still gets the
274 std::string redirect(base::StringPrintf(
275 "http://localhost:%d/files/redirect-cross-origin.html",
277 GURL test_url = test_server()->GetURL("server-redirect?" + redirect);
  /external/netperf/
netserver.c 230 /* and redirect stdout to it. */
448 FILE *rd_null_fp; /* Used to redirect from "/dev/null". */
449 FILE *wr_null_fp; /* Used to redirect to "/dev/null". */
577 /* Redirect stdin from "/dev/null". */
595 /* Redirect stdout to the debug write file descriptor. */
607 /* Redirect stderr to "/dev/null". */
  /frameworks/base/tests/CoreTests/android/core/
TestWebServer.java 193 * a redirect code with the Location response header set to the value
195 * @param redirect The location to be redirected to
198 public void setRedirect(String redirect, int code) {
199 redirectHost = redirect;
201 log("Server will redirect output to "+redirect+" code "+code);
  /libcore/support/src/test/java/tests/support/
Support_TestWebServer.java 179 * a redirect code with the Location response header set to the value
181 * @param redirect The location to be redirected to
184 public void setRedirect(String redirect, int code) {
185 redirectHost = redirect;
187 log("Server will redirect output to "+redirect+" code "+code);
  /external/chromium_org/chrome/browser/history/
history_backend.cc 89 // The maximum number of items we'll allow in the redirect list before
299 // because if this was the target of a redirect, we might end up with
385 // If a redirect chain is given, we expect the last item in that chain to be
436 // No redirect case (one element means just the page itself).
451 // Redirect case. Add the redirect chain.
458 // When the redirect source + referrer is "about" we skip it. This
463 // subsequent client redirect came from.
470 // The first entry in the redirect chain initiated a client redirect
    [all...]
history_backend.h 215 // redirect in a row, so this function will fill the given array with the
225 // given RedirectList. For example, if we have the redirect list A -> B -> C,
603 // Returns a redirect chain in |redirects| for the VisitID
609 // Similar to the above function except returns a redirect list ending
    [all...]
visit_database.cc 361 // The visit_time values can be duplicated in a redirect chain, so we sort
417 // The visit_time values can be duplicated in a redirect chain, so we sort
440 // The visit_time values can be duplicated in a redirect chain, so we sort
466 return false; // No redirect from this visit. (Or SQL error)
518 // in the middle of redirect chains, hence the transition checks.
  /external/chromium_org/net/http/
http_pipelined_connection_impl_unittest.cc     [all...]
  /external/chromium/net/url_request/
url_request_unittest.cc 247 // issuing a CONNECT request with the magic host name "www.redirect.com".
255 URLRequest r(GURL("https://www.redirect.com/"), &d);
267 // We should not have followed the redirect.
280 URLRequest r(GURL("https://www.redirect.com/"), &d);
294 // We should not have followed the redirect.
329 // Tests that the network delegate can block and redirect a request to a new
437 // and responds with a redirect to an http url. The http
442 "server-redirect?" + http_destination.spec()), &d);
458 "server-redirect?" + destination_url.spec());
460 "server-redirect?" + middle_redirect_url.spec())
    [all...]
  /external/chromium/net/tools/testserver/
testserver.py     [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
session.cc 1258 SessionRedirect redirect; local
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/activities/
PeopleActivity.java 299 * Resolve the intent and initialize {@link #mRequest}, and launch another activity if redirect
319 Intent redirect = mRequest.getRedirectIntent(); local
320 if (redirect != null) {
322 startActivity(redirect);
328 redirect = new Intent(this, ContactDetailActivity.class);
329 redirect.setAction(Intent.ACTION_VIEW);
330 redirect.setData(mRequest.getContactUri());
331 startActivity(redirect);
563 // We redirect this intent to the detail activity on 1-pane, so we don't get
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/gdocs/
chrome_ex_oauth.js 429 * no redirect is needed and the supplied callback is called immediately.
430 * If this method detects that a redirect has finished, it grabs the
432 * access token. If no token exists and no redirect has happened, then
467 * "url_callback" {String} The URL the OAuth provider will redirect to.
469 * URL in order to indicate to this library that a redirect has
  /external/chromium/chrome/common/extensions/docs/examples/extensions/oauth_contacts/
chrome_ex_oauth.js 429 * no redirect is needed and the supplied callback is called immediately.
430 * If this method detects that a redirect has finished, it grabs the
432 * access token. If no token exists and no redirect has happened, then
467 * "url_callback" {String} The URL the OAuth provider will redirect to.
469 * URL in order to indicate to this library that a redirect has
  /external/chromium/chrome/common/extensions/docs/examples/extensions/wave/
chrome_ex_oauth.js 429 * no redirect is needed and the supplied callback is called immediately.
430 * If this method detects that a redirect has finished, it grabs the
432 * access token. If no token exists and no redirect has happened, then
467 * "url_callback" {String} The URL the OAuth provider will redirect to.
469 * URL in order to indicate to this library that a redirect has
  /external/chromium_org/chrome/browser/safe_browsing/
browser_feature_extractor_unittest.cc 117 // Wrapper around NavigateAndCommit that also sets the redirect chain to
386 // We shouldn't have a feature for the last redirect in the chain, since it
401 redirect_chain.push_back(GURL("http://www.foo.com/redirect"));
424 "http://www.foo.com/redirect")]);
552 // Should not have redirect or host features.
malware_details_unittest.cc 307 // The redirects is the redirect url chain leading to the url.
310 // The last item of the redirect chain has to be the final url when adding
473 // Tests creating a malware report where there are redirect urls to an unsafe
483 // add some redirect urls
643 // There are two redirect urls before reacing malware url:
safe_browsing_blocking_page_test.cc 494 // Trigger the safe browsing interstitial page via a redirect in
502 // Cancel the redirect request while interstitial page is open.
610 // 1. Test the case that redirect is a subresource.
612 // If the redirect was from subresource but canceled, "proceed" will continue
619 // 2. Test the case that redirect is the only resource.
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/gdocs/
chrome_ex_oauth.js 427 * no redirect is needed and the supplied callback is called immediately.
428 * If this method detects that a redirect has finished, it grabs the
430 * access token. If no token exists and no redirect has happened, then
465 * "url_callback" {String} The URL the OAuth provider will redirect to.
467 * URL in order to indicate to this library that a redirect has

Completed in 1928 milliseconds

<<11121314151617181920>>