Home
last modified time | relevance | path

Searched full:since (Results 1 – 25 of 6378) sorted by relevance

12345678910>>...256

/freebsd/contrib/llvm-project/libcxx/include/
H A Dtype_traits21 typedef integral_constant<bool, true> true_type; // since C++11
22 typedef integral_constant<bool, false> false_type; // since C++11
25 using bool_constant = integral_constant<bool, B>; // since C++17
33 template <class T> struct is_null_pointer; // since C++14
52 template <class T> struct is_scoped_enum; // since C++23
76 template<class T> struct type_identity; // since C++20
78 using type_identity_t = typename type_identity<T>::type; // since C++20
92 template <class T> struct is_bounded_array; // since C++20
93 template <class T> struct is_unbounded_array; // since C++20
104 template <class T> struct is_final; // since C++14
[all …]
H A Dalgorithm25 struct in_fun_result; // since C++20
28 struct in_in_result; // since C++20
31 struct in_out_result; // since C++20
34 struct in_in_out_result; // since C++20
37 struct in_out_out_result; // since C++20
40 struct min_max_result; // since C++20
43 struct in_found_result; // since C++20
46 struct in_value_result; // since C++23
49 struct out_value_result; // since C++23
52 …eak_order<projected<I, Proj>> Comp = ranges::less> // since C++20
[all …]
H A Dmemory92 allocate_at_least(Alloc& a, size_type n); // Since C++23
110 }; // Since C++23
174 typedef ptrdiff_t difference_type; // since C++20
198 using uninitialized_copy_result = in_out_result<InputIterator, OutputIterator>; // since C++20
203 …copy(InputIterator ifirst, Sentinel1 ilast, OutputIterator ofirst, Sentinel2 olast); // since C++20
208 uninitialized_copy(InputRange&& in_range, OutputRange&& out_range); // since C++20
219 using uninitialized_copy_n_result = in_out_result<InputIterator, OutputIterator>; // since C++20
224 … ifirst, iter_difference_t<InputIterator> n, OutputIterator ofirst, Sentinel olast); // since C++20
235 ForwardIterator uninitialized_fill(ForwardIterator first, Sentinel last, const T& x); // since C++20
239 borrowed_iterator_t<ForwardRange> uninitialized_fill(ForwardRange&& range, const T& x); // since C+…
[all …]
H A Diterator20 template<class> struct incrementable_traits; // since C++20
22 using iter_difference_t = see below; // since C++20
24 template<class> struct indirectly_readable_traits; // since C++20
26 using iter_value_t = see below; // since C++20
32 requires is_object_v<T> // since C++20
39 inline constexpr unspecified iter_move = unspecified; // since C++20, nodiscard as an extension
44 using iter_rvalue_reference_t = decltype(ranges::iter_move(declval<T&>())); // since C++20
49 concept indirectly_readable = see below; // since C++20
53 common_reference_t<iter_reference_t<T>, iter_value_t<T>&>; // since C++20
57 concept indirectly_writable = see below; // since C++20
[all …]
H A Dnumeric20 constexpr T // constexpr since C++20
24 constexpr T // constexpr since C++20
28 constexpr typename iterator_traits<InputIterator>::value_type // constexpr since C++20
32 constexpr T // constexpr since C++20
36 constexpr T // constexpr since C++20
40 constexpr T // constexpr since C++20
44 constexpr T // constexpr since C++20
50 constexpr T // constexpr since C++20
55 constexpr T // constexpr since C++20
61 constexpr T // constexpr since C++20
[all …]
H A Datomic71 constexpr atomic() noexcept(is_nothrow_default_constructible_v<T>); // since C++20
104 void wait(T, memory_order = memory_order::seq_cst) const volatile noexcept; // since C++20
105 void wait(T, memory_order = memory_order::seq_cst) const noexcept; // since C++20
106 void notify_one() volatile noexcept; // since C++20
107 void notify_one() noexcept; // since C++20
108 void notify_all() volatile noexcept; // since C++20
109 void notify_all() noexcept; // since C++20
187 … void wait(integral, memory_order = memory_order::seq_cst) const volatile noexcept; // since C++20
188 … void wait(integral, memory_order = memory_order::seq_cst) const noexcept; // since C++20
189 … void notify_one() volatile noexcept; // since C++20
[all …]
H A Dostream134 …, traits>& operator<<(basic_ostream<char, traits>&, wchar_t) = delete; // since C++20
136 …, traits>& operator<<(basic_ostream<char, traits>&, char8_t) = delete; // since C++20
138 …, traits>& operator<<(basic_ostream<char, traits>&, char16_t) = delete; // since C++20
140 …, traits>& operator<<(basic_ostream<char, traits>&, char32_t) = delete; // since C++20
142 …r_t, traits>& operator<<(basic_ostream<wchar_t, traits>&, char8_t) = delete; // since C++20
144 …r_t, traits>& operator<<(basic_ostream<wchar_t, traits>&, char16_t) = delete; // since C++20
146 …r_t, traits>& operator<<(basic_ostream<wchar_t, traits>&, char32_t) = delete; // since C++20
148 …, traits>& operator<<(basic_ostream<char, traits>&, const wchar_t*) = delete; // since C++20
150 …, traits>& operator<<(basic_ostream<char, traits>&, const char8_t*) = delete; // since C++20
152 …, traits>& operator<<(basic_ostream<char, traits>&, const char16_t*) = delete; // since C++20
[all …]
H A Dstring56 using comparison_category = strong_ordering; // Since C++20 only for the specializations
105 …othrow_default_constructible<allocator_type>::value); // constexpr since C++20
106 …ring(const allocator_type& a); // constexpr since C++20
107 …t basic_string& str); // constexpr since C++20
109 …othrow_move_constructible<allocator_type>::value); // constexpr since C++20
111 …t allocator_type& a = allocator_type()); // constexpr since C++20
113 …t Allocator& a = Allocator()); // constexpr since C++20
115 …ic_string&& str, size_type pos, const Allocator& a = Allocator()); // since C++23
117 …ic_string&& str, size_type pos, size_type n, const Allocator& a = Allocator()); // since C++23
119 …& t, size_type pos, size_type n, const Allocator& a = Allocator()); // C++17, constexpr since C++20
[all …]
H A Dbitset47 …'0'), charT one = charT('1')); // until C++26, constexpr since C++23
51 … charT zero = charT('0'), charT one = charT('1')); // since C++26
57 … charT zero = charT('0'), charT one = charT('1')); // since C++26
63 …zero = charT('0'), charT one = charT('1')); // constexpr since C++23
66 bitset& operator&=(const bitset& rhs) noexcept; // constexpr since C++23
67 bitset& operator|=(const bitset& rhs) noexcept; // constexpr since C++23
68 bitset& operator^=(const bitset& rhs) noexcept; // constexpr since C++23
69 bitset& operator<<=(size_t pos) noexcept; // constexpr since C++23
70 bitset& operator>>=(size_t pos) noexcept; // constexpr since C++23
71 bitset& set() noexcept; // constexpr since C++23
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm-c/
H A Dlto.h52 * \since prior to LTO_API_VERSION=3
77 * \since prior to LTO_API_VERSION=3
85 * \since prior to LTO_API_VERSION=3
108 * \since prior to LTO_API_VERSION=3
116 * \since prior to LTO_API_VERSION=3
124 * \since prior to LTO_API_VERSION=3
132 * \since prior to LTO_API_VERSION=3
142 * \since LTO_API_VERSION=20
150 * \since prior to LTO_API_VERSION=3
158 * \since prior to LTO_API_VERSION=3
[all …]
H A DRemarks.h56 * \since REMARKS_API_VERSION=0
63 * \since REMARKS_API_VERSION=0
71 * \since REMARKS_API_VERSION=0
78 * \since REMARKS_API_VERSION=0
85 * \since REMARKS_API_VERSION=0
93 * \since REMARKS_API_VERSION=0
101 * \since REMARKS_API_VERSION=0
111 * \since REMARKS_API_VERSION=0
119 * \since REMARKS_API_VERSION=0
126 * \since REMARKS_API_VERSION=0
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/
H A Diterator20 template<class> struct incrementable_traits; // since C++20
22 using iter_difference_t = see below; // since C++20
24 template<class> struct indirectly_readable_traits; // since C++20
26 using iter_value_t = see below; // since C++20
32 requires is_object_v<T> // since C++20
39 inline constexpr unspecified iter_move = unspecified; // since C++20, nodiscard as an extension
44 using iter_rvalue_reference_t = decltype(ranges::iter_move(declval<T&>())); // since C++20
49 concept indirectly_readable = see below; // since C++20
53 common_reference_t<iter_reference_t<T>, iter_value_t<T>&>; // since C++20
57 concept indirectly_writable = see below; // since C++20
[all …]
H A Dmemory92 allocate_at_least(Alloc& a, size_type n); // Since C++23
110 }; // Since C++23
174 typedef ptrdiff_t difference_type; // since C++20
198 using uninitialized_copy_result = in_out_result<InputIterator, OutputIterator>; // since C++20
203 …copy(InputIterator ifirst, Sentinel1 ilast, OutputIterator ofirst, Sentinel2 olast); // since C++20
208 uninitialized_copy(InputRange&& in_range, OutputRange&& out_range); // since C++20
219 using uninitialized_copy_n_result = in_out_result<InputIterator, OutputIterator>; // since C++20
224 … ifirst, iter_difference_t<InputIterator> n, OutputIterator ofirst, Sentinel olast); // since C++20
235 ForwardIterator uninitialized_fill(ForwardIterator first, Sentinel last, const T& x); // since C++20
239 borrowed_iterator_t<ForwardRange> uninitialized_fill(ForwardRange&& range, const T& x); // since C+…
[all …]
H A Dnumeric20 constexpr T // constexpr since C++20
24 constexpr T // constexpr since C++20
28 constexpr typename iterator_traits<InputIterator>::value_type // constexpr since C++20
32 constexpr T // constexpr since C++20
36 constexpr T // constexpr since C++20
40 constexpr T // constexpr since C++20
44 constexpr T // constexpr since C++20
50 constexpr T // constexpr since C++20
55 constexpr T // constexpr since C++20
61 constexpr T // constexpr since C++20
[all …]
H A Dalgorithm25 struct in_fun_result; // since C++20
28 struct in_in_result; // since C++20
31 struct in_out_result; // since C++20
34 struct in_in_out_result; // since C++20
37 struct in_out_out_result; // since C++20
40 struct min_max_result; // since C++20
43 struct in_found_result; // since C++20
46 struct in_value_result; // since C++23
49 …eak_order<projected<I, Proj>> Comp = ranges::less> // since C++20
53 …eak_order<projected<iterator_t<R>, Proj>> Comp = ranges::less> // since C++20
[all …]
H A Dostream134 …, traits>& operator<<(basic_ostream<char, traits>&, wchar_t) = delete; // since C++20
136 …, traits>& operator<<(basic_ostream<char, traits>&, char8_t) = delete; // since C++20
138 …, traits>& operator<<(basic_ostream<char, traits>&, char16_t) = delete; // since C++20
140 …, traits>& operator<<(basic_ostream<char, traits>&, char32_t) = delete; // since C++20
142 …r_t, traits>& operator<<(basic_ostream<wchar_t, traits>&, char8_t) = delete; // since C++20
144 …r_t, traits>& operator<<(basic_ostream<wchar_t, traits>&, char16_t) = delete; // since C++20
146 …r_t, traits>& operator<<(basic_ostream<wchar_t, traits>&, char32_t) = delete; // since C++20
148 …, traits>& operator<<(basic_ostream<char, traits>&, const wchar_t*) = delete; // since C++20
150 …, traits>& operator<<(basic_ostream<char, traits>&, const char8_t*) = delete; // since C++20
152 …, traits>& operator<<(basic_ostream<char, traits>&, const char16_t*) = delete; // since C++20
[all …]
H A Dstring56 using comparison_category = strong_ordering; // Since C++20 only for the specializations
105 …othrow_default_constructible<allocator_type>::value); // constexpr since C++20
106 …ring(const allocator_type& a); // constexpr since C++20
107 …t basic_string& str); // constexpr since C++20
109 …othrow_move_constructible<allocator_type>::value); // constexpr since C++20
111 …t allocator_type& a = allocator_type()); // constexpr since C++20
113 …t Allocator& a = Allocator()); // constexpr since C++20
115 …ic_string&& str, size_type pos, const Allocator& a = Allocator()); // since C++23
117 …ic_string&& str, size_type pos, size_type n, const Allocator& a = Allocator()); // since C++23
119 …& t, size_type pos, size_type n, const Allocator& a = Allocator()); // C++17, constexpr since C++20
[all …]
H A Dbitset47 …'0'), charT one = charT('1')); // until C++26, constexpr since C++23
51 … charT zero = charT('0'), charT one = charT('1')); // since C++26
57 … charT zero = charT('0'), charT one = charT('1')); // since C++26
63 …zero = charT('0'), charT one = charT('1')); // constexpr since C++23
66 bitset& operator&=(const bitset& rhs) noexcept; // constexpr since C++23
67 bitset& operator|=(const bitset& rhs) noexcept; // constexpr since C++23
68 bitset& operator^=(const bitset& rhs) noexcept; // constexpr since C++23
69 bitset& operator<<=(size_t pos) noexcept; // constexpr since C++23
70 bitset& operator>>=(size_t pos) noexcept; // constexpr since C++23
71 bitset& set() noexcept; // constexpr since C++23
[all …]
/freebsd/contrib/tzdata/
H A Dantarctica16 # Belgrano II, Confin Coast, -770227-0343737, since 1972-02-05
17 # Carlini, Potter Cove, King George Island, -6414-0602320, since 1982-01
18 # Esperanza, Hope Bay, -6323-05659, since 1952-12-17
19 # Marambio, -6414-05637, since 1969-10-29
20 # Orcadas, Laurie I, -6016-04444, since 1904-02-22
21 # San Martín, Barry I, -6808-06706, since 1951-03-21
33 # Casey, Bailey Peninsula, -6617+11032, since 1969
34 # Davis, Vestfold Hills, -6835+07759, since 1957-01-13
36 # Mawson, Holme Bay, -6736+06253, since 1954-02-13
124 # Princess Elisabeth, Queen Maud Land, -713412+0231200, since 2007
[all …]
/freebsd/crypto/openssl/include/openssl/
H A Dmacros.h38 * MSVC supports __declspec(deprecated) since MSVC 2003 (13.10),
39 * and __declspec(deprecated(message)) since MSVC 2005 (14.00)
42 #define OSSL_DEPRECATED(since) \ argument
43 __declspec(deprecated("Since OpenSSL " #since))
44 #define OSSL_DEPRECATED_FOR(since, message) \ argument
45 __declspec(deprecated("Since OpenSSL " #since ";" message))
47 #define OSSL_DEPRECATED(since) __declspec(deprecated) argument
48 #define OSSL_DEPRECATED_FOR(since, message) __declspec(deprecated) argument
56 #define OSSL_DEPRECATED(since) \ argument
57 __attribute__((deprecated("Since OpenSSL " #since)))
[all …]
/freebsd/contrib/bmake/unit-tests/
H A Dopt-debug-lint.mk8 # Since 2020-09-13, undefined variables that are used on the left-hand side
14 # Since 2020-09-13, the "Malformed conditional" error message is not printed
25 # sense to expand them in the global scope since they will never be defined
37 # Since 2020-09-13, Var_Parse properly reports errors for undefined variables,
47 # Since 2020-09-14, dependency lines may contain undefined variables.
53 # may assume that the variable is defined since they will only be evaluated
61 # Since 2020-10-03, in lint mode the variable modifier must be separated
71 # since make always fell back trying to parse the indirect modifier as a
97 # This only happened in lint mode since in default mode the early check for
H A Ddirective-for-if.mk6 # loop, their values were placed verbatim in the expanded body. Since then,
29 # Since bare words were not allowed at the left-hand side of a condition,
30 # make complained about a "Malformed conditional", which was surprising since
39 # Since cond.c 1.68 from 2015-05-05, bare words are allowed on the left-hand
57 # '=' and '"0"'. Since that line is not interpreted as an '.if' directive,
75 # has been allowed since cond.c 1.23 from 2004-04-13. Between that commit and
81 # of the comparison resulted in a "Malformed conditional". Since the .for
H A Ddirective-endif.mk5 # Since 2020-12-15, the .endif directive no longer accepts arguments.
14 # Since 2020-12-15:
19 # Since 2020-12-15:
30 # Since 2020-12-15:
37 # Since 2020-12-15:
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMSA.txt18 It is not possible to emit bclri.b since andi.b covers exactly the
24 constant since shf.w covers exactly the same cases. shf.w is used
36 It is not possible to emit ilvl.d, or pckev.d since ilvev.d covers the
40 It is not possible to emit ilvr.d, or pckod.d since ilvod.d covers the
48 It is not possible to emit splati.w since shf.w covers the same cases.
53 copy_u.w. This is semantically equivalent since the general-purpose
66 It is (currently) not possible to emit bmz.v, or bsel.v since bmnz.v is
/freebsd/contrib/llvm-project/libc/include/llvm-libc-types/
H A Dstruct_tm.h15 int tm_hour; // hours since midnight
17 int tm_mon; // months since January
18 int tm_year; // years since 1900
19 int tm_wday; // days since Sunday
20 int tm_yday; // days since January

12345678910>>...256