Home
last modified time | relevance | path

Searched refs:_Elem (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/include/__algorithm/
H A Dranges_find_last.h80 template <class _Elem>
81 _LIBCPP_HIDE_FROM_ABI constexpr decltype(auto) operator()(_Elem&& __elem) const { in decltype()
82 return std::forward<_Elem>(__elem) == __value; in decltype()
107 template <class _Elem>
108 _LIBCPP_HIDE_FROM_ABI constexpr decltype(auto) operator()(_Elem&& __elem) const { in decltype()
109 return std::invoke(__pred, std::forward<_Elem>(__elem)); in decltype()
137 template <class _Elem>
138 _LIBCPP_HIDE_FROM_ABI constexpr decltype(auto) operator()(_Elem&& __elem) const { in decltype()
139 return !std::invoke(__pred, std::forward<_Elem>(__elem)); in decltype()
/freebsd/contrib/llvm-project/libcxx/include/
H A Dcodecvt73 template <class _Elem>
192 template <class _Elem, unsigned long _Maxcode = 0x10ffff, codecvt_mode _Mode = (codecvt_mode)0>
193 class _LIBCPP_TEMPLATE_VIS _LIBCPP_DEPRECATED_IN_CXX17 codecvt_utf8 : public __codecvt_utf8<_Elem> {
195 …_LIBCPP_HIDE_FROM_ABI explicit codecvt_utf8(size_t __refs = 0) : __codecvt_utf8<_Elem>(__refs, _Ma…
203 template <class _Elem, bool _LittleEndian>
435 template <class _Elem, unsigned long _Maxcode = 0x10ffff, codecvt_mode _Mode = (codecvt_mode)0>
437 _LIBCPP_DEPRECATED_IN_CXX17 codecvt_utf16 : public __codecvt_utf16<_Elem, _Mode & little_endian> {
440 : __codecvt_utf16<_Elem, _Mode & little_endian>(__refs, _Maxcode, _Mode) {}
448 template <class _Elem>
567 template <class _Elem, unsigned long _Maxcode = 0x10ffff, codecvt_mode _Mode = (codecvt_mode)0>
[all …]
H A Dlocale3142 class _Elem = wchar_t,
3143 class _WideAlloc = allocator<_Elem>,
3148 typedef basic_string<_Elem, char_traits<_Elem>, _WideAlloc> wide_string;
3187 …_LIBCPP_HIDE_FROM_ABI byte_string to_bytes(_Elem __wchar) { return to_bytes(&__wchar, &__wchar + 1…
3188 _LIBCPP_HIDE_FROM_ABI byte_string to_bytes(const _Elem* __wptr) {
3189 return to_bytes(__wptr, __wptr + char_traits<_Elem>::length(__wptr));
3194 _LIBCPP_HIDE_FROM_ABI byte_string to_bytes(const _Elem* __first, const _Elem* __last);
3201 template <class _Codecvt, class _Elem, class _WideAlloc, class _ByteAlloc>
3202 inline wstring_convert<_Codecvt, _Elem, _WideAlloc, _ByteAlloc>::wstring_convert(_Codecvt* __pcvt)
3206 template <class _Codecvt, class _Elem, class _WideAlloc, class _ByteAlloc>
[all …]
/freebsd/contrib/googletest/googlemock/test/
H A Dgmock-pp-string_test.cc133 #define JOINER(_N, _Data, _Elem) JOINER_CAT(_Data, _N) = _Elem argument
/freebsd/contrib/llvm-project/libcxx/src/include/
H A Dto_chars_floating_point.h905 return std::find_if(_Table_begin, _Table_end, [=](const _Uint_type _Elem) { return _Uint_value <= _Elem; });