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

1 2

  /external/llvm/lib/Support/
Program.cpp 29 const Path** redirects,
34 if (prg.Execute(path, args, envp, redirects, memoryLimit, ErrMsg))
44 const Path** redirects,
48 prg.Execute(path, args, envp, redirects, memoryLimit, ErrMsg);
  /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/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
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);
history.cc 305 const history::RedirectList& redirects,
308 AddPage(url, Time::Now(), id_scope, page_id, referrer, transition, redirects,
318 const history::RedirectList& redirects,
323 redirects, transition, visit_source,
338 // Add link & all redirects to visited link list.
343 if (!add_page_args.redirects.empty()) {
346 add_page_args.redirects[add_page_args.redirects.size() - 1]);
348 // We need the !redirects.empty() condition above since size_t is unsigned
350 for (size_t i = 0; i < add_page_args.redirects.size() - 1; i++
    [all...]
history_backend.h 160 // redirects leading to each of these URLs. |days_back| is the
175 // entire chain. If there are no redirects for the most recent visit of the
180 history::RedirectList* redirects);
182 // Similar to above function except computes a chain of redirects to the
183 // given URL. Stores the most recent list of redirects ending at |url| in the
185 // then calling this function with url=C would fill redirects with {B, A}.
187 history::RedirectList* redirects);
379 // Returns a redirect chain in |redirects| for the VisitID
383 VisitID cur_visit, history::RedirectList* redirects);
388 VisitID cur_visit, history::RedirectList* redirects);
    [all...]
history_backend_unittest.cc 81 history::RedirectList redirects; local
83 redirects.push_back(GURL(sequence[i]));
90 redirects.back(), Time::Now(), scope, page_id, GURL(),
91 redirects, PageTransition::LINK, history::SOURCE_BROWSED, true));
104 history::RedirectList redirects; local
106 redirects.push_back(url1);
108 redirects.push_back(url2);
111 redirects, PageTransition::CLIENT_REDIRECT,
841 history::RedirectList redirects; local
842 redirects.push_back(url2)
    [all...]
history_unittest.cc 231 history::RedirectList* redirects) {
234 saved_redirects_.swap(*redirects);
498 // redirects are tracked by the RenderView prior to updating history,
597 // TODO(brettw) this should also test redirects, which get the title of the
740 // Redirects
741 history::RedirectList redirects; local
742 redirects.push_back(url3);
743 redirects.push_back(url4);
745 // Visit url4 using redirects.
747 PageTransition::TYPED, redirects,
    [all...]
  /external/llvm/include/llvm/Support/
Program.h 64 const sys::Path** redirects = 0, ///< An optional array of pointers to
125 const sys::Path** redirects = 0,
135 const sys::Path** redirects = 0,
  /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:
TestRunner.py 82 # stdout, stderr for N equal to 0, 1, or 2 respectively. Redirects to or
85 redirects = [(0,), (1,), (2,)]
86 for r in j.redirects:
88 redirects[2] = [r[1], 'w', None]
90 redirects[2] = [r[1], 'a', None]
92 redirects[2] = redirects[int(r[1])]
94 redirects[1] = redirects[2] = [r[1], 'w', None]
96 redirects[1] = [r[1], 'w', None
    [all...]
  /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();
tab_finder.h 97 history::RedirectList* redirects);
  /external/llvm/tools/bugpoint/
ToolRunner.cpp 64 const sys::Path* redirects[3]; local
65 redirects[0] = &StdInFile;
66 redirects[1] = &StdOutFile;
67 redirects[2] = &StdErrFile;
79 sys::Program::ExecuteAndWait(ProgramPath, Args, 0, redirects,
96 const sys::Path* redirects[3]; local
97 redirects[0] = &StdInFile;
98 redirects[1] = &StdOutFile;
99 redirects[2] = &StdErrFile;
112 0, redirects, NumSeconds, MemoryLimit)
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
NetworkManager.js 294 var previousRedirects = originalResource.redirects || [];
296 delete originalResource.redirects;
300 newResource.redirects = previousRedirects.concat(originalResource);
  /external/smack/src/org/jivesoftware/smackx/workgroup/settings/
OfflineSettings.java 78 public boolean redirects() { method in class:OfflineSettings
  /external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/
script.js 8 // TODO(mbelshe): If the page redirects, the location changed and the
  /external/chromium/chrome/browser/autocomplete/
history_url_provider.cc 209 // higher-quality matches, and remove lower-quality redirects. So we ask
260 // Remove redirects and trim list to size. We want to provide up to
720 history::RedirectList redirects; local
721 backend->GetMostRecentRedirectsFrom(url, &redirects);
722 if (!redirects.empty()) {
723 // Remove all but the first occurrence of any of these redirects in the
727 // For example, when A redirects to B and our matches are [A, X, B],
728 // we'll get B as the redirects from, and we want to remove the second
729 // item of that pair, removing B. If A redirects to B and our matches are
731 redirects.push_back(url)
    [all...]

Completed in 309 milliseconds

1 2