/third_party/boost/libs/type_traits/doc/ |
D | negation.qbk | 10 [section:negation negation] 13 struct negation 18 __header `#include <boost/type_traits/negation.hpp>` 24 [:`negation<__true_type>` inherits from `__false_type`.] 26 [:`negation<__false_type>` inherits from `__true_type`.] 28 [:`negation<__integral_constant<int, 4> >::type` is the type `__false_type`.] 30 [:`negation<__integral_constant<int, 0> >::value` is an integral constant 33 [:`negation<T>::value_type` is the type `bool`.]
|
/third_party/skia/third_party/externals/abseil-cpp/absl/status/ |
D | statusor.h | 232 absl::negation<std::is_same<T, U>>, 235 absl::negation< 245 absl::negation<std::is_same<T, U>>, 247 absl::negation<std::is_convertible<const U&, T>>, 248 absl::negation< 259 absl::negation<std::is_same<T, U>>, std::is_constructible<T, U&&>, 261 absl::negation< 271 absl::negation<std::is_same<T, U>>, std::is_constructible<T, U&&>, 272 absl::negation<std::is_convertible<U&&, T>>, 273 absl::negation< [all …]
|
/third_party/abseil-cpp/absl/status/ |
D | statusor.h | 222 absl::negation<std::is_same<T, U>>, 225 absl::negation< 235 absl::negation<std::is_same<T, U>>, 237 absl::negation<std::is_convertible<const U&, T>>, 238 absl::negation< 249 absl::negation<std::is_same<T, U>>, std::is_constructible<T, U&&>, 251 absl::negation< 261 absl::negation<std::is_same<T, U>>, std::is_constructible<T, U&&>, 262 absl::negation<std::is_convertible<U&&, T>>, 263 absl::negation< [all …]
|
/third_party/spirv-tools/source/opt/ |
D | scalar_analysis_simplification.cpp | 96 bool negation); 103 bool AccumulatorsFromMultiply(SENode* multiply, bool negation); 153 bool negation) { in AccumulatorsFromMultiply() argument 184 int64_t sign = negation ? -1 : 1; in AccumulatorsFromMultiply() 245 bool negation) { in GatherAccumulatorsFromChildNodes() argument 246 int32_t sign = negation ? -1 : 1; in GatherAccumulatorsFromChildNodes() 268 if (!AccumulatorsFromMultiply(child, negation)) { in GatherAccumulatorsFromChildNodes() 274 GatherAccumulatorsFromChildNodes(new_node, next_child, negation); in GatherAccumulatorsFromChildNodes() 279 GatherAccumulatorsFromChildNodes(new_node, negated_node, !negation); in GatherAccumulatorsFromChildNodes() 384 bool negation = false; in FoldRecurrentAddExpressions() local [all …]
|
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
D | scalar_analysis_simplification.cpp | 96 bool negation); 103 bool AccumulatorsFromMultiply(SENode* multiply, bool negation); 153 bool negation) { in AccumulatorsFromMultiply() argument 184 int64_t sign = negation ? -1 : 1; in AccumulatorsFromMultiply() 245 bool negation) { in GatherAccumulatorsFromChildNodes() argument 246 int32_t sign = negation ? -1 : 1; in GatherAccumulatorsFromChildNodes() 268 if (!AccumulatorsFromMultiply(child, negation)) { in GatherAccumulatorsFromChildNodes() 274 GatherAccumulatorsFromChildNodes(new_node, next_child, negation); in GatherAccumulatorsFromChildNodes() 279 GatherAccumulatorsFromChildNodes(new_node, negated_node, !negation); in GatherAccumulatorsFromChildNodes() 384 bool negation = false; in FoldRecurrentAddExpressions() local [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
D | scalar_analysis_simplification.cpp | 96 bool negation); 103 bool AccumulatorsFromMultiply(SENode* multiply, bool negation); 153 bool negation) { in AccumulatorsFromMultiply() argument 184 int64_t sign = negation ? -1 : 1; in AccumulatorsFromMultiply() 245 bool negation) { in GatherAccumulatorsFromChildNodes() argument 246 int32_t sign = negation ? -1 : 1; in GatherAccumulatorsFromChildNodes() 268 if (!AccumulatorsFromMultiply(child, negation)) { in GatherAccumulatorsFromChildNodes() 274 GatherAccumulatorsFromChildNodes(new_node, next_child, negation); in GatherAccumulatorsFromChildNodes() 279 GatherAccumulatorsFromChildNodes(new_node, negated_node, !negation); in GatherAccumulatorsFromChildNodes() 384 bool negation = false; in FoldRecurrentAddExpressions() local [all …]
|
/third_party/skia/third_party/externals/abseil-cpp/absl/types/ |
D | optional.h | 171 absl::conjunction<absl::negation<std::is_same< 173 absl::negation<std::is_same< 184 absl::conjunction<absl::negation<std::is_same< 186 absl::negation<std::is_same< 188 absl::negation<std::is_convertible<U&&, T>>, 198 absl::negation<std::is_same<T, U> >, 200 absl::negation< 215 absl::negation<std::is_same<T, U>>, 217 absl::negation< 220 absl::negation<std::is_convertible<const U&, T>>>::value, [all …]
|
/third_party/abseil-cpp/absl/types/ |
D | optional.h | 171 absl::conjunction<absl::negation<std::is_same< 173 absl::negation<std::is_same< 184 absl::conjunction<absl::negation<std::is_same< 186 absl::negation<std::is_same< 188 absl::negation<std::is_convertible<U&&, T>>, 198 absl::negation<std::is_same<T, U> >, 200 absl::negation< 215 absl::negation<std::is_same<T, U>>, 217 absl::negation< 220 absl::negation<std::is_convertible<const U&, T>>>::value, [all …]
|
/third_party/boost/libs/type_traits/test/ |
D | negation_test.cpp | 21 TT_TEST_BEGIN(negation) 23 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::negation<Int<5> >::value, false); 24 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::negation<Int<0> >::value, true);
|
/third_party/googletest/googlemock/include/gmock/ |
D | gmock-more-matchers.h | 61 MATCHER(IsEmpty, negation ? "isn't empty" : "is empty") { 73 MATCHER(IsTrue, negation ? "is false" : "is true") { 81 MATCHER(IsFalse, negation ? "is true" : "is false") {
|
/third_party/boost/boost/endian/detail/ |
D | is_scoped_enum.hpp | 20 template<class T> struct negation: boost::integral_constant<bool, !T::value> {}; struct 25 negation< boost::is_convertible<T, int> >,
|
/third_party/python/Lib/lib2to3/fixes/ |
D | fix_has_key.py | 79 negation = results.get("negation") 96 if negation:
|
/third_party/node/deps/npm/node_modules/glob/ |
D | changelog.md | 7 - Remove comment and negation pattern support 12 - Deprecate comment and negation patterns
|
/third_party/mesa3d/src/compiler/nir/tests/ |
D | negative_equal_tests.cpp | 171 nir_ssa_def *negation = nir_fneg(&bld, two_plus_two); in TEST_F() local 173 nir_ssa_def *result = nir_fadd(&bld, two_plus_two, negation); in TEST_F() 191 nir_ssa_def *negation = nir_ineg(&bld, two_plus_two); in TEST_F() local 193 nir_ssa_def *result = nir_iadd(&bld, two_plus_two, negation); in TEST_F()
|
/third_party/boost/boost/type_traits/ |
D | negation.hpp | 18 struct negation struct
|
D | is_scoped_enum.hpp | 22 : conjunction<is_enum<T>, negation<is_convertible<T, int> > >::type { };
|
/third_party/glslang/Test/ |
D | hlsl.y-negate-1.vert | 2 // Test Y negation from entry point return
|
D | hlsl.y-negate-2.vert | 1 // Test Y negation from entry point out parameter
|
D | hlsl.y-negate-3.vert | 1 // Test Y negation from entry point out parameter
|
/third_party/ffmpeg/libavfilter/x86/ |
D | vf_blend_init.c | 68 BLEND_FUNC(negation, sse2) in BLEND_FUNC() 69 BLEND_FUNC(negation, ssse3) in BLEND_FUNC() 70 BLEND_FUNC(negation, avx2) in BLEND_FUNC()
|
/third_party/iptables/extensions/ |
D | libxt_quota.man | 3 is reversed with negation (i.e. the condition does not match until the
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | Any.h | 66 llvm::negation<std::is_same<typename std::decay<T>::type, Any>>, 76 llvm::negation<std::is_convertible<Any, typename std::decay<T>::type>>,
|
/third_party/node/deps/npm/node_modules/yargs-parser/ |
D | README.md | 118 'boolean-negation': false 199 ### boolean negation 202 * key: `boolean-negation` 264 ### negation prefix 267 * key: `negation-prefix`
|
/third_party/cef/include/base/ |
D | cef_template_util.h | 269 struct negation : bool_constant<!static_cast<bool>(B::value)> {}; 337 : negation<std::is_convertible<T, std::underlying_type_t<T>>> {};
|
/third_party/googletest/googlemock/src/ |
D | gmock-matchers.cc | 51 GTEST_API_ std::string FormatMatcherDescription(bool negation, in FormatMatcherDescription() argument 56 return negation ? "not (" + result + ")" : result; in FormatMatcherDescription()
|