HomeSort by relevance Sort by last modified time
    Searched full:redirects (Results 1 - 25 of 270) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/chromium/webkit/glue/
iframe_redirect_unittest.cc 44 WebVector<WebURL> redirects; local
45 iframe_ds->redirectChain(redirects);
46 ASSERT_FALSE(redirects.isEmpty());
47 ASSERT_TRUE(GURL(redirects[0]) == GURL("about:blank"));
  /external/llvm/utils/lit/lit/
ShCommands.py 2 def __init__(self, args, redirects):
4 self.redirects = list(redirects)
7 return 'Command(%r, %r)' % (self.args, self.redirects)
13 return cmp((self.args, self.redirects),
14 (other.args, other.redirects))
32 for r in self.redirects:
  /external/chromium/chrome/browser/history/
redirect_uitest.cc 6 // that the correct redirects are reflected in the history database. Errors
8 // the case of redirects. It may also mean problems with the history system.
53 std::vector<GURL> redirects; local
54 ASSERT_TRUE(tab_proxy->GetRedirectsFrom(first_url, &redirects));
56 ASSERT_EQ(1U, redirects.size());
57 EXPECT_EQ(final_url.spec(), redirects[0].spec());
74 std::vector<GURL> redirects; local
75 ASSERT_TRUE(tab_proxy->GetRedirectsFrom(first_url, &redirects));
77 ASSERT_EQ(1U, redirects.size());
78 EXPECT_EQ(final_url.spec(), redirects[0].spec())
124 std::vector<GURL> redirects; local
172 std::vector<GURL> redirects; local
206 std::vector<GURL> redirects; local
275 std::vector<GURL> redirects; local
308 std::vector<GURL> redirects; local
    [all...]
history_notifications.h 36 // A list of redirects leading up to the URL represented by this struct. If
38 // C, then redirects[0]=B and redirects[1]=A. If there are no redirects,
40 history::RedirectList redirects; member in struct:history::URLVisitedDetails
top_sites_cache.h 66 // argument gives the index of the URL into MostVisitedURLs redirects.
74 return e1.first->redirects[e1.second] < e2.first->redirects[e2.second];
81 // sites have a lot of redirects, we instead use the MostVisitedURL* and the
91 // Stores a set of redirects. This is used by GenerateCanonicalURLs.
92 void StoreRedirectChain(const RedirectList& redirects, size_t destination);
103 // Generated from the redirects to and from the most visited pages. See
top_sites_cache.cc 91 StoreRedirectChain(top_sites_[i].redirects, i);
94 void TopSitesCache::StoreRedirectChain(const RedirectList& redirects,
96 // redirects is empty if the user pinned a site and there are not enough top
100 for (size_t i = 0; i < redirects.size(); i++) {
102 if (!IsKnownURL(redirects[i])) {
114 most_visited_url.redirects.push_back(url);
top_sites_database.cc 74 "redirects LONGVARCHAR,"
90 "SELECT url, url_rank, title, thumbnail, redirects, "
108 std::string redirects = statement.ColumnString(4); local
109 SetRedirects(redirects, &url);
128 std::vector<std::string> redirects; local
129 for (size_t i = 0; i < url.redirects.size(); i++)
130 redirects.push_back(url.redirects[i].spec());
131 return JoinString(redirects, ' ');
135 void TopSitesDatabase::SetRedirects(const std::string& redirects,
    [all...]
top_sites_unittest.cc 232 RedirectList redirects; local
233 redirects.push_back(url);
236 redirects, history::SOURCE_BROWSED, false);
241 RedirectList redirects; local
242 redirects.push_back(url);
245 redirects, history::SOURCE_BROWSED, false);
252 const history::RedirectList& redirects,
256 redirects, history::SOURCE_BROWSED, false);
391 mv.redirects.push_back(url);
402 mv.redirects.push_back(redirect_source)
    [all...]
history_backend.cc 91 // Converts from PageUsageData to MostVisitedURL. |redirects| is a
92 // list of redirects for this URL. Empty list means no redirects.
94 const RedirectList& redirects) {
98 if (redirects.empty()) {
99 // Redirects must contain at least the target url.
100 mv.redirects.push_back(mv.url);
102 mv.redirects = redirects;
103 if (mv.redirects[mv.redirects.size() - 1] != mv.url)
822 history::RedirectList* redirects; local
1341 history::RedirectMap* redirects = &request->value.b; local
1392 RedirectList redirects; local
1524 history::RedirectList redirects; local
1585 history::RedirectList redirects; local
1795 history::RedirectList* redirects; local
    [all...]
top_sites_database.h 93 // Encodes redirects into a string.
96 // Decodes redirects from a string and sets them for the url.
97 static void SetRedirects(const std::string& redirects, MostVisitedURL* url);
  /external/chromium/chrome/browser/net/
connect_interceptor.cc 34 // Don't learn from redirects that take path as an argument, but do
35 // learn from short-hand typing entries, such as "cnn.com" redirects to
40 // TODO(jar): It may be ok to learn from all redirects, as the adaptive
41 // system will not respond until several identical redirects have taken
45 // TODO(jar): These definite redirects could be learned much faster.
file_system_url_request_job_factory.cc 25 // redirects back here, by adding a / to the URL.
  /external/apache-http/src/org/apache/http/client/params/
ClientPNames.java 62 * Defines whether redirects should be handled automatically
67 public static final String HANDLE_REDIRECTS = "http.protocol.handle-redirects";
70 * Defines whether relative redirects should be rejected.
78 * Defines the maximum number of redirects to be followed.
79 * The limit on number of redirects is intended to prevent infinite loops.
84 public static final String MAX_REDIRECTS = "http.protocol.max-redirects";
87 * Defines whether circular redirects (redirects to the same location) should be allowed.
88 * The HTTP spec is not sufficiently clear whether circular redirects are permitted,
94 public static final String ALLOW_CIRCULAR_REDIRECTS = "http.protocol.allow-circular-redirects";
    [all...]
  /external/llvm/lib/Support/Unix/
Program.inc 182 const Path **redirects, unsigned memoryLimit,
191 if (redirects) {
196 if (RedirectIO_PS(redirects[0], 0, ErrMsg, FileActions) ||
197 RedirectIO_PS(redirects[1], 1, ErrMsg, FileActions))
199 if (redirects[1] == 0 || redirects[2] == 0 ||
200 *redirects[1] != *redirects[2]) {
202 if (RedirectIO_PS(redirects[2], 2, ErrMsg, FileActions)) return false;
247 if (redirects) {
    [all...]
  /external/chromium/net/url_request/
url_request_redirect_job.h 21 // Constructs a job that redirects to the specified URL.
  /external/iptables/extensions/
libipt_REDIRECT.man 8 chains. It redirects the packet to the machine itself by changing the
  /external/llvm/lib/CompilerDriver/
Action.cpp 76 // Build the command line vector and the redirects array.
77 const sys::Path* redirects[3] = {0,0,0}; local
89 redirects[1] = &stdout_redirect;
98 int ret = sys::Program::ExecuteAndWait(prog, &argv[0], 0, &redirects[0]);
  /external/llvm/lib/Support/
Program.cpp 28 const Path** redirects,
33 if (prg.Execute(path, args, envp, redirects, memoryLimit, ErrMsg))
43 const Path** redirects,
47 prg.Execute(path, args, envp, redirects, memoryLimit, ErrMsg);
  /packages/apps/Gallery/src/com/android/camera/
PickWallpaper.java 21 * This just redirects to the standard pick action.
  /external/chromium/chrome/browser/tabs/
tab_finder.cc 146 } else if (params.redirects.size() > 1 ||
147 params.redirects[0] != details.entry->url()) {
148 tab_contents_to_url_[source] = params.redirects[0];
235 history::RedirectList* redirects) {
236 if (success && !redirects->empty()) {
240 tab_contents_to_url_[tab_contents] = redirects->back();
  /external/apache-http/src/org/apache/http/impl/client/
RedirectLocations.java 39 * A collection of URIs that were used as redirects.
58 * Adds a new URI to the list of redirects.
65 * Removes a URI from the list of redirects.
  /external/chromium/chrome/browser/automation/
automation_tab_helper.h 36 // tracked are client redirects, such as javascript redirects.
37 // TODO(kkania): Handle redirects that are scheduled to occur later, and
  /external/chromium/chrome/common/
thumbnail_score_unittest.cc 38 // Having many redirects should age the thumbnail.
49 // This one has a lot of redirects but a better score. It should still be
  /external/chromium/chrome/browser/chromeos/
gview_request_interceptor.h 31 // redirects the browser to the view URL.
  /external/chromium/chrome/browser/chromeos/login/
issue_response_handler.h 37 // the response to the fetch. This fetch will follow redirects, which is

Completed in 1494 milliseconds

1 2 3 4 5 6 7 8 91011