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/lib/Frontend/Rewrite/
DFrontendActions.cpp143 PPOpts.RemappedFiles.insert(PPOpts.RemappedFiles.end(), in BeginInvocation()
/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/
DASTUnit.cpp656 bool OnlyLocalDecls, ArrayRef<RemappedFile> RemappedFiles, in LoadFromASTFile() argument
689 for (const auto &RemappedFile : RemappedFiles) in LoadFromASTFile()
1203 for (const auto &RF : PreprocessorOpts.RemappedFiles) { in ComputePreamble()
1384 for (const auto &R : PreprocessorOpts.RemappedFiles) { in getMainBufferWithPrecompiledPreamble()
1935 ArrayRef<RemappedFile> RemappedFiles, bool RemappedFilesKeepOriginalName, in LoadFromCommandLine() argument
1960 for (const auto &RemappedFile : RemappedFiles) { in LoadFromCommandLine()
2022 ArrayRef<RemappedFile> RemappedFiles) { in Reparse() argument
2037 for (const auto &RemappedFile : RemappedFiles) { in Reparse()
2310 ArrayRef<RemappedFile> RemappedFiles, bool IncludeMacros, in CodeComplete() argument
2396 for (const auto &RemappedFile : RemappedFiles) { in CodeComplete()
DCompilerInstance.cpp269 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.cpp3107 std::unique_ptr<std::vector<ASTUnit::RemappedFile>> RemappedFiles( in clang_parseTranslationUnit_Impl() local
3112 std::vector<ASTUnit::RemappedFile> > RemappedCleanup(RemappedFiles.get()); in clang_parseTranslationUnit_Impl()
3117 RemappedFiles->push_back(std::make_pair(UF.Filename, MB.release())); in clang_parseTranslationUnit_Impl()
3171 /*CaptureDiagnostics=*/true, *RemappedFiles.get(), in clang_parseTranslationUnit_Impl()
3387 std::unique_ptr<std::vector<ASTUnit::RemappedFile>> RemappedFiles( in clang_reparseTranslationUnit_Impl() local
3392 std::vector<ASTUnit::RemappedFile> > RemappedCleanup(RemappedFiles.get()); in clang_reparseTranslationUnit_Impl()
3397 RemappedFiles->push_back(std::make_pair(UF.Filename, MB.release())); in clang_reparseTranslationUnit_Impl()
3401 *RemappedFiles.get())) in clang_reparseTranslationUnit_Impl()
/external/clang/lib/ARCMigrate/
DARCMT.cpp421 remap = PPOpts.RemappedFiles; in getFileRemappings()