Home
last modified time | relevance | path

Searched refs:ImplicitPCHInclude (Results 1 – 19 of 19) sorted by relevance

/llvm-project-15.0.7/clang-tools-extra/clangd/unittests/
H A DCompilerTests.cpp32 .ImplicitPCHInclude, in TEST()
39 .ImplicitPCHInclude, in TEST()
48 .ImplicitPCHInclude, in TEST()
/llvm-project-15.0.7/clang/unittests/Frontend/
H A DUtilsTest.cpp58 EXPECT_EQ(CI->getPreprocessorOpts().ImplicitPCHInclude, ""); in TEST()
64 EXPECT_EQ(CI->getPreprocessorOpts().ImplicitPCHInclude, "foo.h.pch"); in TEST()
H A DCompilerInvocationTest.cpp959 ASSERT_EQ(Invocation.getPreprocessorOpts().ImplicitPCHInclude, "a.pch"); in TEST_F()
/llvm-project-15.0.7/clang/include/clang/Lex/
H A DPreprocessorOptions.h97 std::string ImplicitPCHInclude; variable
253 ImplicitPCHInclude.clear(); in resetNonModularOptions()
/llvm-project-15.0.7/clang/lib/Frontend/
H A DFrontendAction.cpp757 if (!CI.getPreprocessorOpts().ImplicitPCHInclude.empty()) { in BeginSourceFile()
760 StringRef PCHInclude = PPOpts.ImplicitPCHInclude; in BeginSourceFile()
776 PPOpts.ImplicitPCHInclude = std::string(Dir->path()); in BeginSourceFile()
946 !CI.getPreprocessorOpts().ImplicitPCHInclude.empty()) { in BeginSourceFile()
964 if (!CI.getPreprocessorOpts().ImplicitPCHInclude.empty()) { in BeginSourceFile()
966 CI.getPreprocessorOpts().ImplicitPCHInclude, in BeginSourceFile()
H A DChainedIncludesSource.cpp131 CInvok->getPreprocessorOpts().ImplicitPCHInclude.clear(); in createChainedIncludesSource()
H A DPrecompiledPreamble.cpp780 PreprocessorOpts.ImplicitPCHInclude = PCHPath.str(); in setupPreambleStorage()
803 PreprocessorOpts.ImplicitPCHInclude = std::string(PCHPath); in setupPreambleStorage()
H A DInitPreprocessor.cpp1372 if (!InitOpts.ImplicitPCHInclude.empty()) in InitializePreprocessor()
1374 InitOpts.ImplicitPCHInclude); in InitializePreprocessor()
H A DCompilerInstance.cpp230 if (PPOpts.ImplicitPCHInclude.empty()) in collectIncludePCH()
233 StringRef PCHInclude = PPOpts.ImplicitPCHInclude; in collectIncludePCH()
/llvm-project-15.0.7/clang/lib/Tooling/DependencyScanning/
H A DDependencyScanningWorker.cpp179 if (!ScanInstance.getPreprocessorOpts().ImplicitPCHInclude.empty()) in runInvocation()
181 ScanInstance.getPreprocessorOpts().ImplicitPCHInclude, ScanInstance, in runInvocation()
H A DModuleDepCollector.cpp226 if (!MDC.ScanInstance.getPreprocessorOpts().ImplicitPCHInclude.empty()) in EndOfMainFile()
228 MDC.ScanInstance.getPreprocessorOpts().ImplicitPCHInclude); in EndOfMainFile()
/llvm-project-15.0.7/clang/lib/ARCMigrate/
H A DARCMT.cpp177 if (!PPOpts.ImplicitPCHInclude.empty()) { in createInvocationForMigration()
186 PPOpts.ImplicitPCHInclude, FileMgr, PCHContainerRdr, *Diags); in createInvocationForMigration()
189 PPOpts.ImplicitPCHInclude.clear(); in createInvocationForMigration()
/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DCompiler.cpp64 CI.getPreprocessorOpts().ImplicitPCHInclude.clear(); in disableUnsupportedOptions()
/llvm-project-15.0.7/clang-tools-extra/clangd/index/
H A DStdLib.cpp213 !CI->getPreprocessorOpts().ImplicitPCHInclude.empty()) { in indexStandardLibrary()
/llvm-project-15.0.7/clang/tools/libclang/
H A DIndexing.cpp352 if (!PPOpts.ImplicitPCHInclude.empty()) { in CreateASTConsumer()
353 auto File = CI.getFileManager().getFile(PPOpts.ImplicitPCHInclude); in CreateASTConsumer()
/llvm-project-15.0.7/clang/lib/Lex/
H A DPreprocessor.cpp155 !this->PPOpts->ImplicitPCHInclude.empty()) in Preprocessor()
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTReader.cpp749 if (!ExistingPPOpts.ImplicitPCHInclude.empty() && in checkPreprocessorOptions()
759 if (File == ExistingPPOpts.ImplicitPCHInclude) in checkPreprocessorOptions()
5950 PPOpts.ImplicitPCHInclude = ReadString(Record, Idx); in ParsePreprocessorOptions()
H A DASTWriter.cpp1448 AddString(PPOpts.ImplicitPCHInclude, Record); in WriteControlBlock()
/llvm-project-15.0.7/clang/include/clang/Driver/
H A DOptions.td3243 MarshallingInfoString<PreprocessorOpts<"ImplicitPCHInclude">>;