Searched refs:match_core (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/chrome/browser/history/
H A Dshortcuts_database.cc36 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,
92 Shortcut( const std::string& id, const base::string16& text, const MatchCore& match_core, const base::Time& last_access_time, int number_of_hits) argument
[all...]
H A Dshortcuts_database.h73 const MatchCore& match_core,
82 MatchCore match_core; member in struct:history::ShortcutsDatabase::Shortcut
H A Dshortcuts_database_unittest.cc159 shortcut.match_core.contents = ASCIIToUTF16("gro.todhsals");
166 EXPECT_TRUE(it->second.match_core.contents == shortcut.match_core.contents);
/external/chromium_org/chrome/browser/autocomplete/
H A Dshortcuts_backend_unittest.cc207 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
[all...]
H A Dshortcuts_provider.cc194 match.fill_into_edit = shortcut.match_core.fill_into_edit;
195 match.destination_url = shortcut.match_core.destination_url;
197 match.contents = shortcut.match_core.contents;
199 shortcut.match_core.contents_class);
200 match.description = shortcut.match_core.description;
202 shortcut.match_core.description_class);
203 match.transition = ui::PageTransitionFromInt(shortcut.match_core.transition);
204 match.type = static_cast<AutocompleteMatch::Type>(shortcut.match_core.type);
205 match.keyword = shortcut.match_core.keyword;
H A Dshortcuts_backend.cc130 if (match.destination_url == it->second.match_core.destination_url) {
202 it->second->second.match_core.destination_url)) != rows.end())
297 (it->second->second.match_core.destination_url == url) :
298 StartsWithASCII(it->second->second.match_core.destination_url.spec(),

Completed in 617 milliseconds