reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/tools/extra/clang-query/QueryParser.cpp
   89 QueryRef QueryParser::parseSetBool(bool QuerySession::*Var) {
  101 template <typename QueryType> QueryRef QueryParser::parseSetOutputKind() {
  127 QueryRef QueryParser::endQuery(QueryRef Q) {
  127 QueryRef QueryParser::endQuery(QueryRef Q) {
  157 QueryRef makeInvalidQueryFromDiagnostics(const Diagnostics &Diag) {
  166 QueryRef QueryParser::completeMatcherExpression() {
  175 QueryRef QueryParser::doParse() {
  250     QueryRef Q;
  279     QueryRef Q;
  306 QueryRef QueryParser::parse(StringRef Line, const QuerySession &QS) {
tools/clang/tools/extra/clang-query/QueryParser.h
   27   static QueryRef parse(StringRef Line, const QuerySession &QS);
   45   QueryRef parseSetBool(bool QuerySession::*Var);
   46   template <typename QueryType> QueryRef parseSetOutputKind();
   47   QueryRef completeMatcherExpression();
   49   QueryRef endQuery(QueryRef Q);
   49   QueryRef endQuery(QueryRef Q);
   55   QueryRef doParse();
tools/clang/tools/extra/clang-query/tool/ClangQuery.cpp
   76     QueryRef Q = QueryParser::parse(Line, QS);
  120       QueryRef Q = QueryParser::parse(*I, QS);
  139       QueryRef Q = QueryParser::parse(*Line, QS);
tools/clang/tools/extra/unittests/clang-query/QueryParserTest.cpp
   21   QueryRef parse(StringRef Code) { return QueryParser::parse(Code, QS); }
   27   QueryRef Q = parse("");
   35   QueryRef Q = parse("foo");
   41   QueryRef Q = parse("help");
   50   QueryRef Q = parse("quit");
   62   QueryRef Q = parse("set");
  116   QueryRef Q = parse("match decl()");
  126   QueryRef Q = parse("let foo decl()");
  164   QueryRef Q = parse("# let foo decl()");