Home | History | Annotate | Download | only in Tooling

Lines Matching refs:FileName

67       StringRef Element(llvm::sys::path::filename(
71 StringRef Element(llvm::sys::path::filename(
77 /// matches 'FileName'.
79 /// If multiple paths fit 'FileName' equally well, \c IsAmbiguous is set to
80 /// \c true and an empty string is returned. If no path fits 'FileName', an
82 /// \c Filename's trailing characters already consumed during recursion.
98 StringRef FileName,
102 if (Comparator.equivalent(StringRef(Path), FileName))
106 StringRef Element(llvm::sys::path::filename(FileName.drop_back(
112 Comparator, FileName, IsAmbiguous,
121 if (Comparator.equivalent(AllChildren[i], FileName)) {
174 StringRef FileMatchTrie::findEquivalent(StringRef FileName,
176 if (llvm::sys::path::is_relative(FileName)) {
181 StringRef Result = Root->findEquivalent(*Comparator, FileName, IsAmbiguous);