Searched refs:Failed (Results 26 - 50 of 69) sorted by relevance

123

/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DInitialization.h1182 explicit operator bool() const { return !Failed(); }
1185 bool Failed() const { return SequenceKind == FailedSequence; } function in class:clang::InitializationSequence
1380 assert(Failed() && "Not an initialization failure!");
/freebsd-13-stable/contrib/googletest/googletest/include/gtest/
H A Dgtest.h580 bool Passed() const { return !Skipped() && !Failed(); }
586 bool Failed() const;
885 bool Passed() const { return !Failed(); }
888 bool Failed() const { return failed_test_count() > 0; } function in class:testing::TestCase
955 return test_info->should_run() && test_info->result()->Failed();
1308 bool Failed() const;
1878 #define ADD_FAILURE() GTEST_NONFATAL_FAILURE_("Failed")
1883 GTEST_MESSAGE_AT_(file, line, "Failed", \
1887 #define GTEST_FAIL() GTEST_FATAL_FAILURE_("Failed")
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlanSLP.cpp263 return {OpMode::Failed, nullptr};
330 if (Mode[Op] == OpMode::Failed)
H A DLoopVectorizationLegality.cpp245 bool Failed = false; local
254 Failed = true;
272 Failed = true;
275 return Failed;
/freebsd-13-stable/contrib/googletest/googletest/test/
H A Dgoogletest-test-part-test.cc150 TEST_F(TestPartResultTest, Failed) {
H A Dgtest_unittest.cc1441 // Tests TestResult::Failed().
1442 TEST_F(TestResultTest, Failed) {
1443 ASSERT_FALSE(r0->Failed());
1444 ASSERT_FALSE(r1->Failed());
1445 ASSERT_TRUE(r2->Failed());
4685 EXPECT_NONFATAL_FAILURE(ADD_FAILURE_AT("foo.cc", 42), "Failed");
4696 "Failed");
7788 EXPECT_TRUE(test_result.Failed());
7794 EXPECT_FALSE(test_result.Failed());
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DStore.h170 /// - Failed cast (ex: derived is definitely not a subclass of base).
176 /// valid only if Failed flag is set to false.
177 SVal attemptDownCast(SVal Base, QualType DerivedPtrType, bool &Failed);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DYAMLParser.cpp280 if (!Failed)
282 Failed = true;
287 return Failed;
538 bool Failed; member in class:llvm::yaml::Scanner
774 Failed = false;
1232 Failed = true;
/freebsd-13-stable/contrib/llvm-project/clang/lib/Serialization/
H A DGlobalModuleIndex.cpp350 bool Failed = true; local
356 Failed = false;
361 return Failed;
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DIntrinsicEmitter.cpp508 bool Failed = false; local
513 Failed = true;
520 if (!Failed && (Result >> 31) == 0) {
/freebsd-13-stable/sys/tools/
H A Dmakesyscalls.lua108 io.stderr:write("Failed to clean up tmpdir: " ..
308 abort(1, "Failed to open " .. file)
498 print("Failed to open " .. file)
518 abort(1, "Failed to handle: " .. nextline)
1175 abort(1, "Failed to create tempdir " .. tmpspace)
1385 abort(1, "Failed to open '" .. target .. "'")
/freebsd-13-stable/contrib/llvm-project/clang/lib/Lex/
H A DModuleMap.cpp2727 bool Failed = false; local
2732 Failed = true;
2737 if (!Failed && ActiveModule->IsAvailable &&
2740 Failed = true;
2744 if (!Failed && ActiveModule->InferSubmodules) {
2749 Failed = true;
2763 if (Failed) {
/freebsd-13-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseTemplate.cpp450 bool Failed = false;
454 Failed = ParseTemplateParameterList(Depth, TemplateParams);
466 } else if (!TryConsumeToken(tok::greater, RAngleLoc) && Failed) {
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCallEvent.cpp805 bool Failed; local
806 ThisVal = StateMgr.getStoreManager().attemptDownCast(ThisVal, Ty, Failed);
807 if (Failed) {
/freebsd-13-stable/contrib/googletest/googletest/src/
H A Dgtest.cc394 return test_case->should_run() && test_case->Failed();
2222 return !Failed() && CountIf(test_part_results_, TestPartSkipped) > 0;
2226 bool TestResult::Failed() const { function in class:testing::TestResult
3243 if (test_info.result()->Failed())
3288 if (!test_info.should_run() || !test_info.result()->Failed()) {
4465 GTEST_LOG_(ERROR) << "Failed to remove premature exit filepath \""
4656 bool UnitTest::Failed() const { return impl()->Failed(); } function in class:testing::UnitTest
/freebsd-13-stable/contrib/bmake/mk/
H A Dmeta.autodep.mk310 @echo "${TIME_STAMP} Failed ${RELDIR}.${TARGET_SPEC} seconds=$$(( ${now_utc} - ${start_utc} )) ${meta_stats}"
/freebsd-13-stable/share/mk/
H A Dmeta.autodep.mk311 @echo "${TIME_STAMP} Failed ${RELDIR}.${TARGET_SPEC} seconds=$$(( ${now_utc} - ${start_utc} )) ${meta_stats}"
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprCXX.cpp172 bool Failed = false;
235 Failed = true;
252 if (Failed || SearchType.isNull())
266 if (Failed)
276 Failed = true;
284 if (Failed || !S)
351 if (Failed)
5144 if (Init.Failed())
5350 if (Init.Failed())
5804 HaveConversion = !InitSeq.Failed();
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp5578 bool Failed = false;
5582 bool failed() { return Failed; }
5607 Failed = !getDefaultInitValue(Field->getType(), Result);
11712 bool Failed;
11714 EvalResult() : Failed(false) { }
11718 Failed = RHS.Failed;
11719 RHS.Failed = false;
11766 if (PrevResult.Failed) return false;
11798 Result.Failed
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DDeclCXX.h3799 SourceLocation RParenLoc, bool Failed)
3801 AssertExprAndFailed(AssertExpr, Failed), Message(Message),
3812 SourceLocation RParenLoc, bool Failed);
3797 StaticAssertDecl(DeclContext *DC, SourceLocation StaticAssertLoc, Expr *AssertExpr, StringLiteral *Message, SourceLocation RParenLoc, bool Failed) argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DModuloSchedule.cpp1312 assert(FirstMI && "Failed to find first MI in schedule");
1491 // Failed to find any existing phi to reuse, so create a new one.
2059 bool Failed = false; local
2063 Failed = true;
2072 if (Failed) {
/freebsd-13-stable/crypto/heimdal/include/
H A DMakefile.in967 echo "* Failed to install $$x setuid root"; \
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AsmParser/
H A DAMDGPUAsmParser.cpp5058 bool Failed = false;
5065 Failed = true;
5068 return Failed;
5087 bool Failed = true;
5091 Failed = encodeCnt(ISA, IntVal, CntVal, Sat, encodeVmcnt, decodeVmcnt);
5093 Failed = encodeCnt(ISA, IntVal, CntVal, Sat, encodeExpcnt, decodeExpcnt);
5095 Failed = encodeCnt(ISA, IntVal, CntVal, Sat, encodeLgkmcnt, decodeLgkmcnt);
5101 if (Failed) {
/freebsd-13-stable/stand/lua/
H A Ddrawer.lua71 return false, "Failed to include gfx-" .. gfxname
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DVerifier.cpp2452 Assert(Scope, "Failed to find DILocalScope", DL);
5590 bool Failed = false; local
5605 Failed = true;
5613 Failed = true;
5624 Failed = true;
5638 Failed = true;
5648 Failed = true;
5654 return Failed ? InvalidNode

Completed in 513 milliseconds

123