Home
last modified time | relevance | path

Searched refs:PreprocessorOpts (Results 1 – 18 of 18) sorted by relevance

/external/llvm-project/clang/lib/Frontend/
DPrecompiledPreamble.cpp322 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 …]
DASTUnit.cpp162 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()
DCompilerInvocation.cpp112 PreprocessorOpts(new PreprocessorOptions()) {} in CompilerInvocationBase()
119 PreprocessorOpts(new PreprocessorOptions(X.getPreprocessorOpts())) {} in CompilerInvocationBase()
/external/llvm-project/clang/include/clang/Frontend/
DCompilerInvocation.h79 std::shared_ptr<PreprocessorOptions> PreprocessorOpts; variable
105 return PreprocessorOpts; in getPreprocessorOptsPtr()
108 PreprocessorOptions &getPreprocessorOpts() { return *PreprocessorOpts; } in getPreprocessorOpts()
111 return *PreprocessorOpts; in getPreprocessorOpts()
DPrecompiledPreamble.h243 PreprocessorOptions &PreprocessorOpts,
/external/clang/lib/CodeGen/
DModuleBuilder.cpp37 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()
DObjectFilePCHContainerOperations.cpp51 const PreprocessorOptions &PreprocessorOpts; member in __anon109341a00111::PCHContainerGenerator
147 PreprocessorOpts(CI.getPreprocessorOpts()), in PCHContainerGenerator()
169 *Ctx, HeaderSearchOpts, PreprocessorOpts, CodeGenOpts, *M, Diags)); in Initialize()
DCodeGenModule.h268 const PreprocessorOptions &PreprocessorOpts; // Only used for debug info. variable
605 const { return PreprocessorOpts; } in getPreprocessorOpts()
DCodeGenModule.cpp88 PreprocessorOpts(PPO), CodeGenOpts(CGO), TheModule(M), Diags(diags), in CodeGenModule()
/external/clang/include/clang/Frontend/
DCompilerInvocation.h70 IntrusiveRefCntPtr<PreprocessorOptions> PreprocessorOpts; variable
92 PreprocessorOptions &getPreprocessorOpts() { return *PreprocessorOpts; } in getPreprocessorOpts()
94 return *PreprocessorOpts; in getPreprocessorOpts()
/external/llvm-project/clang/lib/CodeGen/
DModuleBuilder.cpp36 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()
DObjectFilePCHContainerOperations.cpp49 const PreprocessorOptions &PreprocessorOpts; member in __anon506bdcce0111::PCHContainerGenerator
144 PreprocessorOpts(CI.getPreprocessorOpts()), in PCHContainerGenerator()
171 *Ctx, HeaderSearchOpts, PreprocessorOpts, CodeGenOpts, *M, Diags)); in Initialize()
DCodeGenModule.h303 const PreprocessorOptions &PreprocessorOpts; // Only used for debug info. variable
684 const { return PreprocessorOpts; } in getPreprocessorOpts()
DCodeGenModule.cpp103 PreprocessorOpts(PPO), CodeGenOpts(CGO), TheModule(M), Diags(diags), in CodeGenModule()
/external/clang/lib/Frontend/
DASTUnit.cpp1110 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 …]
DCompilerInvocation.cpp59 PreprocessorOpts(new PreprocessorOptions()) {} in CompilerInvocationBase()
67 PreprocessorOpts(new PreprocessorOptions(X.getPreprocessorOpts())) {} in CompilerInvocationBase()
/external/clang/include/clang/CodeGen/
DModuleBuilder.h90 const PreprocessorOptions &PreprocessorOpts,
/external/llvm-project/clang/include/clang/CodeGen/
DModuleBuilder.h98 const PreprocessorOptions &PreprocessorOpts,