Home
last modified time | relevance | path

Searched refs:CCTUInfo (Results 1 – 17 of 17) sorted by relevance

/external/clang/include/clang/Sema/
DCodeCompleteConsumer.h552 CodeCompletionTUInfo &CCTUInfo;
565 CodeCompletionTUInfo &CCTUInfo)
566 : Allocator(Allocator), CCTUInfo(CCTUInfo),
571 CodeCompletionTUInfo &CCTUInfo,
573 : Allocator(Allocator), CCTUInfo(CCTUInfo),
581 CodeCompletionTUInfo &getCodeCompletionTUInfo() const { return CCTUInfo; }
772 CodeCompletionTUInfo &CCTUInfo,
778 CodeCompletionTUInfo &CCTUInfo,
880 CodeCompletionTUInfo &CCTUInfo,
950 CodeCompletionTUInfo CCTUInfo;
[all …]
DSema.h9318 CodeCompletionTUInfo &CCTUInfo,
/external/llvm-project/clang/include/clang/Sema/
DCodeCompleteConsumer.h677 CodeCompletionTUInfo &CCTUInfo; variable
690 CodeCompletionTUInfo &CCTUInfo) in CodeCompletionBuilder() argument
691 : Allocator(Allocator), CCTUInfo(CCTUInfo) {} in CodeCompletionBuilder()
694 CodeCompletionTUInfo &CCTUInfo, in CodeCompletionBuilder() argument
696 : Allocator(Allocator), CCTUInfo(CCTUInfo), Priority(Priority), in CodeCompletionBuilder()
703 CodeCompletionTUInfo &getCodeCompletionTUInfo() const { return CCTUInfo; } in getCodeCompletionTUInfo()
942 CodeCompletionTUInfo &CCTUInfo,
948 CodeCompletionTUInfo &CCTUInfo,
956 CodeCompletionTUInfo &CCTUInfo);
1067 CodeCompletionTUInfo &CCTUInfo,
[all …]
DSema.h12162 CodeCompletionTUInfo &CCTUInfo,
/external/llvm-project/clang-tools-extra/clangd/unittests/
DCodeCompletionStringsTests.cpp23 CCTUInfo(Allocator), Builder(*Allocator, CCTUInfo) {} in CompletionStringTest()
35 CodeCompletionTUInfo CCTUInfo; member in clang::clangd::__anon05fe2cbf0111::CompletionStringTest
139 CodeCompletionBuilder Builder(*Allocator, CCTUInfo); in TEST_F()
/external/llvm-project/clang/unittests/Sema/
DCodeCompleteTest.cpp43 CCTUInfo(std::make_shared<GlobalCodeCompletionAllocator>()) {}
56 return CCTUInfo.getAllocator(); in getAllocator()
59 CodeCompletionTUInfo &getCodeCompletionTUInfo() override { return CCTUInfo; } in getCodeCompletionTUInfo()
72 CodeCompletionTUInfo CCTUInfo; member in __anon14938e2f0111::VisitedContextFinder
/external/llvm-project/clang/include/clang/Frontend/
DASTUnit.h317 if (!CCTUInfo) in getCodeCompletionTUInfo()
318 CCTUInfo = std::make_unique<CodeCompletionTUInfo>( in getCodeCompletionTUInfo()
320 return *CCTUInfo; in getCodeCompletionTUInfo()
327 std::unique_ptr<CodeCompletionTUInfo> CCTUInfo; variable
/external/clang/include/clang/Frontend/
DASTUnit.h372 if (!CCTUInfo) in getCodeCompletionTUInfo()
373 CCTUInfo.reset(new CodeCompletionTUInfo( in getCodeCompletionTUInfo()
375 return *CCTUInfo; in getCodeCompletionTUInfo()
383 std::unique_ptr<CodeCompletionTUInfo> CCTUInfo; variable
/external/clang/lib/Sema/
DCodeCompleteConsumer.cpp449 CCTUInfo, in ProcessCodeCompleteResults()
468 CCTUInfo, in ProcessCodeCompleteResults()
518 getAllocator(), CCTUInfo, in ProcessOverloadCandidates()
DSemaCodeComplete.cpp128 CodeCompletionTUInfo &CCTUInfo; member in __anonaebf90eb0111::ResultBuilder
172 CodeCompletionTUInfo &CCTUInfo, in ResultBuilder() argument
175 : SemaRef(SemaRef), Allocator(Allocator), CCTUInfo(CCTUInfo), in ResultBuilder()
263 CodeCompletionTUInfo &getCodeCompletionTUInfo() const { return CCTUInfo; } in getCodeCompletionTUInfo()
2581 CodeCompletionTUInfo &CCTUInfo, in CreateCodeCompletionString() argument
2584 CCTUInfo, IncludeBriefComments); in CreateCodeCompletionString()
2598 CodeCompletionTUInfo &CCTUInfo, in CreateCodeCompletionString() argument
2600 CodeCompletionBuilder Result(Allocator, CCTUInfo, Priority, Availability); in CreateCodeCompletionString()
2956 CodeCompletionTUInfo &CCTUInfo, in CreateSignatureString() argument
2961 CodeCompletionBuilder Result(Allocator,CCTUInfo, 1, CXAvailability_Available); in CreateSignatureString()
[all …]
/external/llvm-project/clang/lib/Sema/
DCodeCompleteConsumer.cpp566 SemaRef, Context, getAllocator(), CCTUInfo, in ProcessCodeCompleteResults()
581 SemaRef, Context, getAllocator(), CCTUInfo, in ProcessCodeCompleteResults()
653 CurrentArg, SemaRef, getAllocator(), CCTUInfo, in ProcessOverloadCandidates()
DSemaCodeComplete.cpp158 CodeCompletionTUInfo &CCTUInfo; member in __anon2f121f790111::ResultBuilder
209 CodeCompletionTUInfo &CCTUInfo, in ResultBuilder() argument
212 : SemaRef(SemaRef), Allocator(Allocator), CCTUInfo(CCTUInfo), in ResultBuilder()
295 CodeCompletionTUInfo &getCodeCompletionTUInfo() const { return CCTUInfo; } in getCodeCompletionTUInfo()
3229 CodeCompletionAllocator &Allocator, CodeCompletionTUInfo &CCTUInfo, in CreateCodeCompletionString() argument
3232 CCTUInfo, IncludeBriefComments); in CreateCodeCompletionString()
3237 CodeCompletionTUInfo &CCTUInfo) { in CreateCodeCompletionStringForMacro() argument
3239 CodeCompletionBuilder Result(Allocator, CCTUInfo, Priority, Availability); in CreateCodeCompletionStringForMacro()
3289 CodeCompletionAllocator &Allocator, CodeCompletionTUInfo &CCTUInfo, in CreateCodeCompletionString() argument
3292 return CreateCodeCompletionStringForMacro(PP, Allocator, CCTUInfo); in CreateCodeCompletionString()
[all …]
/external/clang/tools/libclang/
DCIndexCodeCompletion.cpp526 CodeCompletionTUInfo CCTUInfo; member in __anon4832e0d10211::CaptureCompletionResults
534 AllocatedResults(Results), CCTUInfo(Results.CodeCompletionAllocator), in CaptureCompletionResults()
636 CodeCompletionTUInfo &getCodeCompletionTUInfo() override { return CCTUInfo;} in getCodeCompletionTUInfo()
/external/llvm-project/clang-tools-extra/clangd/
DCodeComplete.cpp718 CCTUInfo(CCAllocator), ResultsCallback(std::move(ResultsCallback)) { in CompletionRecorder()
787 CodeCompletionTUInfo &getCodeCompletionTUInfo() override { return CCTUInfo; } in getCodeCompletionTUInfo()
813 *CCSema, CCContext, *CCAllocator, CCTUInfo, in codeCompletionString()
820 CodeCompletionTUInfo CCTUInfo; member
838 CCTUInfo(Allocator), Index(Index) {} in SignatureHelpCollector()
874 CurrentArg, S, *Allocator, CCTUInfo, true); in ProcessOverloadCandidates()
946 CodeCompletionTUInfo &getCodeCompletionTUInfo() override { return CCTUInfo; } in getCodeCompletionTUInfo()
1048 CodeCompletionTUInfo CCTUInfo; member in clang::clangd::__anon02ed8fff0111::SignatureHelpCollector
/external/llvm-project/clang/tools/libclang/
DCIndexCodeCompletion.cpp563 CodeCompletionTUInfo CCTUInfo; member in __anon3cfb78df0211::CaptureCompletionResults
571 CCTUInfo(Results.CodeCompletionAllocator), TU(TranslationUnit) {} in CaptureCompletionResults()
677 CodeCompletionTUInfo &getCodeCompletionTUInfo() override { return CCTUInfo;} in getCodeCompletionTUInfo()
/external/clang/lib/Frontend/
DASTUnit.cpp351 CodeCompletionTUInfo CCTUInfo(CachedCompletionAllocator); in CacheCodeCompletionResults() local
353 CCTUInfo, Results); in CacheCodeCompletionResults()
365 *TheSema, CCContext, *CachedCompletionAllocator, CCTUInfo, in CacheCodeCompletionResults()
428 *TheSema, CCContext, *CachedCompletionAllocator, CCTUInfo, in CacheCodeCompletionResults()
449 *TheSema, CCContext, *CachedCompletionAllocator, CCTUInfo, in CacheCodeCompletionResults()
2076 CCTUInfo.reset(); in Reparse()
/external/llvm-project/clang/lib/Frontend/
DASTUnit.cpp378 CodeCompletionTUInfo CCTUInfo(CachedCompletionAllocator); in CacheCodeCompletionResults() local
380 CCTUInfo, Results); in CacheCodeCompletionResults()
392 *TheSema, CCContext, *CachedCompletionAllocator, CCTUInfo, in CacheCodeCompletionResults()
455 *TheSema, CCContext, *CachedCompletionAllocator, CCTUInfo, in CacheCodeCompletionResults()
476 *TheSema, CCContext, *CachedCompletionAllocator, CCTUInfo, in CacheCodeCompletionResults()
1879 CCTUInfo.reset(); in Reparse()