Home | History | Annotate | Download | only in history

Lines Matching full:words

36   // the number of words in this node.
47 // Returns true if this node matches at least one of the words in words. If
50 virtual bool HasMatchIn(const std::vector<QueryWord>& words,
53 // Appends the words that make up this node in |words|.
54 virtual void AppendWords(std::vector<string16>* words) const = 0;
72 // sqlite_query and the number of words is returned.
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
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
85 // "foo bar" results in two entries being added to words, one for foo and one
88 std::vector<string16>* words);
103 // Extracts the words from text, placing each word into words.
105 std::vector<QueryWord>* words);