| /llvm-project-15.0.7/libcxx/test/std/utilities/meta/meta.logical/ |
| H A D | conjunction.compile.pass.cpp | 31 static_assert( std::conjunction<>::value); 32 static_assert( std::conjunction<std::true_type >::value); 33 static_assert(!std::conjunction<std::false_type>::value); 39 static_assert( std::conjunction<std::true_type, std::true_type >::value); 40 static_assert(!std::conjunction<std::true_type, std::false_type>::value); 41 static_assert(!std::conjunction<std::false_type, std::true_type >::value); 42 static_assert(!std::conjunction<std::false_type, std::false_type>::value); 67 static_assert( std::conjunction<True >::value); 68 static_assert(!std::conjunction<False>::value); 80 static_assert(!std::conjunction<std::false_type, HasNoValue>::value); [all …]
|
| /llvm-project-15.0.7/llvm/unittests/ADT/ |
| H A D | STLForwardCompatTest.cpp | 22 EXPECT_TRUE((llvm::conjunction<>::value)); in TEST() 23 EXPECT_FALSE((llvm::conjunction<std::false_type>::value)); in TEST() 24 EXPECT_TRUE((llvm::conjunction<std::true_type>::value)); in TEST() 25 EXPECT_FALSE((llvm::conjunction<std::false_type, incomplete_type>::value)); in TEST() 26 EXPECT_FALSE((llvm::conjunction<std::false_type, std::true_type>::value)); in TEST() 27 EXPECT_FALSE((llvm::conjunction<std::true_type, std::false_type>::value)); in TEST() 28 EXPECT_TRUE((llvm::conjunction<std::true_type, std::true_type>::value)); in TEST() 29 EXPECT_TRUE((llvm::conjunction<std::true_type, std::true_type, in TEST()
|
| /llvm-project-15.0.7/llvm/include/llvm/ADT/ |
| H A D | STLForwardCompat.h | 33 struct conjunction // NOLINT(readability-identifier-naming) struct 35 template <typename B1> struct conjunction<B1> : B1 {}; 37 struct conjunction<B1, Bn...> 38 : std::conditional<bool(B1::value), conjunction<Bn...>, B1>::type {};
|
| H A D | Any.h | 71 llvm::conjunction<
|
| /llvm-project-15.0.7/libcxx/include/__type_traits/ |
| H A D | conjunction.h | 36 struct conjunction : __conjunction_impl<true_type, _Args...>::type {}; 39 inline constexpr bool conjunction_v = conjunction<_Args...>::value;
|
| /llvm-project-15.0.7/pstl/include/pstl/internal/ |
| H A D | execution_impl.h | 27 using __are_iterators_of = std::conjunction<
|
| /llvm-project-15.0.7/llvm/test/ExecutionEngine/JITLink/X86/ |
| H A D | COFF_x86-64_small_pic_relocations.s | 43 # Local named data/func that is used in conjunction with other test cases
|
| /llvm-project-15.0.7/mlir/include/mlir/Dialect/SparseTensor/IR/ |
| H A D | SparseTensorBase.td | 45 order. Each iteration lattice point consists of a conjunction of tensor 47 for that conjunction. Within the lattice, iteration points are ordered
|
| /llvm-project-15.0.7/llvm/ |
| H A D | RELEASE_TESTERS.TXT | 4 They will also, in conjunction with the release manager and the code owners,
|
| /llvm-project-15.0.7/polly/test/GPGPU/ |
| H A D | bounds-construction-with-ignore-param-bounds.ll | 12 ; every `pw_aff` with `Scop::Context`. However, in conjunction with
|
| /llvm-project-15.0.7/mlir/test/Integration/Dialect/SparseTensor/CPU/ |
| H A D | sparse_index_dense.mlir | 45 // Kernel that uses index in the index notation (conjunction). 79 // Kernel that uses indices in the index notation (conjunction).
|
| H A D | sparse_index.mlir | 39 // Kernel that uses index in the index notation (conjunction). 75 // Kernel that uses indices in the index notation (conjunction).
|
| /llvm-project-15.0.7/clang/test/SemaObjC/ |
| H A D | category-1.m | 82 // <rdar://problem/8891119> - Handle @synthesize being used in conjunction
|
| /llvm-project-15.0.7/mlir/include/mlir/IR/ |
| H A D | DialectBase.td | 47 // Note that this works in conjunction with dialect C++ code. Depending on how
|
| /llvm-project-15.0.7/mlir/docs/Dialects/ |
| H A D | Affine.md | 250 An integer set is a conjunction of affine constraints on a list of identifiers. 263 affine-constraint-conjunction ::= affine-constraint (`,` affine-constraint)* 274 ::= dim-and-symbol-id-lists `:` '(' affine-constraint-conjunction? ')'
|
| /llvm-project-15.0.7/llvm/test/Transforms/GlobalDCE/ |
| H A D | comdats.ll | 1 ; Test the behavior of GlobalDCE in conjunction with comdats.
|
| /llvm-project-15.0.7/llvm/docs/CommandGuide/ |
| H A D | dsymutil.rst | 64 used in conjunction with ``--update`` option, this option will cause redundant
|
| H A D | llvm-pdbutil.rst | 278 In conjunction with :option:`-streams`, add information to the output about 388 When used in conjunction with :option:`-type-index` or :option:`-id-index`,
|
| /llvm-project-15.0.7/libcxx/docs/Status/ |
| H A D | Cxx17Issues.csv | 212 "`2569 <https://wg21.link/LWG2569>`__","conjunction and disjunction requirements are too strict","I… 213 "`2570 <https://wg21.link/LWG2570>`__","[fund.ts.v2] conjunction and disjunction requirements are t… 216 "`2587 <https://wg21.link/LWG2587>`__","""Convertible to bool"" requirement in conjunction and disj… 217 …link/LWG2588>`__","[fund.ts.v2] ""Convertible to bool"" requirement in conjunction and disjunction…
|
| /llvm-project-15.0.7/libcxx/include/ |
| H A D | type_traits | 406 template<class... B> struct conjunction; // C++17 408 inline constexpr bool conjunction_v = conjunction<B...>::value; // C++17 435 #include <__type_traits/conjunction.h>
|
| /llvm-project-15.0.7/mlir/docs/ |
| H A D | Diagnostics.md | 214 conjunction with a derived diagnostic handler. 223 // Use this handler in conjunction with another.
|
| /llvm-project-15.0.7/mlir/include/mlir/Dialect/AMDGPU/ |
| H A D | AMDGPU.td | 20 and LLVM intrinsics. These wrappers should be used in conjunction with
|
| /llvm-project-15.0.7/llvm/include/llvm/Option/ |
| H A D | OptParser.td | 57 // help text. Clients *can* use this in conjunction with the OptTable::PrintHelp
|
| /llvm-project-15.0.7/llvm/docs/ |
| H A D | ReleaseProcess.rst | 82 * On non-release testing, you can use ``-final`` in conjunction with
|
| /llvm-project-15.0.7/mlir/test/Integration/Dialect/SparseTensor/taco/tools/ |
| H A D | mlir_pytaco.py | 224 conjunction = functools.partial(_mode_format_operation, op=operator.and_) 226 return conjunction if op(0, 1) != 0 else disjunction
|