Home
last modified time | relevance | path

Searched refs:unexpected (Results 1 – 25 of 137) sorted by relevance

123456

/freebsd/contrib/llvm-project/libcxx/include/__expected/
H A Dunexpected.h42 class unexpected; variable
48 struct __is_std_unexpected<unexpected<_Err>> : true_type {};
60 class unexpected {
66 _LIBCPP_HIDE_FROM_ABI constexpr unexpected(const unexpected&) = default;
67 _LIBCPP_HIDE_FROM_ABI constexpr unexpected(unexpected&&) = default;
70 requires(!is_same_v<remove_cvref_t<_Error>, unexpected> && //
73 _LIBCPP_HIDE_FROM_ABI constexpr explicit unexpected(_Error&& __error) //
79 _LIBCPP_HIDE_FROM_ABI constexpr explicit unexpected(in_place_t, _Args&&... __args) //
85 …_LIBCPP_HIDE_FROM_ABI constexpr explicit unexpected(in_place_t, initializer_list<_Up> __il, _Args&…
89 _LIBCPP_HIDE_FROM_ABI constexpr unexpected& operator=(const unexpected&) = default;
[all …]
H A Dexpected.h465 using unexpected_type = unexpected<_Err>;
521 _Not<is_constructible<unexpected<_Err>, expected<_Up, _OtherErr>&>>,
522 _Not<is_constructible<unexpected<_Err>, expected<_Up, _OtherErr>>>,
523 _Not<is_constructible<unexpected<_Err>, const expected<_Up, _OtherErr>&>>,
524 _Not<is_constructible<unexpected<_Err>, const expected<_Up, _OtherErr>>> >;
564 …const unexpected<_OtherErr>& __unex) noexcept(is_nothrow_constructible_v<_Err, const _OtherErr&>) …
570 …expected(unexpected<_OtherErr>&& __unex) noexcept(is_nothrow_constructible_v<_Err, _OtherErr>) // …
694 _LIBCPP_HIDE_FROM_ABI constexpr expected& operator=(const unexpected<_OtherErr>& __un) {
705 _LIBCPP_HIDE_FROM_ABI constexpr expected& operator=(unexpected<_OtherErr>&& __un) {
1160 …_LIBCPP_HIDE_FROM_ABI friend constexpr bool operator==(const expected& __x, const unexpected<_E2>&…
[all …]
/freebsd/contrib/llvm-project/libcxx/include/
H A Dexpected17 // [expected.unexpected], class template unexpected
18 template<class E> class unexpected;
26 // in-place construction of unexpected values
47 # include <__expected/unexpected.h>
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dexpected.cppm
/freebsd/crypto/openssh/regress/
H A Dsftp-glob.sh12 unexpected=$4
32 if test "x$unexpected" != "x" && \
33 fgrep "$unexpected" ${RESULTS} >/dev/null 2>&1 ; then
34 fail "$unexpected present in $errtag results"
/freebsd/contrib/bmake/unit-tests/
H A Dvarmod-indirect.mk20 . warning unexpected
26 . warning unexpected
33 . warning unexpected
42 . warning unexpected
H A Dcmd-errors-jobs.mk42 : unexpected $@-${UNCLOSED
45 : unexpected $@-${UNCLOSED:
48 : unexpected $@-${UNKNOWN:Z}-eol
H A Dvarmod-match-escape.mk17 . warning unexpected
H A Ddirective-ifmake.mk23 . warning unexpected
H A Dvar-eval-short.mk14 FAIL= ${:!echo unexpected 1>&2!}
H A Dcmd-interrupt.mk48 @echo ${.TARGET} ${exists(././cmd-interrupt-compat) :? expected-fail : unexpected-ok }
/freebsd/sys/contrib/openzfs/tests/test-runner/bin/
H A Dzts-report.py.in430 unexpected = [] variable
450 unexpected.append(test)
452 unexpected.append(test)
492 for test in sorted(unexpected):
496 if len(unexpected) == 0:
/freebsd/contrib/libarchive/libarchive/test/
H A Dtest_write_format_zip_windows_path.c73 const char *unexpected = raw_path; in test_with_hdrcharset() local
76 const char *unexpected = replaced; in test_with_hdrcharset() local
84 if (memcmp(ptr, unexpected, len) == 0) in test_with_hdrcharset()
/freebsd/sys/contrib/openzfs/.github/workflows/scripts/
H A Dmerge_summary.awk63 /Tests with result of PASS that are unexpected/{state="unexpected_pass_lines"; next}
64 /Tests with results other than PASS that are unexpected/{state="unexpected_lines"; next}
/freebsd/contrib/llvm-project/libcxx/src/support/runtime/
H A Dexception_fallback.ipp24 _LIBCPP_NORETURN void unexpected() {
26 // unexpected handler should not return
H A Dexception_msvc.ipp35 _LIBCPP_NORETURN void unexpected() {
37 // unexpected handler should not return
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnosticParseKinds.td222 def err_at_in_class : Error<"unexpected '@' in member specification">;
223 def err_unexpected_semi : Error<"unexpected ';' before %0">;
336 def err_unexpected_at : Error<"unexpected '@' in program">;
409 "unexpected type name %0: expected identifier">;
414 "unexpected namespace scope prior to decltype">;
450 "unexpected ':' in nested name specifier; did you mean '::'?">;
544 def err_objc_concat_string : Error<"unexpected token after Objective-C string">;
617 "unexpected end of exception specification">;
649 "unexpected end of default argument expression">;
672 "unexpected %0 in function call; perhaps remove the %0?">;
[all …]
/freebsd/contrib/byacc/test/yacc/
H A Derr_syntax26.error1 YACC: e - line 6 of "./err_syntax26.y", unexpected end-of-file
/freebsd/contrib/byacc/test/btyacc/
H A Derr_syntax26.error1 YACC: e - line 6 of "./err_syntax26.y", unexpected end-of-file
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_clone/
H A Dzfs_clone_010_pos.ksh78 typeset unexpected=$2
99 if [[ $unexpected -eq 1 ]]; then
/freebsd/contrib/llvm-project/libcxx/include/__exception/
H A Doperations.h25 _LIBCPP_NORETURN _LIBCPP_EXPORTED_FROM_ABI void unexpected();
/freebsd/bin/sh/tests/errors/
H A Dbad-binary1.1263 # Syntax error: word unexpected (expecting ")")
/freebsd/contrib/one-true-awk/testdir/
H A DT.misc451 grep "unexpected" foo >/dev/null || echo 1>&2 "BAD: T.misc syntax error $ fails"
454 grep "unexpected" foo >/dev/null || echo 1>&2 "BAD: T.misc syntax error $2 fails"
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors_format.inc229 return nullptr; // unexpected end of string
327 Report("%s: WARNING: unexpected format specifier in scanf interceptor: %.*s\n",
479 Report("WARNING: unexpected floating-point arg size" \
494 Report("WARNING: unexpected arg size" \
539 "%s: WARNING: unexpected format specifier in printf "
/freebsd/crypto/heimdal/lib/asn1/
H A Dasn1_err.et12 error_code MISPLACED_FIELD, "ASN.1 unexpected field number"

123456