/freebsd/contrib/googletest/googletest/src/ |
H A D | gtest-assertion-result.cc | 60 AssertionResult negation(!success_); in operator !() local 61 if (message_ != nullptr) negation << *message_; in operator !() 62 return negation; in operator !()
|
/freebsd/contrib/bmake/unit-tests/ |
H A D | directive-ifmake.mk | 26 . info ok: negation works 36 . info ok: double negation works 38 . warning double negation fails
|
H A D | directive-ifmake.exp | 2 make: "directive-ifmake.mk" line 26: ok: negation works 3 make: "directive-ifmake.mk" line 36: ok: double negation works
|
H A D | directive-include-guard.mk | 106 CASES+= variable-if-triple-negation 107 LINES.variable-if-triple-negation= \
|
/freebsd/contrib/googletest/googlemock/include/gmock/ |
H A D | gmock-more-matchers.h | 101 MATCHER(IsTrue, negation ? "is false" : "is true") { 109 MATCHER(IsFalse, negation ? "is true" : "is false") {
|
H A D | gmock-actions.h | 273 struct negation 457 internal::negation<std::is_same< 474 internal::negation<std::is_same< 478 internal::negation<IsDirectlyCompatible<Callable>>, 935 negation<std::is_same<void, U>>, // 936 negation<std::is_reference<U>>, // 946 negation<std::is_same<void, U>>, // 947 negation<std::is_reference<U>>, //
|
H A D | gmock-spec-builders.h | 1750 internal::negation<std::is_void<T>>, 1772 internal::negation<can_print_result<T>>::value, int>::type = 0>
|
H A D | gmock-matchers.h | 3877 bool negation, const char* matcher_name, 5085 std::string DescribeMatcher(const M& matcher, bool negation = false) { 5088 if (negation) { 5467 ::std::string FormatDescription(bool negation) const { \ 5473 return ::testing::internal::FormatMatcherDescription(negation, #name, \ 5548 ::std::string FormatDescription(bool negation) const { \ 5555 negation, #name, {GMOCK_PP_REMOVE_PARENS(arg_names)}, \
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | Any.h | 74 std::negation<std::is_same<std::decay_t<T>, Any>>, 85 std::negation<std::is_convertible<Any, std::decay_t<T>>>,
|
/freebsd/contrib/llvm-project/libcxx/include/__type_traits/ |
H A D | negation.h | 26 struct negation : _Not<_Tp> {}; struct
|
/freebsd/contrib/googletest/googlemock/src/ |
H A D | gmock-matchers.cc | 53 bool negation, const char* matcher_name, in FormatMatcherDescription() argument 59 return negation ? "not (" + result + ")" : result; in FormatMatcherDescription()
|
/freebsd/sys/contrib/xz-embedded/linux/lib/xz/ |
H A D | Kconfig | 47 been replaced with a bitwise-negation of the lc/lp/pb
|
/freebsd/sys/contrib/device-tree/Bindings/spi/ |
H A D | fsl-spi.txt | 49 - fsl,csaft: chip select negation time in bits after frame ends
|
/freebsd/sys/contrib/device-tree/Bindings/memory-controllers/ |
H A D | mvebu-devbus.txt | 52 - devbus,acc-first-ps: Defines the time delay from the negation of 85 - devbus,ale-wr-ps: Defines the time delay from the ALE[0] negation cycle
|
/freebsd/contrib/googletest/googletest/include/gtest/ |
H A D | gtest-matchers.h | 319 void (*describe)(const MatcherBase&, std::ostream*, bool negation); 348 bool negation) { in DescribeImpl() argument 349 if (negation) { in DescribeImpl()
|
/freebsd/contrib/googletest/docs/reference/ |
H A D | matchers.md | 273 | `MATCHER_P2(IsBetween, a, b, absl::StrCat(negation ? "isn't" : "is", " between ", PrintToString(a… 296 "X that " + DescribeMatcher<int>(matcher, negation) + 297 (negation ? " or" : " and") + " Y that " + 298 DescribeMatcher<double>(matcher, negation)) {
|
/freebsd/contrib/googletest/googlemock/test/ |
H A D | gmock-actions_test.cc | 70 internal::negation<std::true_type>>::value, in TEST() 74 internal::negation<std::false_type>>::value, in TEST() 81 internal::negation<std::integral_constant<int, 0>>>::value, in TEST() 86 internal::negation<std::integral_constant<int, 1>>>::value, in TEST() 91 internal::negation<std::integral_constant<int, -1>>>::value, in TEST()
|
H A D | gmock-matchers-misc_test.cc | 1013 MATCHER(IsEven2, negation ? "is odd" : "is even") { 1028 std::string(negation ? "doesn't equal" : "equals") + " the sum of " +
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | type_traits | 412 template<class B> struct negation; // C++17 414 inline constexpr bool negation_v = negation<B>::value; // C++17 505 # include <__type_traits/negation.h>
|
/freebsd/contrib/ldns/ |
H A D | str2host.c | 481 bool negation; in ldns_str2rdf_apl() local 499 negation = true; in ldns_str2rdf_apl() 502 negation = false; in ldns_str2rdf_apl() 568 if (negation) { in ldns_str2rdf_apl()
|
H A D | host2str.c | 974 bool negation; in ldns_rdf2buffer_str_apl() local 984 negation = data[pos + 3] & LDNS_APL_NEGATION; in ldns_rdf2buffer_str_apl() 988 if (negation) { in ldns_rdf2buffer_str_apl() 1009 if (negation) { in ldns_rdf2buffer_str_apl()
|
/freebsd/contrib/unbound/sldns/ |
H A D | str2wire.c | 1851 int negation; in sldns_str2wire_apl_buf() local 1872 negation = 1; in sldns_str2wire_apl_buf() 1875 negation = 0; in sldns_str2wire_apl_buf() 1918 if (negation) { in sldns_str2wire_apl_buf()
|
H A D | wire2str.c | 1492 uint8_t negation, prefix, adflength; in sldns_wire2str_apl_scan() local 1496 negation = ((*d)[3] & LDNS_APL_NEGATION); in sldns_wire2str_apl_scan() 1501 if(negation) in sldns_wire2str_apl_scan()
|
/freebsd/contrib/llvm-project/libcxx/modules/std/ |
H A D | type_traits.cppm |
|
/freebsd/contrib/bc/gen/ |
H A D | bc_help.txt | 56 unary minus (-), or negation, operator. This still allows POSIX-compliant
|