Searched refs:Failed (Results 1 - 25 of 69) sorted by relevance

123

/freebsd-13-stable/contrib/bmake/unit-tests/
H A Dopt-debug-errors.exp4 *** Failed target: fail-spaces
5 *** Failed command: echo '3 spaces'; false
10 *** Failed target: fail-escaped-space
11 *** Failed command: echo \ indented; false
18 *** Failed target: fail-newline
19 *** Failed command: echo 'line1 line2'; false
24 *** Failed target: fail-multiline
25 *** Failed command: echo 'line1 line2'; false
30 *** Failed target: fail-multiline-intention
31 *** Failed comman
[all...]
/freebsd-13-stable/tools/tools/git/
H A Dgit-svn-rebase56 echo Failed branches: $FAIL
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Lex/
H A DPreprocessorOptions.h158 llvm::StringSet<> Failed; member in class:clang::PreprocessorOptions::FailedModulesSet
162 return Failed.count(module) > 0;
166 Failed.insert(module);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DCrashRecoveryContext.cpp39 volatile unsigned Failed : 1; member in struct:__anon3783::CrashRecoveryContextImpl
45 : CRC(CRC), Failed(false), SwitchedThread(false), ValidJumpBuffer(false) {
71 assert(!Failed && "Crash recovery context already failed!");
72 Failed = true;
H A DFormatVariadic.cpp53 bool Failed = Spec.consumeInteger(0, Align); local
54 return !Failed;
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DConstantEmitter.h38 bool Failed = false; member in class:clang::CodeGen::ConstantEmitter
163 Failed = true;
/freebsd-13-stable/contrib/llvm-project/clang/tools/driver/
H A Dcc1as_main.cpp502 bool Failed = false; local
511 Failed = Diags.Report(diag::err_target_unknown_triple) << Opts.Triple;
524 if (!Failed) {
526 Failed = Parser->Run(Opts.NoInitialTextSection);
537 if (Failed) {
544 return Failed;
612 bool Failed = Diags.hasErrorOccurred() || ExecuteAssembler(Asm, Diags); local
619 return !!Failed;
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteClientBase.h133 enum class LockResult { Success, Cancelled, Failed };
H A DGDBRemoteClientBase.cpp125 case ContinueLock::LockResult::Failed:
327 return LockResult::Failed;
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_flag_parser.cpp160 Printf("Failed to read options from '%s': error %d\n", path, err);
/freebsd-13-stable/contrib/googletest/googletest/samples/
H A Dsample9_unittest.cc144 if (test_info.result()->Failed() &&
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Testing/Support/
H A DError.h174 MATCHER(Failed, "") { return !arg.Success(); }
177 testing::Matcher<const detail::ErrorHolder &> Failed() { function in namespace:llvm
182 testing::Matcher<const detail::ErrorHolder &> Failed(M Matcher) { function in namespace:llvm
/freebsd-13-stable/usr.bin/chat/
H A Dchat.c839 chat_logf("Failed (%s)", fail_reason);
841 chat_logf("Failed");
1019 fatal(1, "Failed");
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeTypes.cpp84 bool Failed = false; local
137 Failed = true;
142 Failed = true;
147 Failed = true;
150 Failed = true;
154 if (Failed) {
451 bool Failed = false; local
459 Failed = true;
468 Failed = true;
480 Failed
[all...]
/freebsd-13-stable/contrib/googletest/googletest/test/
H A Dgtest-unittest-api_test.cc243 EXPECT_FALSE(unit_test->Failed());
256 EXPECT_FALSE(test_cases[0]->Failed());
275 EXPECT_FALSE(test_cases[2]->Failed());
H A Dgoogletest-listener-test.cc307 if (UnitTest::GetInstance()->Failed())
/freebsd-13-stable/crypto/heimdal/tools/
H A Dkdc-log-analyze.pl424 } elsif (/Failed processing [0-9]+ byte request from IPv[46]:([0-9\.:a-fA-F]+)/) {
464 } elsif (/Failed to decrypt PA-DATA -- (.+)$/) {
490 } elsif (/Failed to verify AP-REQ: Ticket expired/) {
/freebsd-13-stable/contrib/llvm-project/lldb/source/DataFormatters/
H A DStringPrinter.cpp185 "Failed to convert legal utf8 sequence");
/freebsd-13-stable/contrib/apr-util/test/
H A DMakefile.win163 echo Testing dbd sqlite2 && $(OUTDIR)\dbd.exe sqlite2 || echo Failed
164 echo Testing dbd sqlite3 && $(OUTDIR)\dbd.exe sqlite3 || echo Failed
/freebsd-13-stable/stand/lua/
H A Dconfig.lua42 local MSG_FAILDIR = "Failed to load conf dir '%s': not a directory"
43 local MSG_FAILEXEC = "Failed to exec '%s'"
44 local MSG_FAILSETENV = "Failed to '%s' with value: %s"
45 local MSG_FAILOPENCFG = "Failed to open config: '%s'"
46 local MSG_FAILREADCFG = "Failed to read config: '%s'"
47 local MSG_FAILPARSECFG = "Failed to parse config: '%s'"
48 local MSG_FAILPARSEVAR = "Failed to parse variable '%s': %s"
49 local MSG_FAILEXBEF = "Failed to execute '%s' before loading '%s'"
50 local MSG_FAILEXAF = "Failed to execute '%s' after loading '%s'"
53 local MSG_KERNFAIL = "Failed t
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DStore.cpp316 bool &Failed) {
317 Failed = false;
393 Failed = isa<TypedValueRegion>(MR);
315 attemptDownCast(SVal Base, QualType TargetType, bool &Failed) argument
H A DExprEngineC.cpp455 bool Failed = false; local
459 Failed = true;
462 val = getStoreManager().attemptDownCast(val, T, Failed);
464 if (Failed) {
494 bool Failed = false; local
497 val = getStoreManager().attemptDownCast(val, T, Failed);
500 // Failed to cast or the result is unknown, fall back to conservative.
501 if (Failed || val.isUnknown()) {
/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/Transformer/
H A DSourceCode.cpp302 bool Failed = Lexer::getRawToken(Loc, Tok, SM, LangOpts, local
304 if (Failed)
/freebsd-13-stable/usr.sbin/bsdinstall/scripts/
H A Dauto325 bsdinstall mount || error "Failed to mount filesystem"
329 bsdinstall mount || error "Failed to mount filesystem"
343 bsdinstall mount || error "Failed to mount filesystem"
393 msg="Failed to fetch remote distribution"
420 error "Failed to fetch distribution from local media"
427 bsdinstall bootconfig || error "Failed to configure bootloader"
499 bsdinstall config || error "Failed to save config"
/freebsd-13-stable/contrib/googletest/googletest/src/
H A Dgtest-internal-inl.h576 bool Passed() const { return !Failed(); }
580 bool Failed() const { function in class:testing::internal::UnitTestImpl
581 return failed_test_case_count() > 0 || ad_hoc_test_result()->Failed();
667 << "Failed to get the current working directory.";

Completed in 317 milliseconds

123