Home
last modified time | relevance | path

Searched refs:QueryRef (Results 1 – 6 of 6) sorted by relevance

/external/llvm-project/clang-tools-extra/clang-query/
DQueryParser.h27 static QueryRef parse(StringRef Line, const QuerySession &QS);
45 QueryRef parseSetBool(bool QuerySession::*Var);
46 QueryRef
48 template <typename QueryType> QueryRef parseSetOutputKind();
49 QueryRef completeMatcherExpression();
51 QueryRef endQuery(QueryRef Q);
57 QueryRef doParse();
DQueryParser.cpp93 QueryRef QueryParser::parseSetBool(bool QuerySession::*Var) { in parseSetBool()
105 template <typename QueryType> QueryRef QueryParser::parseSetOutputKind() { in parseSetOutputKind()
131 QueryRef QueryParser::parseSetTraversalKind( in parseSetTraversalKind()
147 QueryRef QueryParser::endQuery(QueryRef Q) { in endQuery()
194 QueryRef makeInvalidQueryFromDiagnostics(const Diagnostics &Diag) { in makeInvalidQueryFromDiagnostics()
203 QueryRef QueryParser::completeMatcherExpression() { in completeMatcherExpression()
209 return QueryRef(); in completeMatcherExpression()
212 QueryRef QueryParser::doParse() { in doParse()
299 QueryRef Q; in doParse()
331 QueryRef Q; in doParse()
[all …]
DQuery.h52 typedef llvm::IntrusiveRefCntPtr<Query> QueryRef; typedef
/external/llvm-project/clang-tools-extra/unittests/clang-query/
DQueryParserTest.cpp21 QueryRef parse(StringRef Code) { return QueryParser::parse(Code, QS); } in parse()
27 QueryRef Q = parse(""); in TEST_F()
35 QueryRef Q = parse("foo"); in TEST_F()
41 QueryRef Q = parse("help"); in TEST_F()
50 QueryRef Q = parse("quit"); in TEST_F()
62 QueryRef Q = parse("set"); in TEST_F()
128 QueryRef Q = parse("match decl()"); in TEST_F()
138 QueryRef Q = parse("let foo decl()"); in TEST_F()
176 QueryRef Q = parse("# let foo decl()"); in TEST_F()
262 QueryRef Q = parse(R"matcher( in TEST_F()
/external/mdnsresponder/mDNSWindows/mdnsNSP/
DmdnsNSP.c53 typedef struct Query * QueryRef; typedef
57 QueryRef next;
150 DEBUG_LOCAL OSStatus QueryCreate( const WSAQUERYSETW *inQuerySet, DWORD inQuerySetFlags, QueryRef *…
151 DEBUG_LOCAL OSStatus QueryRetain( QueryRef inRef );
152 DEBUG_LOCAL OSStatus QueryRelease( QueryRef inRef );
184 QueryRef inRef,
192 QueryRef inRef,
197 DEBUG_LOCAL size_t QueryCopyQuerySetSize( QueryRef inRef, const WSAQUERYSETW *inQuerySet, DWORD inQ…
236 DEBUG_LOCAL QueryRef gQueryList = NULL;
498 QueryRef obj; in NSPLookupServiceBegin()
[all …]
/external/llvm-project/clang-tools-extra/clang-query/tool/
DClangQuery.cpp79 QueryRef Q = QueryParser::parse(FileContentRef, QS); in runCommandsInFile()
133 QueryRef Q = QueryParser::parse(Command, QS); in main()
152 QueryRef Q = QueryParser::parse(*Line, QS); in main()