/external/llvm-project/clang-tools-extra/clang-include-fixer/ |
D | SymbolIndexManager.cpp | 54 double NewScore = similarityScore(FileName, Symbol.Symbol.getFilePath()) * in rank() 56 double &S = Score[Symbol.Symbol.getFilePath()]; in rank() 63 auto AS = Score[A.Symbol.getFilePath()]; in rank() 64 auto BS = Score[B.Symbol.getFilePath()]; in rank() 67 return A.Symbol.getFilePath() < B.Symbol.getFilePath(); in rank()
|
D | IncludeFixerContext.h | 64 StringRef getFilePath() const { return FilePath; } in getFilePath() function
|
D | IncludeFixer.cpp | 330 std::string FilePath = Symbol.getFilePath().str(); in getIncludeFixerContext() 408 StringRef FilePath = Context.getFilePath(); in createIncludeFixerReplacements() 434 R.getFilePath(), Replaces.getShiftedCodePosition(R.getOffset()), in createIncludeFixerReplacements()
|
D | IncludeFixerContext.cpp | 100 {Symbol.getFilePath().str(), in IncludeFixerContext()
|
/external/llvm-project/clang/lib/Tooling/Core/ |
D | Replacement.cpp | 105 if (LHS.getFilePath() != RHS.getFilePath()) in operator <() 106 return LHS.getFilePath() < RHS.getFilePath(); in operator <() 113 LHS.getFilePath() == RHS.getFilePath() && in operator ==() 160 return Replacement(R.getFilePath(), NewStart, NewEnd - NewStart, in getReplacementInChangedCode() 207 R.getFilePath(), Prev.getOffset(), Prev.getLength() + R.getLength(), in getCanonicalReplacements() 247 if (!Replaces.empty() && R.getFilePath() != Replaces.begin()->getFilePath()) in add() 262 Replacement AtEnd(R.getFilePath(), R.getOffset() + R.getLength(), 0, ""); in add() 281 R.getFilePath(), R.getOffset(), 0, in add() 369 : MergeSecond(MergeSecond), Delta(D), FilePath(R.getFilePath()), in MergedReplacement() 523 FakeReplaces.add(Replacement(Replaces.begin()->getFilePath(), in calculateRangesAfterReplacements()
|
/external/icu/icu4c/source/common/ |
D | restrace.cpp | 26 getFilePath(filePath, status); in trace() 51 UTRACE_DATA1(UTRACE_VERBOSE, "%s", getFilePath(filePath, status).data()); in traceOpen() 55 CharString& ResourceTracer::getFilePath(CharString& output, UErrorCode& status) const { in getFilePath() function in ResourceTracer 62 fParent->getFilePath(output, status); in getFilePath()
|
D | restrace.h | 87 CharString& getFilePath(CharString& output, UErrorCode& status) const;
|
/external/clang/unittests/Tooling/ |
D | ReplacementsYamlTest.cpp | 75 ASSERT_EQ("/path/to/file1.h", DocActual.Replacements[0].getFilePath()); in TEST() 79 ASSERT_EQ("/path/to/file2.h", DocActual.Replacements[1].getFilePath()); in TEST() 102 ASSERT_EQ("target_file.h", DocActual.Replacements[0].getFilePath()); in TEST()
|
/external/llvm-project/clang/unittests/Tooling/ |
D | ReplacementsYamlTest.cpp | 92 ASSERT_EQ("/path/to/file1.h", DocActual.Replacements[0].getFilePath()); in TEST() 96 ASSERT_EQ("/path/to/file2.h", DocActual.Replacements[1].getFilePath()); in TEST() 118 ASSERT_EQ("target_file.h", DocActual.Replacements[0].getFilePath()); in TEST()
|
D | DiagnosticsYamlTest.cpp | 165 EXPECT_EQ("path/to/source.cpp", Fixes1[0].getFilePath()); in TEST() 178 EXPECT_EQ("path/to/header.h", Fixes2[0].getFilePath()); in TEST()
|
/external/clang/lib/Tooling/Core/ |
D | Replacement.cpp | 93 if (LHS.getFilePath() != RHS.getFilePath()) in operator <() 94 return LHS.getFilePath() < RHS.getFilePath(); in operator <() 101 LHS.getFilePath() == RHS.getFilePath() && in operator ==() 327 FakeReplaces.insert(Replacement(Replaces.begin()->getFilePath(), in calculateRangesAfterReplacements() 358 : MergeSecond(MergeSecond), Delta(D), FilePath(R.getFilePath()), in MergedReplacement() 434 FileToReplaces[Replace.getFilePath()].insert(Replace); in groupReplacementsByFile()
|
/external/llvm-project/clang-tools-extra/clang-include-fixer/tool/ |
D | ClangIncludeFixer.cpp | 241 << llvm::yaml::escape(Context.getFilePath()) << "\",\n" in writeToJson() 327 Context.getFilePath(), Style); in includeFixerMain() 362 std::string HeaderPath = Symbol.getFilePath().str(); in includeFixerMain() 405 StringRef FilePath = Context.getFilePath(); in includeFixerMain() 434 << Context.getFilePath() << "\n"; in includeFixerMain()
|
/external/llvm-project/clang-tools-extra/clang-apply-replacements/lib/Tooling/ |
D | ApplyReplacements.cpp | 158 if (auto Entry = SM.getFileManager().getFile(R.getFilePath())) { in groupReplacements() 169 } else if (Warned.insert(R.getFilePath()).second) { in groupReplacements() 170 errs() << "Described file '" << R.getFilePath() in groupReplacements()
|
/external/llvm-project/clang/include/clang/Tooling/ |
D | ReplacementsYaml.h | 37 : FilePath(R.getFilePath()), Offset(R.getOffset()), in LLVM_YAML_IS_SEQUENCE_VECTOR()
|
/external/clang/include/clang/Tooling/ |
D | ReplacementsYaml.h | 39 : FilePath(R.getFilePath()), Offset(R.getOffset()), in LLVM_YAML_IS_SEQUENCE_VECTOR()
|
/external/llvm-project/clang/lib/Tooling/Refactoring/Rename/ |
D | RenamingAction.cpp | 174 (*FileToReplaces)[std::string(Replace.getFilePath())].add(Replace); in convertChangesToFileReplacements() 176 llvm::errs() << "Renaming failed in " << Replace.getFilePath() << "! " in convertChangesToFileReplacements()
|
/external/llvm-project/clang-tools-extra/clang-tidy/ |
D | ClangTidy.cpp | 148 SmallString<128> FixAbsoluteFilePath = Repl.getFilePath(); in reportDiagnostic() 152 Replacements &Replacements = FileReplacements[R.getFilePath()]; in reportDiagnostic() 164 R = Replacement(R.getFilePath(), NewOffset, NewLength, in reportDiagnostic() 262 SmallString<128> FixAbsoluteFilePath = Repl.getFilePath(); in reportFix()
|
/external/llvm-project/clang/lib/Frontend/ |
D | PrecompiledPreamble.cpp | 350 : Storage.asFile().getFilePath()); in Build() 492 if (llvm::sys::fs::file_size(Storage.asFile().getFilePath(), Result)) in getSize() 689 llvm::StringRef PrecompiledPreamble::TempPCHFile::getFilePath() const { in getFilePath() function in PrecompiledPreamble::TempPCHFile 825 PreprocessorOpts.ImplicitPCHInclude = std::string(PCHFile.getFilePath()); in setupPreambleStorage() 830 auto PCHPath = PCHFile.getFilePath(); in setupPreambleStorage()
|
/external/llvm-project/clang/lib/Tooling/ |
D | RefactoringCallbacks.cpp | 53 Refactoring.FileToReplaces[std::string(Replacement.getFilePath())] in HandleTranslationUnit() 233 llvm::errs() << "Query and replace failed in " << Replacement.getFilePath() in run()
|
/external/icu/libicu/cts_headers/ |
D | restrace.h | 87 CharString& getFilePath(CharString& output, UErrorCode& status) const;
|
/external/llvm-project/clang-tools-extra/clang-include-fixer/find-all-symbols/ |
D | SymbolInfo.h | 89 llvm::StringRef getFilePath() const { return FilePath; } in getFilePath() function
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/ |
D | NativeExeSymbol.cpp | 76 return Session.getPDBFile().getFilePath(); in getSymbolsFileName()
|
/external/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
D | NativeExeSymbol.cpp | 76 return std::string(Session.getPDBFile().getFilePath()); in getSymbolsFileName()
|
/external/OpenCSD/decoder/include/mem_acc/ |
D | trc_mem_acc_file.h | 107 const std::string &getFilePath() const { return m_file_path; }; in getFilePath() function
|
/external/llvm-project/llvm/tools/llvm-pdbutil/ |
D | InputFile.h | 71 StringRef getFilePath() const;
|