Searched refs:query_parser (Results 1 – 25 of 31) sorted by relevance
12
/external/chromium_org/components/ |
D | query_parser.gypi | 8 'target_name': 'query_parser', 19 'query_parser/query_parser.cc', 20 'query_parser/query_parser.h', 21 'query_parser/snippet.cc', 22 'query_parser/snippet.h',
|
D | components.gyp | 47 'query_parser.gypi',
|
D | history.gypi | 23 'query_parser',
|
D | bookmarks.gypi | 26 'query_parser',
|
D | components_tests.gyp | 189 'query_parser/query_parser_unittest.cc', 190 'query_parser/snippet_unittest.cc', 408 # Dependencies of query_parser 409 'components.gyp:query_parser',
|
/external/chromium_org/components/history/core/browser/ |
D | url_row.h | 168 const query_parser::Snippet::MatchPositions& title_matches); 175 const query_parser::Snippet& snippet() const { return snippet_; } in snippet() 185 const query_parser::Snippet::MatchPositions& title_match_positions() const { in title_match_positions() 200 query_parser::Snippet snippet_; 201 query_parser::Snippet::MatchPositions title_match_positions_;
|
D | BUILD.gn | 31 "//components/query_parser",
|
D | url_row.cc | 71 const query_parser::Snippet::MatchPositions& title_matches) in URLResult()
|
D | url_database.h | 292 query_parser::QueryParser query_parser_;
|
D | url_database.cc | 359 ScopedVector<query_parser::QueryNode> query_nodes; in GetTextMatches() 367 query_parser::QueryWordVector query_words; in GetTextMatches()
|
/external/chromium_org/components/query_parser/ |
D | BUILD.gn | 5 source_set("query_parser") { 7 "query_parser.cc", 8 "query_parser.h",
|
D | README | 1 query_parser is a components used by both history and bookmarks to avoid having 5 query_parser is not allowed to depend on content/, because it is used by iOS. 6 If dependences on content/ need to be added to query_parser, it will have to be
|
D | query_parser.h | 14 namespace query_parser { 27 typedef std::vector<query_parser::QueryWord> QueryWordVector; 60 typedef std::vector<query_parser::QueryNode*> QueryNodeStarVector;
|
D | snippet.h | 15 namespace query_parser {
|
D | snippet_unittest.cc | 14 namespace query_parser { namespace
|
D | query_parser_unittest.cc | 11 namespace query_parser { namespace
|
D | snippet.cc | 18 namespace query_parser { namespace
|
/external/chromium_org/components/bookmarks/browser/ |
D | bookmark_index.cc | 156 query_parser::QueryParser parser; in GetBookmarksMatching() 157 ScopedVector<query_parser::QueryNode> query_nodes; in GetBookmarksMatching() 202 query_parser::QueryParser* parser, in AddMatchToResults() 203 const query_parser::QueryNodeStarVector& query_nodes, in AddMatchToResults() 210 query_parser::QueryWordVector title_words, url_words; in AddMatchToResults() 218 query_parser::Snippet::MatchPositions title_matches, url_matches; in AddMatchToResults() 226 query_parser::QueryParser::SortAndCoalesceMatchPositions(&title_matches); in AddMatchToResults() 227 query_parser::QueryParser::SortAndCoalesceMatchPositions(&url_matches); in AddMatchToResults() 256 if (!query_parser::QueryParser::IsWordLongEnoughForPrefixSearch(term)) { in GetBookmarksMatchingTerm() 336 query_parser::QueryParser parser; in ExtractQueryWords()
|
D | bookmark_index.h | 66 query_parser::QueryParser* parser, 67 const query_parser::QueryNodeStarVector& query_nodes,
|
D | BUILD.gn | 46 "//components/query_parser",
|
/external/chromium_org/chrome/browser/autocomplete/ |
D | bookmark_provider.cc | 43 for (query_parser::Snippet::MatchPositions::iterator it = in CorrectTitleAndMatchPositions() 46 (*it) = query_parser::Snippet::MatchPosition( in CorrectTitleAndMatchPositions() 148 void operator()(const query_parser::Snippet::MatchPosition& match) { in operator ()() 316 const query_parser::Snippet::MatchPositions& positions, in ClassificationsFromMatch() 328 for (query_parser::Snippet::MatchPositions::const_iterator i = in ClassificationsFromMatch()
|
D | bookmark_provider.h | 69 const query_parser::Snippet::MatchPositions& positions,
|
/external/chromium_org/components/history/ |
D | DEPS | 4 "+components/query_parser",
|
/external/chromium_org/components/bookmarks/ |
D | DEPS | 5 "+components/query_parser",
|
/external/chromium_org/chrome/browser/ |
D | DEPS | 57 "+components/query_parser",
|
12