Home
last modified time | relevance | path

Searched refs:IgnoreErrors (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Support/Unix/
H A DPath.inc1278 bool IgnoreErrors) {
1287 EC = remove_directories_impl(Item, IgnoreErrors);
1288 if (EC && !IgnoreErrors)
1293 if (EC && !IgnoreErrors)
1295 } else if (!IgnoreErrors) {
1300 if (EC && !IgnoreErrors)
1306 std::error_code remove_directories(const Twine &path, bool IgnoreErrors) {
1307 auto EC = remove_directories_impl(path, IgnoreErrors);
1308 if (EC && !IgnoreErrors)
1311 if (EC && !IgnoreErrors)
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DCommandLine.cpp1497 bool IgnoreErrors = Errs; in ParseCommandLineOptions() local
1568 if (!IgnoreErrors) in ParseCommandLineOptions()
1579 if (!IgnoreErrors) in ParseCommandLineOptions()
1841 if (!IgnoreErrors) in ParseCommandLineOptions()
/freebsd/contrib/llvm-project/llvm/lib/Support/Windows/
H A DPath.inc1377 std::error_code remove_directories(const Twine &path, bool IgnoreErrors) {
1383 if (EC && !IgnoreErrors)
1422 if (FAILED(HR) && !IgnoreErrors)
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DFileSystem.h381 bool IgnoreErrors = true);