Home
last modified time | relevance | path

Searched refs:PPOpts (Results 1 – 5 of 5) sorted by relevance

/external/clang/lib/ARCMigrate/
DFileRemapper.cpp201 PreprocessorOptions &PPOpts = CI.getPreprocessorOpts(); in applyMappings() local
205 PPOpts.addRemappedFile(I->first->getName(), FE->getName()); in applyMappings()
208 PPOpts.addRemappedFile(I->first->getName(), mem); in applyMappings()
212 PPOpts.RetainRemappedFileBuffers = true; in applyMappings()
216 PreprocessorOptions &PPOpts = CI.getPreprocessorOpts(); in transferMappingsAndClear() local
220 PPOpts.addRemappedFile(I->first->getName(), FE->getName()); in transferMappingsAndClear()
223 PPOpts.addRemappedFile(I->first->getName(), mem); in transferMappingsAndClear()
228 PPOpts.RetainRemappedFileBuffers = false; in transferMappingsAndClear()
/external/clang/lib/Frontend/
DCompilerInstance.cpp204 const PreprocessorOptions &PPOpts, in createPreprocessor() argument
213 if (!PPOpts.TokenCache.empty()) in createPreprocessor()
214 PTHMgr = PTHManager::Create(PPOpts.TokenCache, Diags); in createPreprocessor()
230 if (PPOpts.DetailedRecord) in createPreprocessor()
232 PPOpts.DetailedRecordIncludesNestedMacroExpansions); in createPreprocessor()
234 InitializePreprocessor(*PP, PPOpts, HSOpts, FEOpts); in createPreprocessor()
DASTUnit.cpp127 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts(); in ~ASTUnit() local
129 FB = PPOpts.remapped_file_buffer_begin(), in ~ASTUnit()
130 FBEnd = PPOpts.remapped_file_buffer_end(); in ~ASTUnit()
1868 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts(); in Reparse() local
1869 PPOpts.DisableStatCache = true; in Reparse()
1871 R = PPOpts.remapped_file_buffer_begin(), in Reparse()
1872 REnd = PPOpts.remapped_file_buffer_end(); in Reparse()
/external/clang/tools/arcmt-test/
Darcmt-test.cpp140 PreprocessorOptions &PPOpts = CI.getPreprocessorOpts(); in printResult() local
142 for (unsigned i = 0, e = PPOpts.RemappedFileBuffers.size(); i != e; ++i) { in printResult()
143 const llvm::MemoryBuffer *mem = PPOpts.RemappedFileBuffers[i].second; in printResult()
/external/clang/include/clang/Frontend/
DUtils.h63 const PreprocessorOptions &PPOpts,