Home
last modified time | relevance | path

Searched refs:RemappedFiles (Results 1 – 7 of 7) sorted by relevance

/external/clang/include/clang/Lex/
DPreprocessorOptions.h100 std::vector<std::pair<std::string, std::string> > RemappedFiles; variable
148 return RemappedFiles.begin(); in remapped_file_begin()
151 return RemappedFiles.begin(); in remapped_file_begin()
154 return RemappedFiles.end(); in remapped_file_end()
157 return RemappedFiles.end(); in remapped_file_end()
194 RemappedFiles.push_back(std::make_pair(From, To)); in addRemappedFile()
198 return RemappedFiles.erase(Remapped); in eraseRemappedFile()
211 RemappedFiles.clear(); in clearRemappedFiles()
/external/clang/include/clang/Frontend/
DASTUnit.h673 RemappedFile *RemappedFiles = 0,
776 RemappedFile *RemappedFiles = 0,
794 bool Reparse(RemappedFile *RemappedFiles = 0,
818 RemappedFile *RemappedFiles, unsigned NumRemappedFiles,
/external/clang/lib/Frontend/
DASTUnit.cpp682 RemappedFile *RemappedFiles, in LoadFromASTFile() argument
715 FilenameOrMemBuf fileOrBuf = RemappedFiles[I].second; in LoadFromASTFile()
720 = AST->getFileManager().getVirtualFile(RemappedFiles[I].first, in LoadFromASTFile()
725 << RemappedFiles[I].first; in LoadFromASTFile()
739 << RemappedFiles[I].first << fname; in LoadFromASTFile()
745 = AST->getFileManager().getVirtualFile(RemappedFiles[I].first, in LoadFromASTFile()
750 << RemappedFiles[I].first; in LoadFromASTFile()
1974 RemappedFile *RemappedFiles, in LoadFromCommandLine() argument
2010 FilenameOrMemBuf fileOrBuf = RemappedFiles[I].second; in LoadFromCommandLine()
2013 CI->getPreprocessorOpts().addRemappedFile(RemappedFiles[I].first, memBuf); in LoadFromCommandLine()
[all …]
/external/clang/lib/Rewrite/Frontend/
DFrontendActions.cpp142 PPOpts.RemappedFiles.insert(PPOpts.RemappedFiles.end(), in BeginInvocation()
/external/clang/tools/libclang/
DCIndexCodeCompletion.cpp694 SmallVector<ASTUnit::RemappedFile, 4> RemappedFiles; in clang_codeCompleteAt_Impl() local
699 RemappedFiles.push_back(std::make_pair(unsaved_files[I].Filename, in clang_codeCompleteAt_Impl()
720 RemappedFiles.data(), RemappedFiles.size(), in clang_codeCompleteAt_Impl()
DCIndex.cpp2691 RemappedFiles(new std::vector<ASTUnit::RemappedFile>()); in clang_parseTranslationUnit_Impl() local
2695 std::vector<ASTUnit::RemappedFile> > RemappedCleanup(RemappedFiles.get()); in clang_parseTranslationUnit_Impl()
2701 RemappedFiles->push_back(std::make_pair(unsaved_files[I].Filename, in clang_parseTranslationUnit_Impl()
2755 RemappedFiles->size() ? &(*RemappedFiles)[0]:0, in clang_parseTranslationUnit_Impl()
2756 RemappedFiles->size(), in clang_parseTranslationUnit_Impl()
2949 RemappedFiles(new std::vector<ASTUnit::RemappedFile>()); in clang_reparseTranslationUnit_Impl() local
2953 std::vector<ASTUnit::RemappedFile> > RemappedCleanup(RemappedFiles.get()); in clang_reparseTranslationUnit_Impl()
2959 RemappedFiles->push_back(std::make_pair(unsaved_files[I].Filename, in clang_reparseTranslationUnit_Impl()
2963 if (!CXXUnit->Reparse(RemappedFiles->size() ? &(*RemappedFiles)[0] : 0, in clang_reparseTranslationUnit_Impl()
2964 RemappedFiles->size())) in clang_reparseTranslationUnit_Impl()
/external/clang/lib/ARCMigrate/
DARCMT.cpp433 remap = PPOpts.RemappedFiles; in getFileRemappings()