Home
last modified time | relevance | path

Searched refs:negation (Results 1 – 25 of 227) sorted by relevance

12345678910

/third_party/boost/libs/type_traits/doc/
Dnegation.qbk10 [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/
Dstatusor.h232 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/
Dstatusor.h222 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/
Dscalar_analysis_simplification.cpp96 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/
Dscalar_analysis_simplification.cpp96 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/
Dscalar_analysis_simplification.cpp96 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/
Doptional.h171 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/
Doptional.h171 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/
Dnegation_test.cpp21 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/
Dgmock-more-matchers.h61 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/
Dis_scoped_enum.hpp20 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/
Dfix_has_key.py79 negation = results.get("negation")
96 if negation:
/third_party/node/deps/npm/node_modules/glob/
Dchangelog.md7 - Remove comment and negation pattern support
12 - Deprecate comment and negation patterns
/third_party/mesa3d/src/compiler/nir/tests/
Dnegative_equal_tests.cpp171 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/
Dnegation.hpp18 struct negation struct
Dis_scoped_enum.hpp22 : conjunction<is_enum<T>, negation<is_convertible<T, int> > >::type { };
/third_party/glslang/Test/
Dhlsl.y-negate-1.vert2 // Test Y negation from entry point return
Dhlsl.y-negate-2.vert1 // Test Y negation from entry point out parameter
Dhlsl.y-negate-3.vert1 // Test Y negation from entry point out parameter
/third_party/ffmpeg/libavfilter/x86/
Dvf_blend_init.c68 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/
Dlibxt_quota.man3 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/
DAny.h66 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/
DREADME.md118 'boolean-negation': false
199 ### boolean negation
202 * key: `boolean-negation`
264 ### negation prefix
267 * key: `negation-prefix`
/third_party/cef/include/base/
Dcef_template_util.h269 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/
Dgmock-matchers.cc51 GTEST_API_ std::string FormatMatcherDescription(bool negation, in FormatMatcherDescription() argument
56 return negation ? "not (" + result + ")" : result; in FormatMatcherDescription()

12345678910