Home
last modified time | relevance | path

Searched defs:__t (Results 1 – 25 of 59) sorted by relevance

123

/llvm-project-15.0.7/libcxx/include/__utility/
H A Dcmp.h44 bool cmp_equal(_Tp __t, _Up __u) noexcept in cmp_equal()
56 bool cmp_not_equal(_Tp __t, _Up __u) noexcept in cmp_not_equal()
63 bool cmp_less(_Tp __t, _Up __u) noexcept in cmp_less()
75 bool cmp_greater(_Tp __t, _Up __u) noexcept in cmp_greater()
82 bool cmp_less_equal(_Tp __t, _Up __u) noexcept in cmp_less_equal()
89 bool cmp_greater_equal(_Tp __t, _Up __u) noexcept in cmp_greater_equal()
H A Dforward.h25 forward(typename remove_reference<_Tp>::type& __t) _NOEXCEPT { in forward()
31 forward(typename remove_reference<_Tp>::type&& __t) _NOEXCEPT { in forward()
H A Das_const.h25 _LIBCPP_NODISCARD_EXT constexpr add_const_t<_Tp>& as_const(_Tp& __t) noexcept { return __t; } in as_const()
H A Dmove.h24 move(_Tp&& __t) _NOEXCEPT { in move()
/llvm-project-15.0.7/libcxx/include/__functional/
H A Dreference_wrapper.h68 ref(_Tp& __t) _NOEXCEPT in ref()
76 ref(reference_wrapper<_Tp> __t) _NOEXCEPT in ref()
84 cref(const _Tp& __t) _NOEXCEPT in cref()
92 cref(reference_wrapper<_Tp> __t) _NOEXCEPT in cref()
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/bugprone/
H A Dreserved-identifier-invert.cpp44 ref(_Tp &__t) noexcept { in ref()
50 ref(reference_wrapper<_Tp> __t) noexcept { in ref()
66 cref(reference_wrapper<const _Tp> __t) noexcept { in cref()
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/bugprone/Inputs/reserved-identifier/system/
H A Dsystem-header.h23 ref(_Tp &__t) noexcept { in ref()
29 ref(reference_wrapper<_Tp> __t) noexcept { in ref()
/llvm-project-15.0.7/libcxx/include/__iterator/
H A Diter_move.h38 requires (_Tp&& __t) { in requires()
92 requires requires(_Tp& __t) { { ranges::iter_move(__t) } -> __can_reference; } in requires()
/llvm-project-15.0.7/libcxx/include/__ranges/
H A Dconcepts.h42 concept range = requires(_Tp& __t) { in requires()
73 concept sized_range = range<_Tp> && requires(_Tp& __t) { ranges::size(__t); }; in requires()
115 requires(_Tp& __t) { in requires()
H A Dsingle_view.h41 constexpr explicit single_view(const _Tp& __t) : __value_(in_place, __t) {} in single_view()
44 constexpr explicit single_view(_Tp&& __t) : __value_(in_place, std::move(__t)) {} in single_view()
H A Dview_interface.h68 requires requires (_D2& __t) { ranges::empty(__t); } in requires()
76 requires requires (const _D2& __t) { ranges::empty(__t); } in requires()
H A Daccess.h42 requires(_Tp&& __t) { in requires()
113 requires(_Tp&& __t) { in requires()
H A Drend.h39 requires(_Tp&& __t) { in requires()
/llvm-project-15.0.7/libcxx/include/__algorithm/
H A Dmax.h51 max(initializer_list<_Tp> __t, _Compare __comp) in max()
61 max(initializer_list<_Tp> __t) in max()
H A Dmin.h51 min(initializer_list<_Tp> __t, _Compare __comp) in min()
61 min(initializer_list<_Tp> __t) in min()
H A Dminmax.h49 pair<_Tp, _Tp> minmax(initializer_list<_Tp> __t, _Compare __comp) { in minmax()
60 minmax(initializer_list<_Tp> __t) in minmax()
/llvm-project-15.0.7/libcxx/include/__concepts/
H A Dswappable.h41 requires(_Tp&& __t, _Up&& __u) { in requires()
105 requires(_Tp&& __t, _Up&& __u) { in requires()
H A Dboolean_testable.h30 concept __boolean_testable = __boolean_testable_impl<_Tp> && requires(_Tp&& __t) { in requires()
H A Dtotally_ordered.h29 requires(__make_const_lvalue_ref<_Tp> __t, __make_const_lvalue_ref<_Up> __u) { in requires()
H A Dequality_comparable.h29 requires(__make_const_lvalue_ref<_Tp> __t, __make_const_lvalue_ref<_Up> __u) { in requires()
/llvm-project-15.0.7/libcxx/include/__memory/
H A Dauto_ptr.h55 _Tp* __t = __ptr_; in release() local
68 {auto_ptr_ref<_Up> __t; __t.__ptr_ = release(); return __t;} variable
/llvm-project-15.0.7/libcxx/src/support/win32/
H A Dthread_win32.cpp192 bool __libcpp_thread_isnull(const __libcpp_thread_t *__t) { in __libcpp_thread_isnull()
196 int __libcpp_thread_create(__libcpp_thread_t *__t, void *(*__func)(void *), in __libcpp_thread_create()
217 __libcpp_thread_id __libcpp_thread_get_id(const __libcpp_thread_t *__t) in __libcpp_thread_get_id()
222 int __libcpp_thread_join(__libcpp_thread_t *__t) in __libcpp_thread_join()
231 int __libcpp_thread_detach(__libcpp_thread_t *__t) in __libcpp_thread_detach()
/llvm-project-15.0.7/libcxx/include/__random/
H A Dbinomial_distribution.h72 : __p_(param_type(__t, __p)) {} in __p_()
130 binomial_distribution<_IntType>::param_type::param_type(result_type __t, double __p) in param_type()
216 result_type __t; variable
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/performance/
H A Dmove-const-arg-const-ref.cpp25 constexpr typename std::remove_reference<_Tp>::type &&move(_Tp &&__t) { in move()
31 forward(typename remove_reference<_Tp>::type &__t) noexcept { in forward()
/llvm-project-15.0.7/clang/lib/Headers/
H A Darm_acle.h142 __clz(uint32_t __t) { in __clz()
152 __clzll(uint64_t __t) { in __clzll()
158 __cls(uint32_t __t) { in __cls()
172 __clsll(uint64_t __t) { in __clsll()
178 __rev(uint32_t __t) { in __rev()
192 __revll(uint64_t __t) { in __revll()
198 __rev16(uint32_t __t) { in __rev16()
218 __revsh(int16_t __t) { in __revsh()
224 __rbit(uint32_t __t) { in __rbit()
229 __rbitll(uint64_t __t) { in __rbitll()
[all …]

123