/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/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/chromium/chrome/browser/history/ |
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
|
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_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...] |
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...] |
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_types.h | 550 RedirectList redirects; member in struct:history::MostVisitedURL 584 history::RedirectList redirects; member in class:history::HistoryAddPageArgs
|
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...] |
/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...] |
/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/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/emma/lib/ |
emma.jar | |