Searched defs:PPOpts (Results 1 - 7 of 7) sorted by relevance

/external/clang/lib/Rewrite/
H A DFrontendActions.cpp143 PreprocessorOptions &PPOpts = CI.getPreprocessorOpts(); local
144 PPOpts.RemappedFiles.insert(PPOpts.RemappedFiles.end(),
146 PPOpts.RemappedFilesKeepOriginalName = false;
/external/clang/lib/ARCMigrate/
H A DFileRemapper.cpp206 void FileRemapper::applyMappings(PreprocessorOptions &PPOpts) const {
210 PPOpts.addRemappedFile(I->first->getName(), FE->getName());
213 PPOpts.addRemappedFile(I->first->getName(), mem);
217 PPOpts.RetainRemappedFileBuffers = true;
220 void FileRemapper::transferMappingsAndClear(PreprocessorOptions &PPOpts) { argument
224 PPOpts.addRemappedFile(I->first->getName(), FE->getName());
227 PPOpts.addRemappedFile(I->first->getName(), mem);
232 PPOpts.RetainRemappedFileBuffers = false;
H A DARCMT.cpp401 PreprocessorOptions PPOpts;
402 remapper.applyMappings(PPOpts);
403 remap = PPOpts.RemappedFiles;
430 PreprocessorOptions PPOpts; local
431 remapper.applyMappings(PPOpts);
433 RI = PPOpts.remapped_file_begin(), RE = PPOpts.remapped_file_end();
/external/clang/tools/arcmt-test/
H A Darcmt-test.cpp138 PreprocessorOptions PPOpts; local
139 remapper.applyMappings(PPOpts);
141 for (unsigned i = 0, e = PPOpts.RemappedFileBuffers.size(); i != e; ++i) {
142 const llvm::MemoryBuffer *mem = PPOpts.RemappedFileBuffers[i].second;
/external/clang/lib/Frontend/
H A DCompilerInstance.cpp236 const PreprocessorOptions &PPOpts = getPreprocessorOpts(); local
240 if (!PPOpts.TokenCache.empty())
241 PTHMgr = PTHManager::Create(PPOpts.TokenCache, getDiagnostics());
260 if (PPOpts.DetailedRecord)
261 PP->createPreprocessingRecord(PPOpts.DetailedRecordConditionalDirectives);
263 InitializePreprocessor(*PP, PPOpts, getHeaderSearchOpts(), getFrontendOpts());
763 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts(); local
768 PPOpts.resetNonModularOptions();
775 PPOpts.ModuleBuildPath.push_back(Module->getTopLevelModuleName());
814 PPOpts
950 const PreprocessorOptions &PPOpts = getPreprocessorOpts(); local
[all...]
H A DASTUnit.cpp244 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts(); local
246 FB = PPOpts.remapped_file_buffer_begin(),
247 FBEnd = PPOpts.remapped_file_buffer_end();
1924 PreprocessorOptions &PPOpts = CI->getPreprocessorOpts(); local
1925 PPOpts.RemappedFilesKeepOriginalName = RemappedFilesKeepOriginalName;
1926 PPOpts.AllowPCHWithCompilerErrors = AllowPCHWithCompilerErrors;
1977 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts(); local
1978 PPOpts.DisableStatCache = true;
1980 R = PPOpts.remapped_file_buffer_begin(),
1981 REnd = PPOpts
[all...]
/external/clang/tools/libclang/
H A DIndexing.cpp376 PreprocessorOptions &PPOpts = CInvok->getPreprocessorOpts(); local
377 PPOpts.DetailedRecord = false;
378 PPOpts.AllowPCHWithCompilerErrors = true;
387 PPOpts.DetailedRecord = true;

Completed in 224 milliseconds