Home
last modified time | relevance | path

Searched refs:format_error (Results 1 – 20 of 20) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/include/__format/
H A Dformat_error.h27 class _LIBCPP_EXPORTED_FROM_ABI format_error : public runtime_error {
29 _LIBCPP_HIDE_FROM_ABI explicit format_error(const string& __s) : runtime_error(__s) {} in format_error() function
30 _LIBCPP_HIDE_FROM_ABI explicit format_error(const char* __s) : runtime_error(__s) {} in format_error()
31 _LIBCPP_HIDE_FROM_ABI format_error(const format_error&) = default; in format_error() function
32 _LIBCPP_HIDE_FROM_ABI format_error& operator=(const format_error&) = default; in format_error()
34 ~format_error() noexcept override = default;
40 throw format_error(__s); in __throw_format_error()
42 _LIBCPP_VERBOSE_ABORT("format_error wa in __throw_format_error()
[all...]
/freebsd/contrib/kyua/engine/
H A Datf_list.cpp60 throw engine::format_error("Invalid property line; expecting line of " in split_prop_line()
86 throw engine::format_error("Duplicate value for property " + in parse_properties()
145 throw engine::format_error(F("Unknown test case metadata " in parse_atf_metadata()
150 throw engine::format_error(e.what()); in parse_atf_metadata()
172 throw format_error(F("Invalid header for test case list; expecting " in parse_atf_list()
178 throw format_error(F("Invalid header for test case list; expecting " in parse_atf_list()
186 throw format_error("Invalid test case definition; must be " in parse_atf_list()
197 throw format_error("No test cases"); in parse_atf_list()
H A Datf_list_test.cpp110 ATF_REQUIRE_THROW_RE(engine::format_error, "Unknown.*property.*'foobar'", in ATF_TEST_CASE_BODY()
120 ATF_REQUIRE_THROW_RE(engine::format_error, "expecting Content-Type", in ATF_TEST_CASE_BODY()
132 ATF_REQUIRE_THROW_RE(engine::format_error, "expecting.*blank line", in ATF_TEST_CASE_BODY()
140 ATF_REQUIRE_THROW_RE(engine::format_error, "expecting.*blank line", in ATF_TEST_CASE_BODY()
148 ATF_REQUIRE_THROW_RE(engine::format_error, "expecting Content-Type", in ATF_TEST_CASE_BODY()
160 ATF_REQUIRE_THROW_RE(engine::format_error, "No test cases", in ATF_TEST_CASE_BODY()
211 ATF_REQUIRE_THROW_RE(engine::format_error, "preceeded.*identifier", in ATF_TEST_CASE_BODY()
228 ATF_REQUIRE_THROW_RE(engine::format_error, "Relative path 'bin/ls'", in ATF_TEST_CASE_BODY()
H A Dexceptions.cpp53 engine::format_error::format_error(const std::string& reason_) : in format_error() function in engine::format_error
60 engine::format_error::~format_error(void) throw() in ~format_error()
H A Dexceptions_test.cpp46 ATF_TEST_CASE_WITHOUT_HEAD(format_error);
47 ATF_TEST_CASE_BODY(format_error) in ATF_TEST_CASE_BODY() argument
49 const engine::format_error e("Some text"); in ATF_TEST_CASE_BODY()
67 ATF_ADD_TEST_CASE(tcs, format_error); in ATF_INIT_TEST_CASES()
H A Dexceptions.hpp51 class format_error : public error { class
53 explicit format_error(const std::string&);
54 virtual ~format_error(void) throw();
H A Datf_result.cpp111 throw engine::format_error(F("%s cannot have a reason") % status); in parse_without_reason()
134 throw engine::format_error(F("%s must be followed by ': <reason>'") % in parse_with_reason()
188 throw engine::format_error(F("Invalid format for '%s' test case " in parse_with_reason_and_arg()
197 throw engine::format_error(F("Mismatched '(' in %s") % rest); in parse_with_reason_and_arg()
202 throw engine::format_error(F("Invalid integer argument '%s' to " in parse_with_reason_and_arg()
294 throw format_error("Empty test result or no new line"); in parse()
296 throw format_error("Test result contains multiple lines: " + in parse()
323 throw format_error(F("Unknown test result '%s'") % status); in parse()
627 } catch (const engine::format_error& error) { in calculate_atf_result()
H A Dtap_parser.cpp99 throw engine::format_error( in try_parse_plan()
108 throw engine::format_error(F("Skipped plan must be %s..%s") % in try_parse_plan()
117 throw engine::format_error(F("Found reversed plan %s..%s") % in try_parse_plan()
210 throw engine::format_error( in parse()
221 throw engine::format_error( in parse()
433 } catch (const engine::format_error& e) { in parse_tap_output()
H A Datf_result_test.cpp106 ATF_REQUIRE_THROW_RE(engine::format_error, reason_regexp, in parse_broken_test()
274 ATF_REQUIRE_THROW_RE(engine::format_error, "cannot have a reason", in ATF_TEST_CASE_BODY()
/freebsd/contrib/kyua/model/
H A Dexceptions.cpp52 model::format_error::format_error(const std::string& message) : in format_error() function in model::format_error
59 model::format_error::~format_error(void) throw() in ~format_error()
H A Dexceptions_test.cpp44 ATF_TEST_CASE_WITHOUT_HEAD(format_error);
45 ATF_TEST_CASE_BODY(format_error) in ATF_TEST_CASE_BODY() argument
47 const model::format_error e("Some other text"); in ATF_TEST_CASE_BODY()
63 ATF_ADD_TEST_CASE(tcs, format_error); in ATF_INIT_TEST_CASES()
H A Dexceptions.hpp54 class format_error : public error { class
56 explicit format_error(const std::string&);
57 virtual ~format_error(void) throw();
H A Dmetadata.cpp1104 throw model::format_error(F("Unknown metadata property %s") % key); in set_string()
1106 throw model::format_error( in set_string()
/freebsd/lib/libc/stdlib/
H A Dstrfmon.c168 goto format_error; in vstrfmon_l()
175 goto format_error; in vstrfmon_l()
180 goto format_error; in vstrfmon_l()
209 goto format_error; in vstrfmon_l()
218 goto format_error; in vstrfmon_l()
237 goto format_error; in vstrfmon_l()
411 format_error: in vstrfmon_l()
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dformat.cppm
/freebsd/contrib/llvm-project/libcxx/include/
H A Dformat185 // [format.error], class format_error
186 class format_error;
204 # include <__format/format_error.h>
H A Dmodule.modulemap1297 module std_private_format_format_error [system] { header "__format/format_error.…
/freebsd/lib/libc++/
H A DMakefile723 FMT_HEADERS+= format_error.h
H A Dlibcxx.imp362 { include: [ "<__format/format_error.h>", "private", "<format>", "public" ] },
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
H A DStdSymbolMap.inc1315 SYMBOL(format_error, std::, <format>)