HomeSort by relevance Sort by last modified time
    Searched defs:QueryNode (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/components/query_parser/
query_parser.h 29 // QueryNode is used by QueryParser to represent the elements that constitute a
30 // query. While QueryNode is exposed by way of ParseQuery, it really isn't meant
32 class QueryNode {
34 virtual ~QueryNode() {}
60 typedef std::vector<query_parser::QueryNode*> QueryNodeStarVector;
  /external/chromium_org/base/test/
trace_event_analyzer.cc 172 // QueryNode
174 QueryNode::QueryNode(const Query& query) : query_(query) {
177 QueryNode::~QueryNode() {
615 left_(new QueryNode(left)),
616 right_(new QueryNode(right)),
625 left_(new QueryNode(left)),
trace_event_analyzer.h 89 class QueryNode;
534 scoped_refptr<QueryNode> left_;
535 scoped_refptr<QueryNode> right_;
543 // QueryNode allows Query to store a ref-counted query tree.
544 class QueryNode : public base::RefCounted<QueryNode> {
546 explicit QueryNode(const Query& query);
550 friend class base::RefCounted<QueryNode>;
551 ~QueryNode();

Completed in 105 milliseconds