Home | History | Annotate | Download | only in marisa

Lines Matching defs:Query

10 class Query {
12 Query(const char *ptr, std::size_t length) : ptr_(ptr), length_(length) {}
13 Query(const Query &query) : ptr_(query.ptr_), length_(query.length_) {}
33 Query &operator=(const Query &query);
39 CQuery(const CQuery &query) : str_(query.str_) {}