HomeSort by relevance Sort by last modified time
    Searched refs:PPOpts (Results 1 - 9 of 9) sorted by null

  /external/clang/include/clang/ARCMigrate/
FileRemapper.h 58 void applyMappings(PreprocessorOptions &PPOpts) const;
60 void transferMappingsAndClear(PreprocessorOptions &PPOpts);
  /external/clang/lib/Rewrite/
FrontendActions.cpp 143 PreprocessorOptions &PPOpts = CI.getPreprocessorOpts();
144 PPOpts.RemappedFiles.insert(PPOpts.RemappedFiles.end(),
146 PPOpts.RemappedFilesKeepOriginalName = false;
  /external/clang/lib/ARCMigrate/
FileRemapper.cpp 206 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) {
224 PPOpts.addRemappedFile(I->first->getName(), FE->getName());
227 PPOpts.addRemappedFile(I->first->getName(), mem);
232 PPOpts.RetainRemappedFileBuffers = false;
ARCMT.cpp 401 PreprocessorOptions PPOpts;
402 remapper.applyMappings(PPOpts);
403 remap = PPOpts.RemappedFiles;
430 PreprocessorOptions PPOpts;
431 remapper.applyMappings(PPOpts);
433 RI = PPOpts.remapped_file_begin(), RE = PPOpts.remapped_file_end();
  /external/clang/include/clang/Frontend/
Utils.h 56 const PreprocessorOptions &PPOpts,
  /external/clang/lib/Frontend/
CompilerInstance.cpp 236 const PreprocessorOptions &PPOpts = getPreprocessorOpts();
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();
768 PPOpts.resetNonModularOptions();
775 PPOpts.ModuleBuildPath.push_back(Module->getTopLevelModuleName());
814 PPOpts.RetainRemappedFileBuffers = true
    [all...]
ASTUnit.cpp 244 PreprocessorOptions &PPOpts = Invocation->getPreprocessorOpts();
246 FB = PPOpts.remapped_file_buffer_begin(),
247 FBEnd = PPOpts.remapped_file_buffer_end();
    [all...]
  /external/clang/tools/arcmt-test/
arcmt-test.cpp 138 PreprocessorOptions PPOpts;
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/tools/libclang/
Indexing.cpp 376 PreprocessorOptions &PPOpts = CInvok->getPreprocessorOpts();
377 PPOpts.DetailedRecord = false;
378 PPOpts.AllowPCHWithCompilerErrors = true;
387 PPOpts.DetailedRecord = true;

Completed in 225 milliseconds