Home
last modified time | relevance | path

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

12345678910>>...24

/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" line 30: Not empty evaluates to true.
2 make: "cond-op-not.mk" line 39: Not space evaluates to false.
3 make: "cond-op-not.mk" line 44: Not 0 evaluates to true.
4 make: "cond-op-not.mk" line 53: Not 1 evaluates to false.
5 make: "cond-op-not.mk" line 60: Not word evaluates to false.
/freebsd/contrib/googletest/googlemock/test/
H A Dgmock-matchers-misc_test.cc141 EXPECT_THAT(container, Not(IsEmpty())); in TEST()
143 EXPECT_THAT(container, Not(IsEmpty())); in TEST()
150 EXPECT_THAT(text, Not(IsEmpty())); in TEST()
152 EXPECT_THAT(text, Not(IsEmpty())); in TEST()
178 EXPECT_THAT(true, Not(IsFalse())); in TEST()
179 EXPECT_THAT(false, Not(IsTrue())); in TEST()
180 EXPECT_THAT(0, Not(IsTrue())); in TEST()
182 EXPECT_THAT(nullptr, Not(IsTrue())); in TEST()
185 EXPECT_THAT(-1, Not(IsFalse())); in TEST()
187 EXPECT_THAT(1, Not(IsFalse())); in TEST()
[all …]
H A Dgmock-matchers-containers_test.cc145 EXPECT_FATAL_FAILURE(ASSERT_THAT(n, Not(Ref(n))), in TEST()
149 EXPECT_FATAL_FAILURE(ASSERT_THAT(n, Not(Ref(n))), in TEST()
422 m = Field(&AStruct::z, Not(Truly(ValueIsPositive))); in TEST()
719 m = Property(&AClass::x, Not(Ref(x))); in TEST()
1147 EXPECT_THAT(container, Not(SizeIs(1))); in TEST()
1149 EXPECT_THAT(container, Not(SizeIs(0))); in TEST()
1152 EXPECT_THAT(container, Not(SizeIs(0))); in TEST()
1159 EXPECT_THAT(container, Not(SizeIs(1))); in TEST()
1161 EXPECT_THAT(container, Not(SizeIs(0))); in TEST()
1164 EXPECT_THAT(container, Not(SizeIs(0))); in TEST()
[all …]
H A Dgmock-matchers-comparisons_test.cc369 const Matcher<int> not_m1 = Not(m1); in TEST()
380 const Matcher<char> not_m2 = Not(m2); in TEST()
1386 EXPECT_THAT(p, Not(Key(42))); in TEST()
1388 EXPECT_THAT(p, Not(Key(Lt(25)))); in TEST()
1417 EXPECT_THAT(p, Not(Key(42))); in TEST()
1419 EXPECT_THAT(p, Not(Key(Lt(25)))); in TEST()
1430 EXPECT_THAT(p, Not(Key(is_negative))); in TEST()
1439 EXPECT_THAT(container, Not(Contains(Key(3)))); in TEST()
1448 EXPECT_THAT(container, Not(Contains(Key(25)))); in TEST()
1455 EXPECT_THAT(container, Not(Contains(Key(3)))); in TEST()
[all …]
H A Dgmock-matchers-arithmetic_test.cc217 Matcher<float> mf = Not(IsNan()); in TEST()
222 Matcher<double> md = Not(IsNan()); in TEST()
227 Matcher<long double> mld = Not(IsNan()); in TEST()
247 Matcher<float> mf = Not(IsNan()); in TEST()
250 Matcher<double> md = Not(IsNan()); in TEST()
253 Matcher<long double> mld = Not(IsNan()); in TEST()
402 m = Not(Eq(2)); in TEST()
409 Matcher<int> m = Not(Eq(5)); in TEST()
418 Matcher<const int&> m = Not(greater_than_5); in TEST()
419 Matcher<int&> m2 = Not(greater_than_5); 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: Jan 14 22:29:46 2016 GMT
4 Not After : Jan 15 22:29:46 2116 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/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
H A DAmazon_Root_CA_3.pem22 Not Before: May 26 00:00:00 2015 GMT
23 Not After : May 26 00:00:00 2040 GMT
/freebsd/crypto/openssl/test/certs/
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/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
/freebsd/sys/contrib/device-tree/src/powerpc/
H A Dmvme5100.dts117 /* IDSEL 12 - Not Used */
128 /* IDSEL 15 - Not Used */
142 /* IDSEL 18 - Not Used */

12345678910>>...24