Home
last modified time | relevance | path

Searched refs:conjunction (Results 1 – 25 of 66) sorted by relevance

123

/llvm-project-15.0.7/libcxx/test/std/utilities/meta/meta.logical/
H A Dconjunction.compile.pass.cpp31 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 DSTLForwardCompatTest.cpp22 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 DSTLForwardCompat.h33 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 DAny.h71 llvm::conjunction<
/llvm-project-15.0.7/libcxx/include/__type_traits/
H A Dconjunction.h36 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 Dexecution_impl.h27 using __are_iterators_of = std::conjunction<
/llvm-project-15.0.7/llvm/test/ExecutionEngine/JITLink/X86/
H A DCOFF_x86-64_small_pic_relocations.s43 # 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 DSparseTensorBase.td45 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 DRELEASE_TESTERS.TXT4 They will also, in conjunction with the release manager and the code owners,
/llvm-project-15.0.7/polly/test/GPGPU/
H A Dbounds-construction-with-ignore-param-bounds.ll12 ; every `pw_aff` with `Scop::Context`. However, in conjunction with
/llvm-project-15.0.7/mlir/test/Integration/Dialect/SparseTensor/CPU/
H A Dsparse_index_dense.mlir45 // Kernel that uses index in the index notation (conjunction).
79 // Kernel that uses indices in the index notation (conjunction).
H A Dsparse_index.mlir39 // 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 Dcategory-1.m82 // <rdar://problem/8891119> - Handle @synthesize being used in conjunction
/llvm-project-15.0.7/mlir/include/mlir/IR/
H A DDialectBase.td47 // Note that this works in conjunction with dialect C++ code. Depending on how
/llvm-project-15.0.7/mlir/docs/Dialects/
H A DAffine.md250 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 Dcomdats.ll1 ; Test the behavior of GlobalDCE in conjunction with comdats.
/llvm-project-15.0.7/llvm/docs/CommandGuide/
H A Ddsymutil.rst64 used in conjunction with ``--update`` option, this option will cause redundant
H A Dllvm-pdbutil.rst278 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 DCxx17Issues.csv212 "`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 Dtype_traits406 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 DDiagnostics.md214 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 DAMDGPU.td20 and LLVM intrinsics. These wrappers should be used in conjunction with
/llvm-project-15.0.7/llvm/include/llvm/Option/
H A DOptParser.td57 // help text. Clients *can* use this in conjunction with the OptTable::PrintHelp
/llvm-project-15.0.7/llvm/docs/
H A DReleaseProcess.rst82 * 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 Dmlir_pytaco.py224 conjunction = functools.partial(_mode_format_operation, op=operator.and_)
226 return conjunction if op(0, 1) != 0 else disjunction

123