| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Frontend/ |
| H A D | CompilerInvocation.h | 50 class PreprocessorOptions; variable 87 std::shared_ptr<PreprocessorOptions> PreprocessorOpts; 117 std::shared_ptr<PreprocessorOptions> getPreprocessorOptsPtr() { in getPreprocessorOptsPtr() 121 PreprocessorOptions &getPreprocessorOpts() { return *PreprocessorOpts; } in getPreprocessorOpts() 123 const PreprocessorOptions &getPreprocessorOpts() const { in getPreprocessorOpts()
|
| H A D | Utils.h | 54 class PreprocessorOptions; variable 65 void InitializePreprocessor(Preprocessor &PP, const PreprocessorOptions &PPOpts,
|
| H A D | ASTUnit.h | 78 class PreprocessorOptions; variable 120 std::shared_ptr<PreprocessorOptions> PPOpts; 471 const PreprocessorOptions &getPreprocessorOpts() const { in getPreprocessorOpts()
|
| H A D | CompilerInstance.h | 305 PreprocessorOptions &getPreprocessorOpts() { in getPreprocessorOpts() 308 const PreprocessorOptions &getPreprocessorOpts() const { in getPreprocessorOpts()
|
| H A D | PrecompiledPreamble.h | 244 PreprocessorOptions &PreprocessorOpts,
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/CodeGen/ |
| H A D | ModuleBuilder.h | 33 class PreprocessorOptions; variable 98 const PreprocessorOptions &PreprocessorOpts,
|
| H A D | CodeGenABITypes.h | 54 class PreprocessorOptions; variable
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/ARCMigrate/ |
| H A D | FileRemapper.h | 28 class PreprocessorOptions; variable 58 void applyMappings(PreprocessorOptions &PPOpts) const;
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Lex/ |
| H A D | PreprocessorOptions.h | 64 class PreprocessorOptions { 217 PreprocessorOptions() : PrecompiledPreambleBytes(0, false) {} in PreprocessorOptions() function
|
| H A D | Preprocessor.h | 80 class PreprocessorOptions; variable 134 std::shared_ptr<PreprocessorOptions> PPOpts; 887 Preprocessor(std::shared_ptr<PreprocessorOptions> PPOpts, 918 PreprocessorOptions &getPreprocessorOpts() const { return *PPOpts; } in getPreprocessorOpts()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | ModuleBuilder.cpp | 36 const PreprocessorOptions &PreprocessorOpts; // Only used for debug info. 78 const PreprocessorOptions &PPO, const CodeGenOptions &CGO, in CodeGeneratorImpl() 342 const PreprocessorOptions &PreprocessorOpts, const CodeGenOptions &CGO, in CreateLLVMCodeGen()
|
| H A D | CodeGenModule.h | 306 const PreprocessorOptions &PreprocessorOpts; // Only used for debug info. 583 const PreprocessorOptions &ppopts, 706 const PreprocessorOptions &getPreprocessorOpts() in getPreprocessorOpts()
|
| H A D | ObjectFilePCHContainerOperations.cpp | 49 const PreprocessorOptions &PreprocessorOpts;
|
| H A D | CodeGenAction.cpp | 135 const PreprocessorOptions &PPOpts, in BackendConsumer() 160 const PreprocessorOptions &PPOpts, in BackendConsumer()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Serialization/ |
| H A D | ASTReader.h | 96 class PreprocessorOptions; variable 184 virtual bool ReadPreprocessorOptions(const PreprocessorOptions &PPOpts, in ReadPreprocessorOptions() 259 bool ReadPreprocessorOptions(const PreprocessorOptions &PPOpts, 290 bool ReadPreprocessorOptions(const PreprocessorOptions &PPOpts, bool Complain, 311 bool ReadPreprocessorOptions(const PreprocessorOptions &PPOpts, bool Complain, 1722 const PreprocessorOptions &PPOpts,
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | CompilerInstance.cpp | 227 const PreprocessorOptions &PPOpts = CI.getPreprocessorOpts(); in collectIncludePCH() 392 const PreprocessorOptions &InitOpts) { in InitializeFileRemapping() 446 const PreprocessorOptions &PPOpts = getPreprocessorOpts(); in createPreprocessor() 1070 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts(); 1099 PreprocessorOptions &ImportingPPOpts 1103 std::make_shared<PreprocessorOptions::FailedModulesSet>(); 1518 const PreprocessorOptions &PPOpts = getPreprocessorOpts(); in createASTReader()
|
| H A D | PrecompiledPreamble.cpp | 322 PreprocessorOptions &PreprocessorOpts = in Build() 505 PreprocessorOptions &PreprocessorOpts = in CanReuse() 814 const PCHStorage &Storage, PreprocessorOptions &PreprocessorOpts, in setupPreambleStorage()
|
| H A D | ASTUnit.cpp | 264 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts(); in ~ASTUnit() 521 PreprocessorOptions &PPOpts; 530 HeaderSearchOptions &HSOpts, PreprocessorOptions &PPOpts, in ASTInfoCollector() 557 bool ReadPreprocessorOptions(const PreprocessorOptions &PPOpts, bool Complain, in ReadPreprocessorOptions() 793 AST->PPOpts = std::make_shared<PreprocessorOptions>(); in LoadFromASTFile() 1745 PreprocessorOptions &PPOpts = CI->getPreprocessorOpts(); in LoadFromCommandLine() 1825 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts(); in Reparse() 2139 PreprocessorOptions &PreprocessorOpts = CCInvocation->getPreprocessorOpts(); in CodeComplete()
|
| H A D | InitPreprocessor.cpp | 639 const PreprocessorOptions &PPOpts, in InitializePredefinedMacros() 1194 Preprocessor &PP, const PreprocessorOptions &InitOpts, in InitializePreprocessor()
|
| H A D | CompilerInvocation.cpp | 116 PreprocessorOpts(new PreprocessorOptions()), in CompilerInvocationRefBase() 125 PreprocessorOpts(new PreprocessorOptions(X.getPreprocessorOpts())), in CompilerInvocationRefBase() 4096 static void GeneratePreprocessorArgs(PreprocessorOptions &Opts, in GeneratePreprocessorArgs() 4102 PreprocessorOptions *PreprocessorOpts = &Opts; in GeneratePreprocessorArgs() 4164 static bool ParsePreprocessorArgs(PreprocessorOptions &Opts, ArgList &Args, in ParsePreprocessorArgs() 4170 PreprocessorOptions *PreprocessorOpts = &Opts; in ParsePreprocessorArgs() 4503 const PreprocessorOptions &ppOpts = getPreprocessorOpts(); in getModuleHash()
|
| H A D | FrontendActions.cpp | 641 bool ReadPreprocessorOptions(const PreprocessorOptions &PPOpts, in ReadPreprocessorOptions()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Frontend/Rewrite/ |
| H A D | FrontendActions.cpp | 153 PreprocessorOptions &PPOpts = CI.getPreprocessorOpts(); in BeginInvocation()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/ARCMigrate/ |
| H A D | FileRemapper.cpp | 209 void FileRemapper::applyMappings(PreprocessorOptions &PPOpts) const { in applyMappings()
|
| H A D | ARCMT.cpp | 178 PreprocessorOptions &PPOpts = CInvok->getPreprocessorOpts(); in createInvocationForMigration()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReader.cpp | 208 const PreprocessorOptions &PPOpts, bool Complain, in ReadPreprocessorOptions() 589 collectMacroDefinitions(const PreprocessorOptions &PPOpts, in collectMacroDefinitions() 631 static bool checkPreprocessorOptions(const PreprocessorOptions &PPOpts, in checkPreprocessorOptions() 756 const PreprocessorOptions &ExistingPPOpts = PP.getPreprocessorOpts(); in ReadPreprocessorOptions() 766 const PreprocessorOptions &PPOpts, in ReadPreprocessorOptions() 787 const PreprocessorOptions &PPOpts) { in checkHeaderSearchOptions() 5131 const PreprocessorOptions &ExistingPPOpts; 5138 const PreprocessorOptions &ExistingPPOpts, in SimplePCHValidator() 5165 bool ReadPreprocessorOptions(const PreprocessorOptions &PPOpts, in ReadPreprocessorOptions() 5445 const PreprocessorOptions &PPOpts, in isAcceptableASTFile() [all …]
|