/external/llvm-project/clang/lib/Frontend/ |
D | PrecompiledPreamble.cpp | 322 PreprocessorOptions &PreprocessorOpts = in Build() local 351 PreprocessorOpts.PrecompiledPreambleBytes.first = 0; in Build() 352 PreprocessorOpts.PrecompiledPreambleBytes.second = false; in Build() 354 PreprocessorOpts.GeneratePreamble = true; in Build() 410 if (PreprocessorOpts.RetainRemappedFileBuffers) { in Build() 412 PreprocessorOpts.addRemappedFile(MainFilePath, PreambleInputBuffer.get()); in Build() 416 PreprocessorOpts.addRemappedFile(MainFilePath, in Build() 513 PreprocessorOptions &PreprocessorOpts = in CanReuse() local 533 for (const auto &R : PreprocessorOpts.RemappedFiles) { in CanReuse() 551 for (const auto &RB : PreprocessorOpts.RemappedFileBuffers) { in CanReuse() [all …]
|
D | ASTUnit.cpp | 162 const auto &PreprocessorOpts = Invocation.getPreprocessorOpts(); in getBufferForFileHandlingRemapping() local 174 for (const auto &RF : PreprocessorOpts.RemappedFiles) { in getBufferForFileHandlingRemapping() 190 for (const auto &RB : PreprocessorOpts.RemappedFileBuffers) { in getBufferForFileHandlingRemapping() 2157 PreprocessorOptions &PreprocessorOpts = CCInvocation->getPreprocessorOpts(); in CodeComplete() local 2227 PreprocessorOpts.clearRemappedFiles(); in CodeComplete() 2228 PreprocessorOpts.RetainRemappedFileBuffers = true; in CodeComplete() 2230 PreprocessorOpts.addRemappedFile(RemappedFile.first, RemappedFile.second); in CodeComplete() 2282 PreprocessorOpts.PrecompiledPreambleBytes.first = 0; in CodeComplete() 2283 PreprocessorOpts.PrecompiledPreambleBytes.second = false; in CodeComplete() 2288 PreprocessorOpts.DetailedRecord = false; in CodeComplete()
|
D | CompilerInvocation.cpp | 112 PreprocessorOpts(new PreprocessorOptions()) {} in CompilerInvocationBase() 119 PreprocessorOpts(new PreprocessorOptions(X.getPreprocessorOpts())) {} in CompilerInvocationBase()
|
/external/llvm-project/clang/include/clang/Frontend/ |
D | CompilerInvocation.h | 79 std::shared_ptr<PreprocessorOptions> PreprocessorOpts; variable 105 return PreprocessorOpts; in getPreprocessorOptsPtr() 108 PreprocessorOptions &getPreprocessorOpts() { return *PreprocessorOpts; } in getPreprocessorOpts() 111 return *PreprocessorOpts; in getPreprocessorOpts()
|
D | PrecompiledPreamble.h | 243 PreprocessorOptions &PreprocessorOpts,
|
/external/clang/lib/CodeGen/ |
D | ModuleBuilder.cpp | 37 const PreprocessorOptions &PreprocessorOpts; // Only used for debug info. member in __anon0b8128540111::CodeGeneratorImpl 76 PreprocessorOpts(PPO), CodeGenOpts(CGO), HandlingTopLevelDecls(0), in CodeGeneratorImpl() 124 PreprocessorOpts, CodeGenOpts, in Initialize() 315 const PreprocessorOptions &PreprocessorOpts, const CodeGenOptions &CGO, in CreateLLVMCodeGen() argument 318 PreprocessorOpts, CGO, C, CoverageInfo); in CreateLLVMCodeGen()
|
D | ObjectFilePCHContainerOperations.cpp | 51 const PreprocessorOptions &PreprocessorOpts; member in __anon109341a00111::PCHContainerGenerator 147 PreprocessorOpts(CI.getPreprocessorOpts()), in PCHContainerGenerator() 169 *Ctx, HeaderSearchOpts, PreprocessorOpts, CodeGenOpts, *M, Diags)); in Initialize()
|
D | CodeGenModule.h | 268 const PreprocessorOptions &PreprocessorOpts; // Only used for debug info. variable 605 const { return PreprocessorOpts; } in getPreprocessorOpts()
|
D | CodeGenModule.cpp | 88 PreprocessorOpts(PPO), CodeGenOpts(CGO), TheModule(M), Diags(diags), in CodeGenModule()
|
/external/clang/include/clang/Frontend/ |
D | CompilerInvocation.h | 70 IntrusiveRefCntPtr<PreprocessorOptions> PreprocessorOpts; variable 92 PreprocessorOptions &getPreprocessorOpts() { return *PreprocessorOpts; } in getPreprocessorOpts() 94 return *PreprocessorOpts; in getPreprocessorOpts()
|
/external/llvm-project/clang/lib/CodeGen/ |
D | ModuleBuilder.cpp | 36 const PreprocessorOptions &PreprocessorOpts; // Only used for debug info. member in __anon35bbc6420111::CodeGeneratorImpl 82 PreprocessorOpts(PPO), CodeGenOpts(CGO), HandlingTopLevelDecls(0), in CodeGeneratorImpl() 146 PreprocessorOpts, CodeGenOpts, in Initialize() 342 const PreprocessorOptions &PreprocessorOpts, const CodeGenOptions &CGO, in CreateLLVMCodeGen() argument 345 PreprocessorOpts, CGO, C, CoverageInfo); in CreateLLVMCodeGen()
|
D | ObjectFilePCHContainerOperations.cpp | 49 const PreprocessorOptions &PreprocessorOpts; member in __anon506bdcce0111::PCHContainerGenerator 144 PreprocessorOpts(CI.getPreprocessorOpts()), in PCHContainerGenerator() 171 *Ctx, HeaderSearchOpts, PreprocessorOpts, CodeGenOpts, *M, Diags)); in Initialize()
|
D | CodeGenModule.h | 303 const PreprocessorOptions &PreprocessorOpts; // Only used for debug info. variable 684 const { return PreprocessorOpts; } in getPreprocessorOpts()
|
D | CodeGenModule.cpp | 103 PreprocessorOpts(PPO), CodeGenOpts(CGO), TheModule(M), Diags(diags), in CodeGenModule()
|
/external/clang/lib/Frontend/ |
D | ASTUnit.cpp | 1110 PreprocessorOptions &PreprocessorOpts = Clang->getPreprocessorOpts(); in Parse() local 1112 PreprocessorOpts.addRemappedFile(OriginalSourceFile, in Parse() 1114 PreprocessorOpts.PrecompiledPreambleBytes.first = Preamble.size(); in Parse() 1115 PreprocessorOpts.PrecompiledPreambleBytes.second in Parse() 1117 PreprocessorOpts.ImplicitPCHInclude = getPreambleFile(this); in Parse() 1118 PreprocessorOpts.DisablePCHValidation = true; in Parse() 1190 PreprocessorOptions &PreprocessorOpts = Invocation.getPreprocessorOpts(); in ComputePreamble() local 1201 for (const auto &RF : PreprocessorOpts.RemappedFiles) { in ComputePreamble() 1216 for (const auto &RB : PreprocessorOpts.RemappedFileBuffers) { in ComputePreamble() 1348 PreprocessorOptions &PreprocessorOpts in getMainBufferWithPrecompiledPreamble() local [all …]
|
D | CompilerInvocation.cpp | 59 PreprocessorOpts(new PreprocessorOptions()) {} in CompilerInvocationBase() 67 PreprocessorOpts(new PreprocessorOptions(X.getPreprocessorOpts())) {} in CompilerInvocationBase()
|
/external/clang/include/clang/CodeGen/ |
D | ModuleBuilder.h | 90 const PreprocessorOptions &PreprocessorOpts,
|
/external/llvm-project/clang/include/clang/CodeGen/ |
D | ModuleBuilder.h | 98 const PreprocessorOptions &PreprocessorOpts,
|