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

1 2 3 4

  /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/lib/Support/
Program.cpp 26 const char **env, const StringRef **Redirects,
33 const StringRef **redirects, unsigned secondsToWait,
37 if (Execute(&Data, Program, args, envp, redirects, memoryLimit, ErrMsg)) {
46 const StringRef **redirects, unsigned memoryLimit,
48 Execute(/*Data*/ 0, Program, args, envp, redirects, memoryLimit, ErrMsg);
  /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...]
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);
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.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_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
  /external/chromium_org/chrome/browser/history/
redirect_browsertest.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.
44 // Schedule a history query for redirects. The response will be sent
62 history::RedirectList* redirects) {
63 for (size_t i = 0; i < redirects->size(); ++i)
64 rv->push_back(redirects->at(i));
82 std::vector<GURL> redirects = GetRedirects(first_url); local
84 ASSERT_EQ(1U, redirects.size());
85 EXPECT_EQ(final_url.spec(), redirects[0].spec());
100 std::vector<GURL> redirects = GetRedirects(first_url) local
150 std::vector<GURL> redirects = GetRedirects(first_url); local
175 std::vector<GURL> redirects = GetRedirects(first_url); local
199 std::vector<GURL> redirects = GetRedirects(first_url); local
250 std::vector<GURL> redirects = GetRedirects(first_url); local
298 std::vector<GURL> redirects = GetRedirects(first_url); local
    [all...]
top_sites_cache.h 55 // argument gives the index of the URL into MostVisitedURLs redirects.
63 return e1.first->redirects[e1.second] < e2.first->redirects[e2.second];
70 // sites have a lot of redirects, we instead use the MostVisitedURL* and the
80 // Stores a set of redirects. This is used by GenerateCanonicalURLs.
81 void StoreRedirectChain(const RedirectList& redirects, size_t destination);
92 // Generated from the redirects to and from the most visited pages. See
top_sites_cache.cc 74 StoreRedirectChain(top_sites_[i].redirects, i);
77 void TopSitesCache::StoreRedirectChain(const RedirectList& redirects,
79 // redirects is empty if the user pinned a site and there are not enough top
83 for (size_t i = 0; i < redirects.size(); i++) {
85 if (!IsKnownURL(redirects[i])) {
97 most_visited_url.redirects.push_back(url);
history_notifications.h 27 // A list of redirects leading up to the URL represented by this struct. If
29 // C, then redirects[0]=B and redirects[1]=A. If there are no redirects,
31 history::RedirectList redirects; member in struct:history::URLVisitedDetails
top_sites_database.cc 90 "redirects LONGVARCHAR,"
118 "SELECT url, url_rank, title, thumbnail, redirects, "
136 std::string redirects = statement.ColumnString(4); local
137 SetRedirects(redirects, &url);
158 std::vector<std::string> redirects; local
159 for (size_t i = 0; i < url.redirects.size(); i++)
160 redirects.push_back(url.redirects[i].spec());
161 return JoinString(redirects, ' ');
165 void TopSitesDatabase::SetRedirects(const std::string& redirects,
    [all...]
top_sites_impl_unittest.cc 247 RedirectList redirects; local
248 redirects.push_back(url);
251 redirects, content::PAGE_TRANSITION_TYPED, history::SOURCE_BROWSED,
257 RedirectList redirects; local
258 redirects.push_back(url);
261 redirects, content::PAGE_TRANSITION_TYPED, history::SOURCE_BROWSED,
269 const history::RedirectList& redirects,
273 redirects, content::PAGE_TRANSITION_TYPED, history::SOURCE_BROWSED,
408 mv.redirects.push_back(url);
419 mv.redirects.push_back(redirect_source)
    [all...]
top_sites_likely_impl_unittest.cc 248 RedirectList redirects; local
249 redirects.push_back(url);
252 redirects, content::PAGE_TRANSITION_TYPED, history::SOURCE_BROWSED,
258 RedirectList redirects; local
259 redirects.push_back(url);
262 redirects, content::PAGE_TRANSITION_TYPED, history::SOURCE_BROWSED,
270 const history::RedirectList& redirects,
274 redirects, content::PAGE_TRANSITION_TYPED, history::SOURCE_BROWSED,
409 mv.redirects.push_back(url);
420 mv.redirects.push_back(redirect_source)
    [all...]
history_backend.cc 108 // Converts from PageUsageData to MostVisitedURL. |redirects| is a
109 // list of redirects for this URL. Empty list means no redirects.
111 const RedirectList& redirects) {
115 if (redirects.empty()) {
116 // Redirects must contain at least the target url.
117 mv.redirects.push_back(mv.url);
119 mv.redirects = redirects;
120 if (mv.redirects[mv.redirects.size() - 1] != mv.url)
462 RedirectList redirects = request.redirects; local
927 history::RedirectList* redirects; local
1460 history::RedirectMap* redirects = &request->value.b; local
1591 RedirectList redirects; local
1714 history::RedirectList redirects; local
1792 history::RedirectList redirects; local
    [all...]
history_tab_helper.cc 67 params.referrer.url, params.redirects, params.transition,
78 if (!add_page_args.redirects.empty())
79 add_page_args.redirects.back() = virtual_url;
  /external/llvm/include/llvm/Support/
Program.h 67 const StringRef **redirects = 0, ///< An optional array of pointers to
92 const StringRef **redirects = 0, unsigned memoryLimit = 0,
  /external/chromium_org/content/public/common/
frame_navigate_params.h 48 // Lists the redirects that occurred on the way to the current page. This
52 std::vector<GURL> redirects; member in struct:content::FrameNavigateParams
  /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 ((self.args, self.redirects) ==
14 (other.args, other.redirects))
32 for r in self.redirects:
TestRunner.py 84 # stdout, stderr for N equal to 0, 1, or 2 respectively. Redirects to or
87 redirects = [(0,), (1,), (2,)]
88 for r in j.redirects:
90 redirects[2] = [r[1], 'w', None]
92 redirects[2] = [r[1], 'a', None]
94 redirects[2] = redirects[int(r[1])]
96 redirects[1] = redirects[2] = [r[1], 'w', None]
98 redirects[1] = [r[1], 'w', None
    [all...]
  /external/llvm/unittests/Support/
ProgramTest.cpp 83 const StringRef *redirects[] = { &nul, &nul, 0 }; local
84 int rc = ExecuteAndWait(my_exe, argv, &envp[0], redirects,
  /external/emma/core/java12/com/vladium/emma/
EMMAProperties.java 159 // (5) system property redirects (report.out.encoding->file.encoding,
192 final Map redirects = new HashMap (); typedefs
193 redirects.put (IReportProperties.PREFIX.concat (IReportProperties.OUT_ENCODING),
195 redirects.put (IReportProperties.PREFIX.concat (IReportProperties.OUT_DIR),
198 SYSTEM_PROPERTY_REDIRECTS = Collections.unmodifiableMap (redirects);
  /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();

Completed in 566 milliseconds

1 2 3 4