/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/c++/v1/ |
D | concepts | 17 // [concept.same], concept same_as 19 concept same_as = see below; 21 // [concept.derived], concept derived_from 23 concept derived_from = see below; 25 // [concept.convertible], concept convertible_to 27 concept convertible_to = see below; 29 // [concept.commonref], concept common_reference_with 31 concept common_reference_with = see below; 33 // [concept.common], concept common_with 35 concept common_with = see below; [all …]
|
D | iterator | 47 // [iterator.concept.readable], concept indirectly_readable 49 concept indirectly_readable = see below; // since C++20 55 // [iterator.concept.writable], concept indirectly_writable 57 concept indirectly_writable = see below; // since C++20 59 // [iterator.concept.winc], concept weakly_incrementable 61 concept weakly_incrementable = see below; // since C++20 63 // [iterator.concept.inc], concept incrementable 65 concept incrementable = see below; // since C++20 67 // [iterator.concept.iterator], concept input_or_output_iterator 69 concept input_or_output_iterator = see below; // since C++20 [all …]
|
/aosp_15_r20/external/cronet/third_party/libc++/src/include/ |
H A D | concepts | 17 // [concept.same], concept same_as 19 concept same_as = see below; 21 // [concept.derived], concept derived_from 23 concept derived_from = see below; 25 // [concept.convertible], concept convertible_to 27 concept convertible_to = see below; 29 // [concept.commonref], concept common_reference_with 31 concept common_reference_with = see below; 33 // [concept.common], concept common_with 35 concept common_with = see below; [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/c++/v1/ |
D | concepts | 17 // [concept.same], concept same_as 19 concept same_as = see below; 21 // [concept.derived], concept derived_from 23 concept derived_from = see below; 25 // [concept.convertible], concept convertible_to 27 concept convertible_to = see below; 29 // [concept.commonref], concept common_reference_with 31 concept common_reference_with = see below; 33 // [concept.common], concept common_with 35 concept common_with = see below; [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/c++/v1/ |
D | concepts | 17 // [concept.same], concept same_as 19 concept same_as = see below; 21 // [concept.derived], concept derived_from 23 concept derived_from = see below; 25 // [concept.convertible], concept convertible_to 27 concept convertible_to = see below; 29 // [concept.commonref], concept common_reference_with 31 concept common_reference_with = see below; 33 // [concept.common], concept common_with 35 concept common_with = see below; [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/embedded-sysroots/pigweed_riscv32_sysroot/include/c++/v1/ |
D | concepts | 17 // [concept.same], concept same_as 19 concept same_as = see below; 21 // [concept.derived], concept derived_from 23 concept derived_from = see below; 25 // [concept.convertible], concept convertible_to 27 concept convertible_to = see below; 29 // [concept.commonref], concept common_reference_with 31 concept common_reference_with = see below; 33 // [concept.common], concept common_with 35 concept common_with = see below; [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/c++/v1/ |
D | concepts | 17 // [concept.same], concept same_as 19 concept same_as = see below; 21 // [concept.derived], concept derived_from 23 concept derived_from = see below; 25 // [concept.convertible], concept convertible_to 27 concept convertible_to = see below; 29 // [concept.commonref], concept common_reference_with 31 concept common_reference_with = see below; 33 // [concept.common], concept common_with 35 concept common_with = see below; [all …]
|
D | iterator | 47 // [iterator.concept.readable], concept indirectly_readable 49 concept indirectly_readable = see below; // since C++20 55 // [iterator.concept.writable], concept indirectly_writable 57 concept indirectly_writable = see below; // since C++20 59 // [iterator.concept.winc], concept weakly_incrementable 61 concept weakly_incrementable = see below; // since C++20 63 // [iterator.concept.inc], concept incrementable 65 concept incrementable = see below; // since C++20 67 // [iterator.concept.iterator], concept input_or_output_iterator 69 concept input_or_output_iterator = see below; // since C++20 [all …]
|
/aosp_15_r20/external/clang/test/CXX/concepts-ts/dcl.dcl/dcl.spec/dcl.spec.concept/ |
H A D | p1.cpp | 4 template<typename T> concept bool C1() { return true; } in C1() 6 template<typename T> concept bool C2 = true; 9 template<typename T> concept bool C3() { return (throw 0, true); } in C3() 10 static_assert(noexcept(C3<int>()), "function concept should be treated as if noexcept(true) specifi… 12 template<typename T> concept bool D1(); // expected-error {{function concept declaration must be a … 15 …template<typename T> concept bool D2() { return true; } // expected-error {{concept declarations m… in D2() 19 …template<typename T> static concept bool D3 = true; // expected-error {{concept declarations may o… 22 concept bool D4() { return true; } // expected-error {{'concept' can only appear on the definition … in D4() 24 concept bool D5 = true; // expected-error {{'concept' can only appear on the definition of a functi… 27 concept bool D6; // expected-error {{variable concept declaration must be initialized}} [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/share/libc++/v1/std/ |
D | concepts.inc | 13 // [concept.same], concept same_as 16 // [concept.derived], concept derived_from 19 // [concept.convertible], concept convertible_to 22 // [concept.commonref], concept common_reference_with 25 // [concept.common], concept common_with 34 // [concept.assignable], concept assignable_from 37 // [concept.swappable], concept swappable 47 // [concept.destructible], concept destructible 50 // [concept.constructible], concept constructible_from 53 // [concept.default.init], concept default_initializable [all …]
|
D | iterator.inc | 38 // [iterator.concept.readable], concept indirectly_readable 43 // [iterator.concept.writable], concept indirectly_writable 46 // [iterator.concept.winc], concept weakly_incrementable 49 // [iterator.concept.inc], concept incrementable 52 // [iterator.concept.iterator], concept input_or_output_iterator 55 // [iterator.concept.sentinel], concept sentinel_for 58 // [iterator.concept.sizedsentinel], concept sized_sentinel_for 63 // [iterator.concept.input], concept input_iterator 66 // [iterator.concept.output], concept output_iterator 69 // [iterator.concept.forward], concept forward_iterator [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/embedded-sysroots/pigweed_riscv32_sysroot/share/libc++/v1/std/ |
D | concepts.inc | 13 // [concept.same], concept same_as 16 // [concept.derived], concept derived_from 19 // [concept.convertible], concept convertible_to 22 // [concept.commonref], concept common_reference_with 25 // [concept.common], concept common_with 34 // [concept.assignable], concept assignable_from 37 // [concept.swappable], concept swappable 47 // [concept.destructible], concept destructible 50 // [concept.constructible], concept constructible_from 53 // [concept.default.init], concept default_initializable [all …]
|
D | iterator.inc | 38 // [iterator.concept.readable], concept indirectly_readable 43 // [iterator.concept.writable], concept indirectly_writable 46 // [iterator.concept.winc], concept weakly_incrementable 49 // [iterator.concept.inc], concept incrementable 52 // [iterator.concept.iterator], concept input_or_output_iterator 55 // [iterator.concept.sentinel], concept sentinel_for 58 // [iterator.concept.sizedsentinel], concept sized_sentinel_for 63 // [iterator.concept.input], concept input_iterator 66 // [iterator.concept.output], concept output_iterator 69 // [iterator.concept.forward], concept forward_iterator [all …]
|
/aosp_15_r20/external/cronet/third_party/libc++/src/modules/std/ |
H A D | concepts.cppm | 17 // [concept.same], concept same_as 20 // [concept.derived], concept derived_from 23 // [concept.convertible], concept convertible_to 26 // [concept.commonref], concept common_reference_with 29 // [concept.common], concept common_with 38 // [concept.assignable], concept assignable_from 41 // [concept.swappable], concept swappable 51 // [concept.destructible], concept destructible 54 // [concept.constructible], concept constructible_from 57 // [concept.default.init], concept default_initializable [all …]
|
H A D | concepts.inc | 13 // [concept.same], concept same_as 16 // [concept.derived], concept derived_from 19 // [concept.convertible], concept convertible_to 22 // [concept.commonref], concept common_reference_with 25 // [concept.common], concept common_with 34 // [concept.assignable], concept assignable_from 37 // [concept.swappable], concept swappable 47 // [concept.destructible], concept destructible 50 // [concept.constructible], concept constructible_from 53 // [concept.default.init], concept default_initializable [all …]
|
H A D | iterator.inc | 38 // [iterator.concept.readable], concept indirectly_readable 43 // [iterator.concept.writable], concept indirectly_writable 46 // [iterator.concept.winc], concept weakly_incrementable 49 // [iterator.concept.inc], concept incrementable 52 // [iterator.concept.iterator], concept input_or_output_iterator 55 // [iterator.concept.sentinel], concept sentinel_for 58 // [iterator.concept.sizedsentinel], concept sized_sentinel_for 63 // [iterator.concept.input], concept input_iterator 66 // [iterator.concept.output], concept output_iterator 69 // [iterator.concept.forward], concept forward_iterator [all …]
|
H A D | iterator.cppm | 42 // [iterator.concept.readable], concept indirectly_readable 47 // [iterator.concept.writable], concept indirectly_writable 50 // [iterator.concept.winc], concept weakly_incrementable 53 // [iterator.concept.inc], concept incrementable 56 // [iterator.concept.iterator], concept input_or_output_iterator 59 // [iterator.concept.sentinel], concept sentinel_for 62 // [iterator.concept.sizedsentinel], concept sized_sentinel_for 67 // [iterator.concept.input], concept input_iterator 70 // [iterator.concept.output], concept output_iterator 73 // [iterator.concept.forward], concept forward_iterator [all …]
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/concept_check/ |
D | concept_check.htm | 15 <title>Concept Check Library</title> 24 <h1>The Boost Concept Check Library (BCCL)</h1> 27 The Concept Check library allows one to add explicit statement and 29 "http://www.boost.org/more/generic_programming.html#concept">concepts</a> in the style 35 <h2><a name="sec:concept-checking" id="sec:concept-checking"></a>Synopsis</a></h2> 39 "http://www.boost.org/more/generic_programming.html#concept">concepts</a>”). However, the 41 or function template to explicitly state the concept that the user-supplied 43 commonly named after the concept they're required to model as a hint to the 44 user, and to make the concept requirements explicit in code. However, the 59 <li>The documented concept requirements may not fully <i>cover</i> the [all …]
|
/aosp_15_r20/external/fhir/spec/r4/json_definitions/ |
D | conceptmaps.json | 15 …Concept Details</b></td><td><b>Equivalence</b></td><td colspan=\"1\"><b>Destination Concept Detail… 90 …Concept Details</b></td><td><b>Equivalence</b></td><td colspan=\"1\"><b>Destination Concept Detail… 201 …Concept Details</b></td><td><b>Equivalence</b></td><td colspan=\"1\"><b>Destination Concept Detail… 371 …Concept Details</b></td><td><b>Equivalence</b></td><td colspan=\"1\"><b>Destination Concept Detail… 439 …Concept Details</b></td><td><b>Equivalence</b></td><td colspan=\"1\"><b>Destination Concept Detail… 1104 …Concept Details</b>\n </td>\n <td>\n <b>Equivalence</b>\n </… 3716 …Concept Details</b>\n </td>\n <td>\n <b>Equivalence</b>\n </… 3772 … <p>DRAFT. Published on ?? by null. </p>\n <div>\n <p>This concept map defines a map… 3778 …"description" : "This concept map defines a mapping from CDS Hooks indicator to request priority.",
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/embedded-sysroots/pigweed_riscv32_sysroot/include/c++/v1/__iterator/ |
D | concepts.h | 53 // [iterator.concept.readable] 55 concept __indirectly_readable_impl = 67 concept indirectly_readable = __indirectly_readable_impl<remove_cvref_t<_In>>; 76 concept __specialization_of_projected = requires { 97 // [iterator.concept.writable] 99 concept indirectly_writable = requires(_Out&& __o, _Tp&& __t) { 107 // [iterator.concept.winc] 109 concept __integer_like = integral<_Tp> && !same_as<_Tp, bool>; 112 concept __signed_integer_like = signed_integral<_Tp>; 115 concept weakly_incrementable = [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/c++/v1/__iterator/ |
D | concepts.h | 51 // [iterator.concept.readable] 53 concept __indirectly_readable_impl = 65 concept indirectly_readable = __indirectly_readable_impl<remove_cvref_t<_In>>; 70 // [iterator.concept.writable] 72 concept indirectly_writable = requires(_Out&& __o, _Tp&& __t) { in requires() 80 // [iterator.concept.winc] 82 concept __integer_like = integral<_Tp> && !same_as<_Tp, bool>; 85 concept __signed_integer_like = signed_integral<_Tp>; 88 concept weakly_incrementable = 98 // [iterator.concept.inc] [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/c++/v1/__iterator/ |
D | concepts.h | 51 // [iterator.concept.readable] 53 concept __indirectly_readable_impl = 65 concept indirectly_readable = __indirectly_readable_impl<remove_cvref_t<_In>>; 70 // [iterator.concept.writable] 72 concept indirectly_writable = requires(_Out&& __o, _Tp&& __t) { in requires() 80 // [iterator.concept.winc] 82 concept __integer_like = integral<_Tp> && !same_as<_Tp, bool>; 85 concept __signed_integer_like = signed_integral<_Tp>; 88 concept weakly_incrementable = 98 // [iterator.concept.inc] [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/c++/v1/__iterator/ |
D | concepts.h | 51 // [iterator.concept.readable] 53 concept __indirectly_readable_impl = 65 concept indirectly_readable = __indirectly_readable_impl<remove_cvref_t<_In>>; 70 // [iterator.concept.writable] 72 concept indirectly_writable = requires(_Out&& __o, _Tp&& __t) { in requires() 80 // [iterator.concept.winc] 82 concept __integer_like = integral<_Tp> && !same_as<_Tp, bool>; 85 concept __signed_integer_like = signed_integral<_Tp>; 88 concept weakly_incrementable = 98 // [iterator.concept.inc] [all …]
|
/aosp_15_r20/external/cronet/third_party/libc++/src/include/__iterator/ |
H A D | concepts.h | 51 // [iterator.concept.readable] 53 concept __indirectly_readable_impl = 65 concept indirectly_readable = __indirectly_readable_impl<remove_cvref_t<_In>>; 70 // [iterator.concept.writable] 72 concept indirectly_writable = requires(_Out&& __o, _Tp&& __t) { in requires() 80 // [iterator.concept.winc] 82 concept __integer_like = integral<_Tp> && !same_as<_Tp, bool>; 85 concept __signed_integer_like = signed_integral<_Tp>; 88 concept weakly_incrementable = 98 // [iterator.concept.inc] [all …]
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/c++/v1/__iterator/ |
D | concepts.h | 51 // [iterator.concept.readable] 53 concept __indirectly_readable_impl = 65 concept indirectly_readable = __indirectly_readable_impl<remove_cvref_t<_In>>; 70 // [iterator.concept.writable] 72 concept indirectly_writable = requires(_Out&& __o, _Tp&& __t) { in requires() 80 // [iterator.concept.winc] 82 concept __integer_like = integral<_Tp> && !same_as<_Tp, bool>; 85 concept __signed_integer_like = signed_integral<_Tp>; 88 concept weakly_incrementable = 98 // [iterator.concept.inc] [all …]
|