Searched refs:remove_dot_dot (Results 1 – 10 of 10) sorted by relevance
/external/llvm/include/llvm/Support/ |
D | Path.h | 450 bool remove_dots(SmallVectorImpl<char> &path, bool remove_dot_dot = false);
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | Path.h | 451 bool remove_dots(SmallVectorImpl<char> &path, bool remove_dot_dot = false);
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/ |
D | Path.cpp | 702 static SmallString<256> remove_dots(StringRef path, bool remove_dot_dot) { in remove_dots() argument 711 if (remove_dot_dot && C == "..") { in remove_dots() 728 bool remove_dots(SmallVectorImpl<char> &path, bool remove_dot_dot) { in remove_dots() argument 731 SmallString<256> result = remove_dots(p, remove_dot_dot); in remove_dots()
|
/external/llvm/lib/Support/ |
D | Path.cpp | 702 static SmallString<256> remove_dots(StringRef path, bool remove_dot_dot) { in remove_dots() argument 710 if (remove_dot_dot) { in remove_dots() 726 bool remove_dots(SmallVectorImpl<char> &path, bool remove_dot_dot) { in remove_dots() argument 729 SmallString<256> result = remove_dots(p, remove_dot_dot); in remove_dots()
|
/external/llvm-project/llvm/include/llvm/Support/ |
D | Path.h | 514 bool remove_dots(SmallVectorImpl<char> &path, bool remove_dot_dot = false,
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | Path.h | 468 bool remove_dots(SmallVectorImpl<char> &path, bool remove_dot_dot = false,
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | Path.cpp | 711 static SmallString<256> remove_dots(StringRef path, bool remove_dot_dot, in remove_dots() argument 722 if (remove_dot_dot && C == "..") { in remove_dots() 739 bool remove_dots(SmallVectorImpl<char> &path, bool remove_dot_dot, in remove_dots() argument 743 SmallString<256> result = remove_dots(p, remove_dot_dot, style); in remove_dots()
|
/external/llvm-project/llvm/lib/Support/ |
D | Path.cpp | 714 bool remove_dots(SmallVectorImpl<char> &the_path, bool remove_dot_dot, in remove_dots() argument 748 } else if (remove_dot_dot && component == "..") { in remove_dots()
|
/external/llvm/unittests/Support/ |
D | Path.cpp | 942 bool remove_dot_dot) { in remove_dots() argument 944 path::remove_dots(buffer, remove_dot_dot); in remove_dots()
|
/external/llvm-project/llvm/unittests/Support/ |
D | Path.cpp | 1404 static std::string remove_dots(StringRef path, bool remove_dot_dot, in remove_dots() argument 1407 path::remove_dots(buffer, remove_dot_dot, style); in remove_dots()
|