Home
last modified time | relevance | path

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

/external/clang/include/clang/Lex/
DPreprocessorOptions.h100 std::vector<std::pair<std::string, std::string>> RemappedFiles; variable
155 RemappedFiles.emplace_back(From, To); in addRemappedFile()
163 RemappedFiles.clear(); in clearRemappedFiles()
/external/clang/include/clang/Frontend/
DASTUnit.h732 bool OnlyLocalDecls = false, ArrayRef<RemappedFile> RemappedFiles = None,
846 ArrayRef<RemappedFile> RemappedFiles = None,
863 ArrayRef<RemappedFile> RemappedFiles = None);
886 ArrayRef<RemappedFile> RemappedFiles, bool IncludeMacros,
/external/clang/lib/Frontend/Rewrite/
DFrontendActions.cpp144 PPOpts.RemappedFiles.insert(PPOpts.RemappedFiles.end(), in BeginInvocation()
/external/clang/lib/Frontend/
DASTUnit.cpp656 bool OnlyLocalDecls, ArrayRef<RemappedFile> RemappedFiles, in LoadFromASTFile() argument
689 for (const auto &RemappedFile : RemappedFiles) in LoadFromASTFile()
1201 for (const auto &RF : PreprocessorOpts.RemappedFiles) { in ComputePreamble()
1382 for (const auto &R : PreprocessorOpts.RemappedFiles) { in getMainBufferWithPrecompiledPreamble()
1943 ArrayRef<RemappedFile> RemappedFiles, bool RemappedFilesKeepOriginalName, in LoadFromCommandLine() argument
1968 for (const auto &RemappedFile : RemappedFiles) { in LoadFromCommandLine()
2030 ArrayRef<RemappedFile> RemappedFiles) { in Reparse() argument
2045 for (const auto &RemappedFile : RemappedFiles) { in Reparse()
2319 ArrayRef<RemappedFile> RemappedFiles, bool IncludeMacros, in CodeComplete() argument
2405 for (const auto &RemappedFile : RemappedFiles) { in CodeComplete()
DCompilerInstance.cpp271 for (const auto &RF : InitOpts.RemappedFiles) { in InitializeFileRemapping()
/external/clang/tools/libclang/
DCIndexCodeCompletion.cpp680 SmallVector<ASTUnit::RemappedFile, 4> RemappedFiles; in clang_codeCompleteAt_Impl() local
685 RemappedFiles.push_back(std::make_pair(UF.Filename, MB.release())); in clang_codeCompleteAt_Impl()
705 RemappedFiles, (options & CXCodeComplete_IncludeMacros), in clang_codeCompleteAt_Impl()
DCIndex.cpp3218 std::unique_ptr<std::vector<ASTUnit::RemappedFile>> RemappedFiles( in clang_parseTranslationUnit_Impl() local
3223 std::vector<ASTUnit::RemappedFile> > RemappedCleanup(RemappedFiles.get()); in clang_parseTranslationUnit_Impl()
3228 RemappedFiles->push_back(std::make_pair(UF.Filename, MB.release())); in clang_parseTranslationUnit_Impl()
3282 /*CaptureDiagnostics=*/true, *RemappedFiles.get(), in clang_parseTranslationUnit_Impl()
3805 std::unique_ptr<std::vector<ASTUnit::RemappedFile>> RemappedFiles( in clang_reparseTranslationUnit_Impl() local
3810 std::vector<ASTUnit::RemappedFile> > RemappedCleanup(RemappedFiles.get()); in clang_reparseTranslationUnit_Impl()
3815 RemappedFiles->push_back(std::make_pair(UF.Filename, MB.release())); in clang_reparseTranslationUnit_Impl()
3819 *RemappedFiles.get())) in clang_reparseTranslationUnit_Impl()
/external/clang/lib/ARCMigrate/
DARCMT.cpp422 remap = PPOpts.RemappedFiles; in getFileRemappings()