/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-8/src/filesystem/ |
A D | std-path.cc | 337 inline bool is_dot(wchar_t c) { return c == L'.'; } in is_dot() function 339 inline bool is_dot(char c) { return c == '.'; } 342 inline bool is_dot(const fs::path& path) in is_dot() function 345 return filename.size() == 1 && is_dot(filename[0]); in is_dot() 351 return filename.size() == 2 && is_dot(filename[0]) && is_dot(filename[1]); in is_dotdot() 436 else if (is_dot(p)) in lexically_normal() 478 else if (!p.empty() && !is_dot(p)) in lexically_relative()
|
A D | ops.cc | 91 inline bool is_dot(wchar_t c) { return c == L'.'; } in is_dot() function 93 inline bool is_dot(char c) { return c == '.'; } 96 inline bool is_dot(const fs::path& path) in is_dot() function 99 return filename.size() == 1 && is_dot(filename[0]); in is_dot() 105 return filename.size() == 2 && is_dot(filename[0]) && is_dot(filename[1]); in is_dotdot() 164 if (is_dot(f)) in canonical() 448 if (!is_dot(filename) && !is_dotdot(filename)) in create_directories()
|
A D | std-ops.cc | 116 inline bool is_dot(wchar_t c) { return c == L'.'; } in is_dot() function 118 inline bool is_dot(char c) { return c == '.'; } 121 inline bool is_dot(const fs::path& path) in is_dot() function 124 return filename.size() == 1 && is_dot(filename[0]); in is_dot() 130 return filename.size() == 2 && is_dot(filename[0]) && is_dot(filename[1]); in is_dotdot() 195 else if (is_dot(f)) in canonical() 666 if (is_dot(filename) || is_dotdot(filename)) in create_directories()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-10/src/filesystem/ |
A D | ops.cc | 90 inline bool is_dot(wchar_t c) { return c == L'.'; } in is_dot() function 92 inline bool is_dot(char c) { return c == '.'; } 95 inline bool is_dot(const fs::path& path) in is_dot() function 98 return filename.size() == 1 && is_dot(filename[0]); in is_dot() 104 return filename.size() == 2 && is_dot(filename[0]) && is_dot(filename[1]); in is_dotdot() 164 if (is_dot(f)) in canonical() 448 if (!is_dot(filename) && !is_dotdot(filename)) in create_directories()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/src/filesystem/ |
A D | ops.cc | 90 inline bool is_dot(wchar_t c) { return c == L'.'; } in is_dot() function 92 inline bool is_dot(char c) { return c == '.'; } 95 inline bool is_dot(const fs::path& path) in is_dot() function 98 return filename.size() == 1 && is_dot(filename[0]); in is_dot() 104 return filename.size() == 2 && is_dot(filename[0]) && is_dot(filename[1]); in is_dotdot() 164 if (is_dot(f)) in canonical() 448 if (!is_dot(filename) && !is_dotdot(filename)) in create_directories()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-9/src/filesystem/ |
A D | ops.cc | 90 inline bool is_dot(wchar_t c) { return c == L'.'; } in is_dot() function 92 inline bool is_dot(char c) { return c == '.'; } 95 inline bool is_dot(const fs::path& path) in is_dot() function 98 return filename.size() == 1 && is_dot(filename[0]); in is_dot() 104 return filename.size() == 2 && is_dot(filename[0]) && is_dot(filename[1]); in is_dotdot() 164 if (is_dot(f)) in canonical() 448 if (!is_dot(filename) && !is_dotdot(filename)) in create_directories()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-5/src/filesystem/ |
A D | ops.cc | 92 inline bool is_dot(wchar_t c) { return c == L'.'; } in is_dot() function 94 inline bool is_dot(char c) { return c == '.'; } 97 inline bool is_dot(const fs::path& path) in is_dot() function 100 return filename.size() == 1 && is_dot(filename[0]); in is_dot() 106 return filename.size() == 2 && is_dot(filename[0]) && is_dot(filename[1]); in is_dotdot() 165 if (is_dot(f)) in canonical() 671 if (!is_dot(filename) && !is_dotdot(filename)) in create_directories()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-6/src/filesystem/ |
A D | ops.cc | 92 inline bool is_dot(wchar_t c) { return c == L'.'; } in is_dot() function 94 inline bool is_dot(char c) { return c == '.'; } 97 inline bool is_dot(const fs::path& path) in is_dot() function 100 return filename.size() == 1 && is_dot(filename[0]); in is_dot() 106 return filename.size() == 2 && is_dot(filename[0]) && is_dot(filename[1]); in is_dotdot() 165 if (is_dot(f)) in canonical() 691 if (!is_dot(filename) && !is_dotdot(filename)) in create_directories()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-7/src/filesystem/ |
A D | ops.cc | 92 inline bool is_dot(wchar_t c) { return c == L'.'; } in is_dot() function 94 inline bool is_dot(char c) { return c == '.'; } 97 inline bool is_dot(const fs::path& path) in is_dot() function 100 return filename.size() == 1 && is_dot(filename[0]); in is_dot() 106 return filename.size() == 2 && is_dot(filename[0]) && is_dot(filename[1]); in is_dotdot() 165 if (is_dot(f)) in canonical() 691 if (!is_dot(filename) && !is_dotdot(filename)) in create_directories()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-9/src/c++17/ |
A D | fs_ops.cc | 139 inline bool is_dot(wchar_t c) { return c == L'.'; } in is_dot() function 141 inline bool is_dot(char c) { return c == '.'; } 144 inline bool is_dot(const fs::path& path) in is_dot() function 147 return filename.size() == 1 && is_dot(filename[0]); in is_dot() 153 return filename.size() == 2 && is_dot(filename[0]) && is_dot(filename[1]); in is_dotdot() 223 else if (is_dot(f)) in canonical() 524 if (is_dot(filename) || is_dotdot(filename)) in create_directories()
|
A D | fs_path.cc | 1649 inline bool is_dot(fs::path::value_type c) { return c == dot; } in is_dot() function 1651 inline bool is_dot(const fs::path& path) in is_dot() function 1654 return filename.size() == 1 && is_dot(filename[0]); in is_dot() 1660 return filename.size() == 2 && is_dot(filename[0]) && is_dot(filename[1]); in is_dotdot() 1745 else if (is_dot(p)) in lexically_normal() 1791 else if (!p.empty() && !is_dot(p)) in lexically_relative()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-10/src/c++17/ |
A D | fs_ops.cc | 139 inline bool is_dot(wchar_t c) { return c == L'.'; } in is_dot() function 141 inline bool is_dot(char c) { return c == '.'; } 144 inline bool is_dot(const fs::path& path) in is_dot() function 147 return filename.size() == 1 && is_dot(filename[0]); in is_dot() 153 return filename.size() == 2 && is_dot(filename[0]) && is_dot(filename[1]); in is_dotdot() 223 else if (is_dot(f)) in canonical() 524 if (is_dot(filename) || is_dotdot(filename)) in create_directories()
|
A D | fs_path.cc | 1656 inline bool is_dot(fs::path::value_type c) { return c == dot; } in is_dot() function 1658 inline bool is_dot(const fs::path& path) in is_dot() function 1661 return filename.size() == 1 && is_dot(filename[0]); in is_dot() 1667 return filename.size() == 2 && is_dot(filename[0]) && is_dot(filename[1]); in is_dotdot() 1752 else if (is_dot(p)) in lexically_normal() 1811 else if (!p.empty() && !is_dot(p)) in lexically_relative()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/src/c++17/ |
A D | fs_ops.cc | 139 inline bool is_dot(wchar_t c) { return c == L'.'; } in is_dot() function 141 inline bool is_dot(char c) { return c == '.'; } 144 inline bool is_dot(const fs::path& path) in is_dot() function 147 return filename.size() == 1 && is_dot(filename[0]); in is_dot() 153 return filename.size() == 2 && is_dot(filename[0]) && is_dot(filename[1]); in is_dotdot() 223 else if (is_dot(f)) in canonical() 524 if (is_dot(filename) || is_dotdot(filename)) in create_directories()
|
A D | fs_path.cc | 1656 inline bool is_dot(fs::path::value_type c) { return c == dot; } in is_dot() function 1658 inline bool is_dot(const fs::path& path) in is_dot() function 1661 return filename.size() == 1 && is_dot(filename[0]); in is_dot() 1667 return filename.size() == 2 && is_dot(filename[0]) && is_dot(filename[1]); in is_dotdot() 1752 else if (is_dot(p)) in lexically_normal() 1811 else if (!p.empty() && !is_dot(p)) in lexically_relative()
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-5/ |
A D | ChangeLog | 1697 (is_dot, is_dotdot): Define new helpers.
|