Home
last modified time | relevance | path

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

12345678910>>...24

/freebsd-14.2/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.
H A Ddirective-for.exp21 make: "directive-for.mk" line 197: XXX: Not reached word1
22 make: "directive-for.mk" line 197: XXX: Not reached word3
/freebsd-14.2/contrib/googletest/googlemock/test/
H A Dgmock-matchers-misc_test.cc150 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()
185 EXPECT_THAT(-1, Not(IsFalse())); in TEST()
187 EXPECT_THAT(1, Not(IsFalse())); in TEST()
189 EXPECT_THAT(2, Not(IsFalse())); in TEST()
192 EXPECT_THAT(a, Not(IsFalse())); in TEST()
194 EXPECT_THAT(&a, Not(IsFalse())); in TEST()
[all …]
H A Dgmock-matchers-containers_test.cc719 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()
1171 EXPECT_THAT(container, Not(m)); in TEST()
2163 Matcher<vector<int>> m2 = Not(m); in TEST()
2208 EXPECT_THAT(a, Not(Each(Gt(1)))); in TEST()
2492 EXPECT_THAT(p, Not(Pointee(Eq(2)))); in TEST()
3075 Matcher<vector<int>> m2 = Not(m); 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()
1479 Matcher<const pair<int, int>&> m2 = Not(Pair(Not(13), 42)); in TEST()
1535 EXPECT_THAT(p, Not(Pair(42, "foo"))); in TEST()
1539 EXPECT_THAT(p, Not(Pair(25, "bar"))); in TEST()
1540 EXPECT_THAT(p, Not(Pair(25, Not("foo")))); 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()
419 Matcher<int&> m2 = Not(greater_than_5); in TEST()
420 Matcher<int&> m3 = Not(m); in TEST()
[all …]
/freebsd-14.2/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-14.2/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-14.2/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstCombineIntrinsic.cpp655 Res = Nor(A, Not(C)); in simplifyTernarylogic()
663 Res = Nor(A, Not(B)); in simplifyTernarylogic()
674 Res = Not(A); in simplifyTernarylogic()
817 Res = Not(B); in simplifyTernarylogic()
951 Res = Not(C); in simplifyTernarylogic()
1306 Res = Or(C, Not(A)); in simplifyTernarylogic()
1354 Res = Or(C, Not(B)); in simplifyTernarylogic()
1432 Res = Or(B, Not(A)); in simplifyTernarylogic()
1488 Res = Or(B, Not(C)); in simplifyTernarylogic()
1574 Res = Or(A, Not(B)); in simplifyTernarylogic()
[all …]
/freebsd-14.2/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-14.2/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-14.2/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-14.2/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-14.2/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-14.2/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyFastISel.cpp433 Not = false; in getRegForI1Value()
912 bool Not; in selectSelect() local
926 if (Not) in selectSelect()
1100 bool Not = false; in selectFCmp() local
1122 Not = true; in selectFCmp()
1126 Not = true; in selectFCmp()
1130 Not = true; in selectFCmp()
1134 Not = true; in selectFCmp()
1145 if (Not) in selectFCmp()
1313 bool Not; in selectBr() local
[all …]
/freebsd-14.2/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-14.2/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/
H A DFormula.h58 Not, /// True if its only operand is false in alignas() enumerator
108 case Not: in alignas()
/freebsd-14.2/crypto/openssl/test/certs/
H A Dee-ed25519.pem8 Not Before: Aug 1 12:19:24 2016 GMT
9 Not After : Nov 11 16:34:03 2121 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
/freebsd-14.2/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-14.2/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-14.2/sys/contrib/device-tree/src/powerpc/
H A Dmvme5100.dts117 /* IDSEL 12 - Not Used */
128 /* IDSEL 15 - Not Used */
142 /* IDSEL 18 - Not Used */
/freebsd-14.2/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>>...24