Searched refs:remove_dot_dot (Results 1 – 8 of 8) 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/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/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/swiftshader/third_party/llvm-7.0/llvm/lib/Support/ |
D | Path.cpp | 704 static SmallString<256> remove_dots(StringRef path, bool remove_dot_dot, in remove_dots() argument 715 if (remove_dot_dot && C == "..") { in remove_dots() 732 bool remove_dots(SmallVectorImpl<char> &path, bool remove_dot_dot, in remove_dots() argument 736 SmallString<256> result = remove_dots(p, remove_dot_dot, style); in remove_dots()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/ |
D | Path.h | 468 bool remove_dots(SmallVectorImpl<char> &path, bool remove_dot_dot = false,
|
/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/swiftshader/third_party/llvm-7.0/llvm/unittests/Support/ |
D | Path.cpp | 1160 static std::string remove_dots(StringRef path, bool remove_dot_dot, in remove_dots() argument 1163 path::remove_dots(buffer, remove_dot_dot, style); in remove_dots()
|