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

1 2

  /external/chromium/chrome/browser/autocomplete/
history_contents_provider_unittest.cc 117 EXPECT_EQ(test_entries[0].url, m[0].destination_url.spec());
119 EXPECT_EQ(test_entries[1].url, m[1].destination_url.spec());
131 EXPECT_EQ(test_entries[0].url, m[0].destination_url.spec());
133 EXPECT_EQ(test_entries[1].url, m[1].destination_url.spec());
177 EXPECT_EQ(bookmark_url, m1[0].destination_url);
187 EXPECT_EQ(bookmark_url, m2[0].destination_url);
195 if (bookmark_url == m3[0].destination_url) {
196 EXPECT_EQ("http://www.google.com/3", m3[1].destination_url.spec());
198 EXPECT_EQ(bookmark_url, m3[1].destination_url);
199 EXPECT_EQ("http://www.google.com/3", m3[0].destination_url.spec())
    [all...]
autocomplete_match.cc 99 return (elem1.destination_url != elem2.destination_url) ?
100 (elem1.destination_url < elem2.destination_url) :
107 return elem1.destination_url == elem2.destination_url;
search_provider_unittest.cc 202 if (i->destination_url == url)
249 EXPECT_TRUE(!term1_match.destination_url.is_empty());
257 EXPECT_TRUE(!what_you_typed_match.destination_url.is_empty());
313 ASSERT_TRUE(!match.destination_url.is_empty());
377 EXPECT_TRUE(!instant_match.destination_url.is_empty());
387 EXPECT_TRUE(!what_you_typed_match.destination_url.is_empty());
411 EXPECT_FALSE(instant_match.destination_url.is_empty());
424 EXPECT_FALSE(instant_match.destination_url.is_empty());
454 EXPECT_FALSE(instant_match.destination_url.is_empty());
autocomplete_result_unittest.cc 59 match->destination_url = GURL("http://" + url_id);
86 EXPECT_EQ(expected_match.destination_url.spec(),
87 match.destination_url.spec()) << i;
history_url_provider.cc 270 GURL(params->matches.front().destination_url)));
311 match.destination_url = url;
329 // This relies on match.destination_url being the non-prefix-trimmed version
332 const Prefix* best_prefix = BestPrefix(match.destination_url, input.text());
333 // Because of the vagaries of GURL, it's possible for match.destination_url
374 if (!db->GetRowForURL(match->destination_url, &info)) {
377 GURL destination_url(URLFixerUpper::FixupURL(UTF16ToUTF8(input.text()),
379 if (!db->GetRowForURL(destination_url, NULL))
384 info = history::URLRow(match->destination_url);
507 (search_base != what_you_typed_match.destination_url);
    [all...]
history_provider.cc 34 GURL selected_url(match.destination_url);
44 if (i->destination_url == selected_url && i->type == match.type) {
autocomplete_match.h 158 GURL destination_url; member in struct:AutocompleteMatch
builtin_provider.cc 40 match.destination_url = GURL(*i);
autocomplete_popup_model.cc 78 manually_selected_match_.destination_url = match.destination_url;
95 GURL current_destination(result.match_at(selected_line_).destination_url);
history_url_provider_unittest.cc 202 EXPECT_EQ(expected_urls[i], matches_[i].destination_url.spec());
471 EXPECT_EQ(GURL("http://pandora.com/"), matches_[0].destination_url);
479 EXPECT_EQ(GURL("http://pandora.com/"), matches_[0].destination_url);
autocomplete_edit.cc 217 if (current_match.destination_url == PermanentURL()) {
250 *url = match.destination_url;
416 paste_and_go_url_ = match.destination_url;
438 if (!match.destination_url.is_valid())
441 if ((match.transition == PageTransition::TYPED) && (match.destination_url ==
476 view_->OpenURL(match.destination_url, disposition, match.transition,
607 if (match.destination_url != original_url_) {
    [all...]
extension_app_provider_unittest.cc 85 EXPECT_EQ(keyword_cases[i].output[j], matches[j].destination_url);
autocomplete.h 483 return destination_url.is_empty() && !provider_affinity &&
488 GURL destination_url; member in struct:AutocompleteResult::Selection
491 // |destination_url|, we'll use the best match from this provider.
495 // can't be tracked using |destination_url| because its URL changes on every
497 // choosing the new "what you typed" entry and ignoring |destination_url|.
    [all...]
history_quick_provider.cc 146 match.destination_url = info.url();
147 DCHECK(match.destination_url.is_valid());
keyword_provider_unittest.cc 151 &AutocompleteMatch::destination_url);
history_quick_provider_unittest.cc 164 matches_.insert(iter->destination_url.spec());
208 EXPECT_EQ(expected_top_result, ac_matches_[0].destination_url.spec());
autocomplete.cc 536 i->starred = bookmark_model->IsBookmarked(GURL(i->destination_url));
557 destination_url = GURL();
667 (input.canonicalized_url() != default_match_->destination_url))
741 if (i->destination_url == match.destination_url)
    [all...]
keyword_provider.cc 337 match->destination_url = GURL(element->url()->url());
349 match->destination_url = GURL(element->url()->ReplaceSearchTerms(
extension_app_provider.cc 69 match.destination_url = GURL(url);
history_contents_provider.cc 218 match.destination_url = result.url();
autocomplete_edit_view_browsertest.cc     [all...]
autocomplete_unittest.cc 92 match.destination_url = GURL(UTF16ToUTF8(match.fill_into_edit));
  /external/chromium/chrome/browser/ui/views/frame/
browser_root_view.cc 155 if (!match.destination_url.is_valid())
159 *url = match.destination_url;
  /external/chromium/chrome/browser/instant/
instant_controller.cc 148 const GURL& url = match.destination_url;
177 if (ShouldUpdateNow(template_url_id, match.destination_url)) {
178 UpdateLoader(template_url, match.destination_url, match.transition,
181 ScheduleUpdate(match.destination_url);
636 if (match.destination_url.SchemeIs(chrome::kJavaScriptScheme))
644 if (host_blacklist_ && host_blacklist_->count(match.destination_url.host()))
  /external/chromium/chrome/browser/ui/webui/options/
browser_options_handler.cc 449 entry->SetString("url", match.destination_url.spec());

Completed in 948 milliseconds

1 2