Home
last modified time | relevance | path

Searched refs:getFilePath (Results 1 – 25 of 56) sorted by relevance

123

/external/llvm-project/clang-tools-extra/clang-include-fixer/
DSymbolIndexManager.cpp54 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()
DIncludeFixerContext.h64 StringRef getFilePath() const { return FilePath; } in getFilePath() function
DIncludeFixer.cpp330 std::string FilePath = Symbol.getFilePath().str(); in getIncludeFixerContext()
408 StringRef FilePath = Context.getFilePath(); in createIncludeFixerReplacements()
434 R.getFilePath(), Replaces.getShiftedCodePosition(R.getOffset()), in createIncludeFixerReplacements()
DIncludeFixerContext.cpp100 {Symbol.getFilePath().str(), in IncludeFixerContext()
/external/llvm-project/clang/lib/Tooling/Core/
DReplacement.cpp105 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/
Drestrace.cpp26 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()
Drestrace.h87 CharString& getFilePath(CharString& output, UErrorCode& status) const;
/external/clang/unittests/Tooling/
DReplacementsYamlTest.cpp75 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/
DReplacementsYamlTest.cpp92 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()
DDiagnosticsYamlTest.cpp165 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/
DReplacement.cpp93 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/
DClangIncludeFixer.cpp241 << 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/
DApplyReplacements.cpp158 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/
DReplacementsYaml.h37 : FilePath(R.getFilePath()), Offset(R.getOffset()), in LLVM_YAML_IS_SEQUENCE_VECTOR()
/external/clang/include/clang/Tooling/
DReplacementsYaml.h39 : FilePath(R.getFilePath()), Offset(R.getOffset()), in LLVM_YAML_IS_SEQUENCE_VECTOR()
/external/llvm-project/clang/lib/Tooling/Refactoring/Rename/
DRenamingAction.cpp174 (*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/
DClangTidy.cpp148 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/
DPrecompiledPreamble.cpp350 : 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/
DRefactoringCallbacks.cpp53 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/
Drestrace.h87 CharString& getFilePath(CharString& output, UErrorCode& status) const;
/external/llvm-project/clang-tools-extra/clang-include-fixer/find-all-symbols/
DSymbolInfo.h89 llvm::StringRef getFilePath() const { return FilePath; } in getFilePath() function
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/
DNativeExeSymbol.cpp76 return Session.getPDBFile().getFilePath(); in getSymbolsFileName()
/external/llvm-project/llvm/lib/DebugInfo/PDB/Native/
DNativeExeSymbol.cpp76 return std::string(Session.getPDBFile().getFilePath()); in getSymbolsFileName()
/external/OpenCSD/decoder/include/mem_acc/
Dtrc_mem_acc_file.h107 const std::string &getFilePath() const { return m_file_path; }; in getFilePath() function
/external/llvm-project/llvm/tools/llvm-pdbutil/
DInputFile.h71 StringRef getFilePath() const;

123