Home
last modified time | relevance | path

Searched full:unexpected (Results 1 – 25 of 1920) sorted by relevance

12345678910>>...77

/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 {
62 …"[expected.un.general] states a program that instantiates std::unexpected for a non-object type, a…
63 … "array type, a specialization of unexpected, or a cv-qualified type is ill-formed.");
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) //
[all …]
/freebsd/contrib/bmake/unit-tests/
H A Dcond-short.mk27 # evaluate at all' and 'allow undefined variables' led to the unexpected
35 .if 0 && ${echo "unexpected and" 1>&2 :L:sh}
41 .if 0 && exists(nonexistent${echo "unexpected and exists" 1>&2 :L:sh})
47 .if 0 && empty(${echo "unexpected and empty" 1>&2 :L:sh})
55 VAR= ${VAR${:U11${echo "unexpected VAR U11" 1>&2 :L:sh}}}
56 VAR13= ${VAR${:U12${echo "unexpected VAR13" 1>&2 :L:sh}}}
57 .if 0 && !empty(VAR${:U13${echo "unexpected U13 condition" 1>&2 :L:sh}})
60 VAR= ${VAR${:U21${echo "unexpected VAR U21" 1>&2 :L:sh}}}
68 .if 0 && !empty(VAR:M${:U${echo "unexpected M pattern" 1>&2 :L:sh}})
74 .if 0 && !empty(VAR:S,from,${:U${echo "unexpected S modifier" 1>&2 :L:sh}},)
[all …]
H A Dcmd-errors-jobs.exp11 in command ": unexpected $@-${UNCLOSED"
15 in command ": unexpected $@-${UNCLOSED:"
19 in command ": unexpected $@-${UNKNOWN:Z}-eol"
25 in command ": unexpected $@-${UNCLOSED"
29 in command ": unexpected $@-${UNCLOSED:"
33 in command ": unexpected $@-${UNKNOWN:Z}-eol"
H A Dcmd-errors-jobs.mk42 : unexpected $@-${UNCLOSED
45 : unexpected $@-${UNCLOSED:
48 : unexpected $@-${UNKNOWN:Z}-eol
50 # expect-not-matches: ^: unexpected
52 # expect: in command ": unexpected $@-${UNCLOSED"
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_property/
H A Dzfs_written_property_001_pos.ksh80 log_fail "Unexpected written value $written $expected_written"
98 log_fail "Unexpected written value $written $expected_written $i"
112 log_fail "Unexpected written@ value"
126 log_fail "Unexpected written value after delete $written $before_written"
131 log_fail "Unexpected written value after delete $writtenat $expected_writtenat"
136 log_fail "Unexpected written value after delete"
170 log_fail "unexpected written for clone $before_clone $after_clone"
183 log_fail "unexpected written values $before_written1 $written1"
188 log_fail "unexpected written value $prev_written $expected_written3"
195 log_fail "Unexpected last snapshot written value"
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/orc/tests/unit/
H A Dadt_test.cpp32 EXPECT_EQ(S.size(), 5U) << "Span has unexpected size"; in TEST()
34 << "Unexpected iterator range size"; in TEST()
35 EXPECT_EQ(S.data(), &A[0]) << "Span data has unexpected value"; in TEST()
37 EXPECT_EQ(S[I], A[I]) << "Unexpected span element value"; in TEST()
44 EXPECT_EQ(S.size(), 5U) << "Span has unexpected size"; in TEST()
46 << "Unexpected iterator range size"; in TEST()
47 EXPECT_EQ(S.data(), &A[0]) << "Span data has unexpected value"; in TEST()
49 EXPECT_EQ(S[I], A[I]) << "Unexpected span element value"; in TEST()
H A Dc_api_test.cpp44 << "Unexpected value at index " << I; in TEST()
75 << "Unexpected value at index " << I; in TEST()
106 << "Unexpected value at index " << I; in TEST()
127 << "Unexpected value at index " << I; in TEST()
149 << "Unexpected value at index " << I; in TEST()
151 << "Unexpected value at index " << (SmallAllocSize - 1); in TEST()
173 << "Unexpected value at index " << I; in TEST()
175 << "Unexpected value at index " << (LargeAllocSize - 1); in TEST()
H A Derror_test.cpp54 EXPECT_FALSE(E) << "Unexpected error while testing Error 'Success'"; in TEST()
94 EXPECT_EQ(CE->getV1(), 42) << "Unexpected wrapped value"; in TEST()
96 ADD_FAILURE() << "Unexpected error value"; in TEST()
103 EXPECT_EQ(CE->getV1(), 42) << "Unexpected wrapped value"; in TEST()
105 ADD_FAILURE() << "Unexpected error value"; in TEST()
112 EXPECT_EQ(CSE->getV1(), 42) << "Unexpected wrapped value"; in TEST()
113 EXPECT_EQ(CSE->getV2(), "foo") << "Unexpected wrapped value"; in TEST()
115 ADD_FAILURE() << "Unexpected error value"; in TEST()
168 EXPECT_EQ(SE->toString(), "foo") << "Unexpected StringError value"; in TEST()
/freebsd/crypto/openssl/test/
H A Dparams_conversion_test.c194 TEST_note("unexpected valid conversion to int32 on line %d", line); in param_conversion_test()
200 TEST_note("unexpected conversion to int32 on line %d", line); in param_conversion_test()
206 TEST_note("unexpected valid conversion from int32 on line %d", in param_conversion_test()
214 TEST_note("unexpected valid conversion to int64 on line %d", line); in param_conversion_test()
220 TEST_note("unexpected conversion to int64 on line %d", line); in param_conversion_test()
226 TEST_note("unexpected valid conversion from int64 on line %d", in param_conversion_test()
234 TEST_note("unexpected valid conversion to uint32 on line %d", line); in param_conversion_test()
240 TEST_note("unexpected conversion to uint32 on line %d", line); in param_conversion_test()
246 TEST_note("unexpected valid conversion from uint32 on line %d", in param_conversion_test()
254 TEST_note("unexpected valid conversion to uint64 on line %d", line); in param_conversion_test()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/Xtensa/MCTargetDesc/
H A DXtensaMCCodeEmitter.cpp206 llvm_unreachable("Unexpected operand value!"); in getCallEncoding()
212 assert((MO.isExpr()) && "Unexpected operand value!"); in getCallEncoding()
232 assert((MO.isExpr()) && "Unexpected operand value!"); in getL32RTargetEncoding()
252 report_fatal_error("Unexpected operand value!"); in getMemRegEncoding()
259 report_fatal_error("Unexpected operand value!"); in getMemRegEncoding()
265 assert((isUInt<8>(Res)) && "Unexpected operand value!"); in getMemRegEncoding()
279 assert(((Res >= -128) && (Res <= 127)) && "Unexpected operand value!"); in getImm8OpValue()
292 "Unexpected operand value!"); in getImm8_sh8OpValue()
304 assert(((Res >= -2048) && (Res <= 2047)) && "Unexpected operand value!"); in getImm12OpValue()
316 assert((Res <= 15) && "Unexpected operand value!"); in getUimm4OpValue()
[all …]
/freebsd/crypto/krb5/src/tests/
H A Dt_mkey.py31 fail('Unexpected number of list_mkeys output lines')
39 fail('Unexpected master key version')
41 fail('Unexpected master key enctype')
43 fail('Unexpected presence or absence of mkey activation time')
56 fail('Unexpected mkvno in K/M DB entry')
59 fail('Unexpected number of key lines in K/M DB entry')
67 fail('Unexpected key version in K/M DB entry')
69 fail('Unexpected enctype in K/M DB entry')
79 fail('Unexpected number of lines in stash file klist')
87 fail('Unexpected stash file klist kvno')
[all …]
H A Dt_y2038.py65 fail('unexpected tgt expiration year')
67 fail('unexpected tgt rtill year')
69 fail('unexpected service ticket expiration year')
71 fail('unexpected service ticket rtill year')
75 fail('unexpected renewed tgt expiration year')
77 fail('unexpected renewed tgt rtill year')
/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/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_clone/
H A Dzfs_clone_010_pos.ksh79 typeset unexpected=$2
96 log_fail "$snapshot has unexpected number of clones" \
100 if [[ $unexpected -eq 1 ]]; then
108 "Unexpected clones of the snapshot"
116 "Unexpected clones of the snapshot"
123 "Unexpected clones of the snapshot"
131 done) || log_fail "Unexpected clones" \
223 log_fail "Clone list not truncated correctly. Unexpected character count" \
/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"
57 # target message expected unexpected
H A Dchannel-timeout.sh47 fail "ssh returned unexpected error code $r"
56 fail "ssh returned unexpected error code $r"
65 fail "ssh returned unexpected error code $r"
87 fail "ssh returned unexpected error code $r"
98 fail "ssh returned unexpected error code $r"
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dexpected.cppm
/freebsd/contrib/llvm-project/llvm/lib/Target/CSKY/MCTargetDesc/
H A DCSKYMCCodeEmitter.h57 assert(MO.isExpr() && "Unexpected MO type."); in getImmOpValue()
92 assert(MO.isImm() && "Unexpected MO type."); in getImmShiftOpValue()
107 assert(MO.isExpr() && "Unexpected MO type."); in getBranchSymbolOpValue()
122 assert(MO.isExpr() && "Unexpected MO type."); in getConstpoolSymbolOpValue()
137 assert(MO.isExpr() && "Unexpected MO type."); in getDataSymbolOpValue()
151 assert(MO.isExpr() && "Unexpected MO type."); in getCallSymbolOpValue()
165 assert(MO.isExpr() && "Unexpected MO type."); in getBareSymbolOpValue()
/freebsd/contrib/googletest/googlemock/test/
H A Dgmock_output_test_golden.txt33 Unexpected mock function call - returning default value.
48 Unexpected mock function call - returning directly.
94 Unexpected mock function call - returning default value.
116 Unexpected mock function call - returning default value.
138 Unexpected mock function call - returning default value.
181 Unexpected mock function call - returning default value.
198 Unexpected mock function call - returning default value.
213 Unexpected mock function call - returning default value.
230 Unexpected mock function call - taking default action specified at:
246 Unexpected mock function call - taking default action specified at:
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ShuffleDecodeConstantPool.cpp120 "Unexpected vector size."); in DecodePSHUFBMask()
130 "Unexpected number of vector elements."); in DecodePSHUFBMask()
158 "Unexpected vector size."); in DecodeVPERMILPMask()
159 assert((ElSize == 32 || ElSize == 64) && "Unexpected vector element size."); in DecodeVPERMILPMask()
170 "Unexpected number of vector elements."); in DecodeVPERMILPMask()
195 "Unexpected vector size."); in DecodeVPERMIL2PMask()
206 "Unexpected number of vector elements."); in DecodeVPERMIL2PMask()
249 assert(Width == 128 && Width >= MaskTySize && "Unexpected vector size."); in DecodeVPPERMMask()
258 assert(NumElts == 16 && "Unexpected number of vector elements."); in DecodeVPPERMMask()
/freebsd/sys/contrib/openzfs/module/zfs/
H A Dzcp_iter.c66 "unexpected error %d from dsl_dataset_hold_obj(dsobj)", in zcp_clones_iter()
86 "unexpected error %d from zap_cursor_retrieve()", in zcp_clones_iter()
99 "unexpected error %d from " in zcp_clones_iter()
172 "unexpected error %d from dsl_dataset_hold_obj(dsobj)", in zcp_snapshots_iter()
190 "unexpected error %d from dmu_snapshot_list_next()", err)); in zcp_snapshots_iter()
256 "unexpected error %d from dsl_dataset_hold_obj(dsobj)", in zcp_children_iter()
276 "unexpected error %d from dmu_dir_list_next()", in zcp_children_iter()
514 "unexpected error %d from dsl_dataset_hold_obj(dsobj)", in zcp_bookmarks_iter()
529 "unexpected error %d from zap_lookup()", err)); in zcp_bookmarks_iter()
550 "unexpected error %d from zap_cursor_retrieve()", in zcp_bookmarks_iter()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DCOFFAsmParser.cpp277 assert(Attr != MCSA_Invalid && "unexpected symbol attribute directive!"); in ParseDirectiveSymbolAttribute()
293 return TokError("unexpected token in directive"); in ParseDirectiveSymbolAttribute()
316 return TokError("unexpected token in section switching directive"); in ParseSectionSwitch()
401 return TokError("unexpected token in directive"); in parseSectionArguments()
449 return TokError("unexpected token in directive"); in ParseDirectiveScl()
462 return TokError("unexpected token in directive"); in ParseDirectiveType()
489 return TokError("unexpected token in directive"); in ParseDirectiveSecRel32()
541 return TokError("unexpected token in directive"); in ParseDirectiveSafeSEH()
556 return TokError("unexpected token in directive"); in ParseDirectiveSecIdx()
571 return TokError("unexpected token in directive"); in ParseDirectiveSymIdx()
[all …]
H A DDarwinAsmParser.cpp478 return TokError("unexpected token in section switching directive"); in parseSectionSwitch()
532 return TokError("unexpected token in '.desc' directive"); in parseDirectiveDesc()
540 return TokError("unexpected token in '.desc' directive"); in parseDirectiveDesc()
577 return TokError("unexpected token in '.indirect_symbol' directive"); in parseDirectiveIndirectSymbol()
595 return TokError("unexpected token in '.dump' or '.load' directive"); in parseDirectiveDumpOrLoad()
625 return TokError("unexpected token in '" + Twine(IDVal) + "' directive"); in parseDirectiveLinkerOption()
644 return TokError("unexpected token in '.lsym' directive"); in parseDirectiveLsym()
652 return TokError("unexpected token in '.lsym' directive"); in parseDirectiveLsym()
674 return TokError("unexpected token in '.section' directive"); in parseDirectiveSection()
686 return TokError("unexpected token in '.section' directive"); in parseDirectiveSection()
[all …]
/freebsd/crypto/openssl/util/
H A Dcheck-format-test-positives.c14 * delimiters and parenthesis-like symbols, e.g., on unexpected/unclosed braces.
48 */ /*@ unexpected comment ending delimiter outside comment */
76 } /*@ unexpected closing brace (too many '}') outside expr */
77 ) /*@ unexpected closing paren outside expr */
78 #endif /*@ unexpected #endif */
83 int xx = 1) + /*@ unexpected closing parenthesis */
85 a] - /*@ unexpected closing bracket */
86 3: * /*@ unexpected ':' (without preceding '?') within expr */
87 4}; /*@ unexpected closing brace within expression */
/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}
100 print "\n\nTests with result of PASS that are unexpected:"
105 print "\n\nTests with results other than PASS that are unexpected:"

12345678910>>...77