Home
last modified time | relevance | path

Searched refs:IsFalse (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/googletest/googlemock/test/
H A Dgmock-matchers-misc_test.cc178 EXPECT_THAT(false, IsFalse()); in TEST()
179 EXPECT_THAT(true, Not(IsFalse())); in TEST()
182 EXPECT_THAT(0, IsFalse()); in TEST()
184 EXPECT_THAT(nullptr, IsFalse()); in TEST()
186 EXPECT_THAT(-1, Not(IsFalse())); in TEST()
188 EXPECT_THAT(1, Not(IsFalse())); in TEST()
190 EXPECT_THAT(2, Not(IsFalse())); in TEST()
193 EXPECT_THAT(a, Not(IsFalse())); in TEST()
195 EXPECT_THAT(&a, Not(IsFalse())); in TEST()
197 EXPECT_THAT(true, Not(IsFalse())); in TEST()
[all …]
/freebsd/contrib/googletest/googlemock/include/gmock/
H A Dgmock-more-matchers.h109 MATCHER(IsFalse, negation ? "is true" : "is false") {
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonConstPropagation.cpp1108 bool IsTrue = true, IsFalse = true; in evaluateCMPrr() local
1116 IsFalse &= !Res; in evaluateCMPrr()
1118 assert(!IsTrue || !IsFalse); in evaluateCMPrr()
1122 return IsTrue || IsFalse; in evaluateCMPrr()
1136 bool IsTrue = true, IsFalse = true; in evaluateCMPri() local
1144 IsFalse &= !Res; in evaluateCMPri()
1146 assert(!IsTrue || !IsFalse); in evaluateCMPri()
1150 return IsTrue || IsFalse; in evaluateCMPri()
1165 bool IsTrue = true, IsFalse = true; in evaluateCMPrp() local
1173 IsFalse &= !Res; in evaluateCMPrp()
[all …]
H A DHexagonISelLoweringHVX.cpp1104 auto IsFalse = [] (SDValue V) { in buildHvxVectorPred() local
1118 AllF &= IsFalse(V); in buildHvxVectorPred()
1138 AllF &= IsFalse(F); in buildHvxVectorPred()
/freebsd/contrib/googletest/docs/reference/
H A Dmatchers.md44 | `IsFalse()` | `argument` evaluates to `false` in a Boolean context. |
62 `IsTrue` and `IsFalse` are useful when you need to use a matcher, or for types
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenFunction.cpp1648 llvm::Value *IsFalse = Builder.getFalse(); in GenerateCode() local
1649 EmitCheck(std::make_pair(IsFalse, CheckOrdinal), CheckHandler, in GenerateCode()