OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:QueryNodeList
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/chrome/browser/history/
query_parser.cc
72
// QueryNodes are either a collection of subnodes (a
QueryNodeList
)
156
// A
QueryNodeList
has a collection of QueryNodes which are deleted in the end.
157
class
QueryNodeList
: public QueryNode {
161
QueryNodeList
();
162
virtual ~
QueryNodeList
();
188
DISALLOW_COPY_AND_ASSIGN(
QueryNodeList
);
191
QueryNodeList
::
QueryNodeList
() {}
193
QueryNodeList
::~
QueryNodeList
() {
[
all
...]
query_parser.h
14
class
QueryNodeList
;
36
// Return true if this is a QueryNodeWord, false if it's a
QueryNodeList
.
107
bool ParseQueryImpl(const base::string16& query,
QueryNodeList
* root);
/external/chromium/chrome/browser/history/
query_parser.h
17
class
QueryNodeList
;
39
// Return true if this is a word node, false if it's a
QueryNodeList
.
98
// Does the work of parsing a query; creates nodes in
QueryNodeList
as
101
QueryNodeList
* root);
query_parser.cc
64
// QueryNodes are either a collection of subnodes (a
QueryNodeList
)
124
// A
QueryNodeList
has a collection of child QueryNodes
126
class
QueryNodeList
: public QueryNode {
128
virtual ~
QueryNodeList
();
143
//
QueryNodeList
is never used with Matches or HasMatchIn.
161
QueryNodeList
::~
QueryNodeList
() {
167
void
QueryNodeList
::RemoveEmptySubnodes() {
172
QueryNodeList
* list_node = static_cast<
QueryNodeList
*>(children_[i])
[
all
...]
Completed in 59 milliseconds