Home | History | Annotate | Download | only in history

Lines Matching refs:query

5 // The query parser is used to parse queries entered into the history
29 // constitute a query. While QueryNode is exposed by way of ParseQuery, it
37 virtual int AppendToSQLiteQuery(string16* query) const = 0;
71 // Parse a query into a SQLite query. The resulting query is placed in
73 int ParseQuery(const string16& query,
76 // Parses the query words in query, returning the nodes that constitute the
77 // valid words in the query. This is intended for later usage with
80 void ParseQuery(const string16& query,
83 // Parses a query returning the words that make up the query. Any words in
84 // quotes are put in |words| without the quotes. For example, the query text
87 void ExtractQueryWords(const string16& query,
90 // Returns true if the string text matches the query nodes created by a call
91 // to ParseQuery. If the query does match each of the matching positions in
98 // Does the work of parsing a query; creates nodes in QueryNodeList as
100 bool ParseQueryImpl(const string16& query,