Searched defs:Query (Results 1 - 6 of 6) sorted by relevance

/pkg/src/modules/server/
H A Dquery_parser.py52 class Query(qp.Query): class in inherits:qp.Query
H A Ddepot.py85 from pkg.server.query_parser import Query, ParseError, BooleanQueryException namespace
551 yield misc.force_bytes(Query.VALIDATION_STRING[1])
554 if return_type == Query.RETURN_ACTIONS:
562 Query.RETURN_PACKAGES:
/pkg/src/modules/client/
H A Dquery_parser.py59 class Query(qp.Query): class in inherits:qp.Query
81 if self.return_type == qp.Query.RETURN_ACTIONS:
89 self.return_type = qp.Query.RETURN_PACKAGES
H A Dapi.py4680 """local_search takes a list of Query objects and performs
4694 query_p.Query.RETURN_PACKAGES:
4744 if return_type == Query.RETURN_ACTIONS:
4750 elif return_type == Query.RETURN_PACKAGES:
4759 """This function takes a list of Query objects, and optionally
4793 query_p.Query.RETURN_PACKAGES:
4795 new_qs.append(query_p.Query(str(query),
4941 return v == query_p.Query.RETURN_ACTIONS
5013 return s == Query.VALIDATION_STRING[v]
5604 class Query(query_ class in inherits:query_p.Query
[all...]
/pkg/src/tests/cli/
H A Dt_pkgrepo.py32 from pkg.server.query_parser import Query namespace
937 query = Query("tree", False, Query.RETURN_PACKAGES, None, None)
975 query = Query("tree", False, Query.RETURN_PACKAGES, None, None)
1146 query = Query("tree", False, Query.RETURN_PACKAGES, None, None)
1178 query = Query("truck", False, Query.RETURN_PACKAGES, None, None)
1199 query = Query("truc
[all...]
/pkg/src/modules/
H A Dquery_parser.py433 class Query(object): class in inherits:object
434 """General Query object. It defines various constants and provides for
435 marshalling a Query into and out of a string format."""
468 assert self.return_type == Query.RETURN_PACKAGES or \
469 self.return_type == Query.RETURN_ACTIONS
483 return a Query object from that string."""
517 if return_type != Query.RETURN_PACKAGES and \
518 return_type != Query.RETURN_ACTIONS:
520 return Query(text, case_sensitive, return_type,
570 if self.lc.return_type == Query
[all...]

Completed in 43 milliseconds