/external/llvm-project/libcxx/test/std/utilities/meta/meta.logical/ |
D | negation.pass.cpp | 26 static_assert (!std::negation<std::true_type >::value, "" ); in main() 27 static_assert ( std::negation<std::false_type>::value, "" ); in main() 32 static_assert (!std::negation<True >::value, "" ); in main() 33 static_assert ( std::negation<False>::value, "" ); in main() 38 static_assert ( std::negation<std::negation<std::true_type >>::value, "" ); in main() 39 static_assert (!std::negation<std::negation<std::false_type>>::value, "" ); in main()
|
/external/libcxx/test/std/utilities/meta/meta.logical/ |
D | negation.pass.cpp | 25 static_assert (!std::negation<std::true_type >::value, "" ); in main() 26 static_assert ( std::negation<std::false_type>::value, "" ); in main() 31 static_assert (!std::negation<True >::value, "" ); in main() 32 static_assert ( std::negation<False>::value, "" ); in main() 37 static_assert ( std::negation<std::negation<std::true_type >>::value, "" ); in main() 38 static_assert (!std::negation<std::negation<std::false_type>>::value, "" ); in main()
|
/external/rust/crates/grpcio-sys/grpc/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 …]
|
/external/libtextclassifier/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 …]
|
/external/angle/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 …]
|
/external/openscreen/third_party/abseil/src/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 …]
|
/external/llvm-project/llvm/test/CodeGen/SystemZ/ |
D | vec-neg-01.ll | 1 ; Test vector negation. 5 ; Test a v16i8 negation. 14 ; Test a v8i16 negation. 23 ; Test a v4i32 negation. 32 ; Test a v2i64 negation. 41 ; Test a v2f64 negation. 50 ; Test an f64 negation that uses vector registers.
|
D | int-neg-01.ll | 1 ; Test integer negation. 5 ; Test i32->i32 negation. 14 ; Test i32->i64 negation. 24 ; Test i32->i64 negation that uses an "in-register" form of sign extension. 35 ; Test i64 negation.
|
D | vec-neg-02.ll | 1 ; Test vector negation on z14. 5 ; Test a v4f32 negation. 14 ; Test an f32 negation that uses vector registers.
|
/external/llvm/test/CodeGen/SystemZ/ |
D | vec-neg-01.ll | 1 ; Test vector negation. 5 ; Test a v16i8 negation. 14 ; Test a v8i16 negation. 23 ; Test a v4i32 negation. 32 ; Test a v2i64 negation. 41 ; Test a v2f64 negation. 50 ; Test an f64 negation that uses vector registers.
|
D | int-neg-01.ll | 1 ; Test integer negation. 5 ; Test i32->i32 negation. 14 ; Test i32->i64 negation. 24 ; Test i32->i64 negation that uses an "in-register" form of sign extension. 35 ; Test i64 negation.
|
/external/deqp-deps/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 …]
|
/external/angle/third_party/vulkan-deps/spirv-tools/src/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 …]
|
/external/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 …]
|
/external/webrtc/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 …]
|
/external/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 …]
|
/external/angle/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 …]
|
/external/libtextclassifier/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 …]
|
/external/rust/crates/grpcio-sys/grpc/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 …]
|
/external/openscreen/third_party/abseil/src/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 …]
|
/external/tflite-support/tensorflow_lite_support/cc/port/default/ |
D | statusor.h | 101 absl::negation<std::is_same<T, U>>, 104 absl::negation< 114 absl::negation<std::is_same<T, U>>, 116 absl::negation<std::is_convertible<const U&, T>>, 117 absl::negation< 128 absl::negation<std::is_same<T, U>>, std::is_constructible<T, U&&>, 130 absl::negation< 140 absl::negation<std::is_same<T, U>>, std::is_constructible<T, U&&>, 141 absl::negation<std::is_convertible<U&&, T>>, 142 absl::negation< [all …]
|
/external/libtextclassifier/native/annotator/grammar/ |
D | test-utils.h | 35 ::testing::DescribeMatcher<int>(start, negation) + 36 ", end that " + ::testing::DescribeMatcher<int>(end, negation) + 38 ::testing::DescribeMatcher<std::string>(collection, negation)) { 48 ::testing::DescribeMatcher<std::string>(collection, negation)) {
|
/external/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") {
|
/external/libtextclassifier/native/utils/grammar/parsing/ |
D | matcher_test.cc | 57 DescribeMatcher<int>(begin, negation) + ", end that " + 58 DescribeMatcher<int>(end, negation) + ", value that " + 59 DescribeMatcher<std::string>(terminal, negation)) { 67 DescribeMatcher<int>(begin, negation) + ", end that " + 68 DescribeMatcher<int>(end, negation) + ", name that " + 69 DescribeMatcher<std::string>(name, negation)) { 77 DescribeMatcher<int>(rule_id, negation) + ", begin that " + 78 DescribeMatcher<int>(begin, negation) + ", end that " + 79 DescribeMatcher<int>(end, negation) + ", name that " + 80 DescribeMatcher<std::string>(name, negation)) {
|
/external/icing/icing/text_classifier/lib3/utils/base/ |
D | statusor.h | 49 std::conjunction<std::negation<std::is_same<T, U>>, 58 std::enable_if_t<std::conjunction<std::negation<std::is_same<T, U>>, 67 std::conjunction<std::negation<std::is_same<T, U>>, 76 std::enable_if_t<std::conjunction<std::negation<std::is_same<T, U>>, 214 std::enable_if_t<std::conjunction<std::negation<std::is_same<T, U>>, 223 std::enable_if_t<std::conjunction<std::negation<std::is_same<T, U>>, 233 std::enable_if_t<std::conjunction<std::negation<std::is_same<T, U>>, 241 std::enable_if_t<std::conjunction<std::negation<std::is_same<T, U>>,
|