HomeSort by relevance Sort by last modified time
    Searched full:match_core (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/chrome/browser/autocomplete/
shortcuts_backend_unittest.cc 207 history::ShortcutsDatabase::Shortcut::MatchCore match_core(
211 EXPECT_EQ(cases[i].output_contents_class, match_core.contents_class)
213 EXPECT_EQ(cases[i].output_description_class, match_core.description_class)
215 EXPECT_EQ(cases[i].output_type, match_core.type)
236 history::ShortcutsDatabase::Shortcut::MatchCore match_core = local
240 match_core.destination_url.spec());
241 EXPECT_EQ(match.fill_into_edit, match_core.contents);
242 EXPECT_EQ("0,0", match_core.contents_class);
243 EXPECT_EQ(base::string16(), match_core.description);
244 EXPECT_TRUE(match_core.description_class.empty())
    [all...]
shortcuts_provider.cc 199 match.fill_into_edit = shortcut.match_core.fill_into_edit;
200 match.destination_url = shortcut.match_core.destination_url;
202 match.contents = shortcut.match_core.contents;
204 shortcut.match_core.contents_class);
205 match.description = shortcut.match_core.description;
207 shortcut.match_core.description_class);
209 static_cast<content::PageTransition>(shortcut.match_core.transition);
210 match.type = static_cast<AutocompleteMatch::Type>(shortcut.match_core.type);
211 match.keyword = shortcut.match_core.keyword;
shortcuts_backend.cc 127 if (match.destination_url == it->second.match_core.destination_url) {
197 it->second->second.match_core.destination_url)) != rows.end())
292 (it->second->second.match_core.destination_url == url) :
293 StartsWithASCII(it->second->second.match_core.destination_url.spec(),
  /external/chromium_org/chrome/browser/history/
shortcuts_database.cc 36 s->BindString16(2, shortcut.match_core.fill_into_edit);
37 s->BindString(3, shortcut.match_core.destination_url.spec());
38 s->BindString16(4, shortcut.match_core.contents);
39 s->BindString(5, shortcut.match_core.contents_class);
40 s->BindString16(6, shortcut.match_core.description);
41 s->BindString(7, shortcut.match_core.description_class);
42 s->BindInt(8, shortcut.match_core.transition);
43 s->BindInt(9, shortcut.match_core.type);
44 s->BindString16(10, shortcut.match_core.keyword);
95 const MatchCore& match_core,
    [all...]
shortcuts_database.h 73 const MatchCore& match_core,
82 MatchCore match_core; member in struct:history::ShortcutsDatabase::Shortcut
shortcuts_database_unittest.cc 160 shortcut.match_core.contents = ASCIIToUTF16("gro.todhsals");
167 EXPECT_TRUE(it->second.match_core.contents == shortcut.match_core.contents);

Completed in 62 milliseconds