Home
last modified time | relevance | path

Searched refs:Not (Results 1 – 25 of 637) sorted by relevance

12345678910>>...26

/freebsd/contrib/bmake/unit-tests/
H A Dcond-op-not.mk30 . info Not empty evaluates to true.
32 . info Not empty evaluates to false.
36 . info Not space evaluates to true.
39 . info Not space evaluates to false.
44 . info Not 0 evaluates to true.
46 . info Not 0 evaluates to false.
50 . info Not 1 evaluates to true.
53 . info Not 1 evaluates to false.
57 . info Not word evaluates to true.
60 . info Not word evaluates to false.
H A Dcond-op-not.exp1 make: cond-op-not.mk:30: Not empty evaluates to true.
2 make: cond-op-not.mk:39: Not space evaluates to false.
3 make: cond-op-not.mk:44: Not 0 evaluates to true.
4 make: cond-op-not.mk:53: Not 1 evaluates to false.
5 make: cond-op-not.mk:60: Not word evaluates to false.
/freebsd/contrib/googletest/googlemock/test/
H A Dgmock-matchers-misc_test.cc142 EXPECT_THAT(container, Not(IsEmpty())); in TEST()
144 EXPECT_THAT(container, Not(IsEmpty())); in TEST()
151 EXPECT_THAT(text, Not(IsEmpty())); in TEST()
153 EXPECT_THAT(text, Not(IsEmpty())); in TEST()
179 EXPECT_THAT(true, Not(IsFalse())); in TEST()
180 EXPECT_THAT(false, Not(IsTrue())); in TEST()
181 EXPECT_THAT(0, Not(IsTrue())); in TEST()
183 EXPECT_THAT(nullptr, Not(IsTrue())); in TEST()
186 EXPECT_THAT(-1, Not(IsFalse())); in TEST()
188 EXPECT_THAT(1, Not(IsFalse())); in TEST()
[all …]
H A Dgmock-matchers-containers_test.cc146 EXPECT_FATAL_FAILURE(ASSERT_THAT(n, Not(Ref(n))), in TEST()
150 EXPECT_FATAL_FAILURE(ASSERT_THAT(n, Not(Ref(n))), in TEST()
423 m = Field(&AStruct::z, Not(Truly(ValueIsPositive))); in TEST()
720 m = Property(&AClass::x, Not(Ref(x))); in TEST()
1148 EXPECT_THAT(container, Not(SizeIs(1))); in TEST()
1150 EXPECT_THAT(container, Not(SizeIs(0))); in TEST()
1153 EXPECT_THAT(container, Not(SizeIs(0))); in TEST()
1160 EXPECT_THAT(container, Not(SizeIs(1))); in TEST()
1162 EXPECT_THAT(container, Not(SizeIs(0))); in TEST()
1165 EXPECT_THAT(container, Not(SizeIs(0))); in TEST()
[all …]
H A Dgmock-matchers-comparisons_test.cc371 const Matcher<int> not_m1 = Not(m1); in TEST()
382 const Matcher<char> not_m2 = Not(m2); in TEST()
1442 EXPECT_THAT(p, Not(Key(42))); in TEST()
1444 EXPECT_THAT(p, Not(Key(Lt(25)))); in TEST()
1473 EXPECT_THAT(p, Not(Key(42))); in TEST()
1475 EXPECT_THAT(p, Not(Key(Lt(25)))); in TEST()
1486 EXPECT_THAT(p, Not(Key(is_negative))); in TEST()
1495 EXPECT_THAT(container, Not(Contains(Key(3)))); in TEST()
1504 EXPECT_THAT(container, Not(Contains(Key(25)))); in TEST()
1511 EXPECT_THAT(container, Not(Contains(Key(3)))); in TEST()
[all …]
H A Dgmock-matchers-arithmetic_test.cc220 Matcher<float> mf = Not(IsNan()); in TEST()
225 Matcher<double> md = Not(IsNan()); in TEST()
230 Matcher<long double> mld = Not(IsNan()); in TEST()
250 Matcher<float> mf = Not(IsNan()); in TEST()
253 Matcher<double> md = Not(IsNan()); in TEST()
256 Matcher<long double> mld = Not(IsNan()); in TEST()
443 EXPECT_THAT(0.2, Not(DistanceFrom(0.5, Le(0.1)))); in TEST()
446 EXPECT_THAT(0.7f, Not(DistanceFrom(0.5f, Le(0.1f)))); in TEST()
453 EXPECT_THAT(0.2, Not(DistanceFrom(0.5, Le(0.1f)))); in TEST()
456 EXPECT_THAT(0.2, Not(DistanceFrom(0.5f, Le(0.1)))); in TEST()
[all …]
/freebsd/lib/libfetch/
H A Dhttp.errors17 304 OK Not Modified
25 404 UNAVAIL Not Found
26 405 PROTO Method Not Allowed
27 406 PROTO Not Acceptable
37 416 UNAVAIL Requested Range Not Satisfiable
40 501 PROTO Not Implemented
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyLogical.h27 Not enumerator
82 class Not : public LExpr {
86 Not(LExpr *Exp) : LExpr(LExpr::Not), Exp(Exp) {} in Not() function
91 static bool classof(const LExpr *E) { return E->kind() == LExpr::Not; } in classof()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstCombineIntrinsic.cpp695 auto Not = [&](auto V) -> std::pair<Value *, uint8_t> { in simplifyTernarylogic() local
698 auto Nor = [&](auto Lhs, auto Rhs) { return Not(Or(Lhs, Rhs)); }; in simplifyTernarylogic()
699 auto Xnor = [&](auto Lhs, auto Rhs) { return Not(Xor(Lhs, Rhs)); }; in simplifyTernarylogic()
700 auto Nand = [&](auto Lhs, auto Rhs) { return Not(And(Lhs, Rhs)); }; in simplifyTernarylogic()
768 Res = Nor(A, Not(C)); in simplifyTernarylogic()
772 Res = Nor(A, Nor(C, Not(B))); in simplifyTernarylogic()
776 Res = Nor(A, Not(B)); in simplifyTernarylogic()
780 Res = Nor(A, Nor(B, Not(C))); in simplifyTernarylogic()
787 Res = Not(A); in simplifyTernarylogic()
863 Res = Nor(B, Not(C)); in simplifyTernarylogic()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DThreadSafetyLogical.cpp58 case LExpr::Not: in implies()
61 return implies(LHS, LNeg, cast<Not>(RHS)->exp(), !RNeg); in implies()
83 case LExpr::Not: in implies()
86 return implies(cast<Not>(LHS)->exp(), !LNeg, RHS, RNeg); in implies()
/freebsd/sys/fs/cd9660/
H A DTODO30 Not yet.
34 Not yet. we need not only a technical spec but also ECMA format
39 Not yet. We should also hack the other part of system as 8 bit
/freebsd/crypto/openssl/test/recipes/80-test_cmp_http_data/Mock/
H A Dtrusted.crt3 Not Before: Jan 14 22:29:05 2016 GMT
4 Not After : Jan 15 22:29:05 2116 GMT
H A Dserver.crt3 Not Before: Aug 8 13:28:36 2024 GMT
4 Not After : Apr 11 13:28:36 2127 GMT
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/
H A Dtst.Enable.ksh.out1 java.lang.IllegalStateException: Not all compiled probes are enabled. Compiled description dtrace::…
4 java.lang.IllegalStateException: Not all compiled probes are enabled. Compiled description syscall:…
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyFastISel.cpp165 unsigned getRegForI1Value(const Value *V, const BasicBlock *BB, bool &Not);
428 bool &Not) { in getRegForI1Value() argument
433 Not = ICmp->isTrueWhenEqual(); in getRegForI1Value()
437 Not = false; in getRegForI1Value()
915 bool Not; in selectSelect() local
917 getRegForI1Value(Select->getCondition(), I->getParent(), Not); in selectSelect()
929 if (Not) in selectSelect()
1107 bool Not = false; in selectFCmp() local
1129 Not = true; in selectFCmp()
1133 Not = true; in selectFCmp()
[all …]
/freebsd/share/examples/jails/
H A DVIMAGE27 # NB: Not strictly necessary; will load automatically via KLD when needed
39 # NB: Not strictly necessary; will load automatically via KLD when needed
/freebsd/crypto/openssl/test/certs/
H A Dtab-in-dn.text9 Not Before: Feb 28 10:34:19 2025 GMT
10 Not After : Feb 4 10:34:19 2125 GMT
H A Droot-ed25519.pem9 Not Before: Apr 19 21:36:39 2017 GMT
10 Not After : Nov 11 15:37:05 2122 GMT
H A Dee-ed25519.pem8 Not Before: Aug 1 12:19:24 2016 GMT
9 Not After : Nov 11 16:34:03 2121 GMT
/freebsd/secure/caroot/trusted/
H A DEntrust_Root_Certification_Authority.pem21 Not Before: Nov 27 20:23:42 2006 GMT
22 Not After : Nov 27 20:53:42 2026 GMT
53 Not Before: Nov 27 20:23:42 2006 GMT, Not After: Nov 27 20:53:42 2026 GMT
/freebsd/sys/contrib/device-tree/src/arm64/apple/
H A Dt8010.dtsi121 status = "disabled"; /* Not available on N112 */
127 status = "disabled"; /* Not available on N112 */
130 /* Not available until CPU deep sleep is implemented */
136 status = "disabled"; /* Not available on N112 */
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dlibomp.rc.var44 // VALUE "LegalTrademarks", "\0" // Not used for now.
58 // VALUE "SpecialBuild", "\0" // Not used for now.
/freebsd/sys/contrib/device-tree/Bindings/net/can/
H A Dtcan4x5x.txt27 a sleep state or if the device is active. Not
29 - device-wake-gpios: Wake up GPIO to wake up the TCAN device. Not
/freebsd/crypto/openssl/test/recipes/25-test_rusext_data/
H A Dgrfc.utf89 Not Before: Mar 12 07:38:26 2013 GMT
10 Not After : Mar 12 07:46:00 2028 GMT
/freebsd/contrib/tcsh/nls/C/
H A Dset150 48 Not in while/foreach
74 72 Not a login shell
113 111 Not that many scheduled events

12345678910>>...26