Home
last modified time | relevance | path

Searched refs:_First (Results 1 – 4 of 4) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/include/clang/Lex/
H A DPPCallbacks.h416 PPChainedCallbacks(std::unique_ptr<PPCallbacks> _First, in PPChainedCallbacks() argument
418 : First(std::move(_First)), Second(std::move(_Second)) {} in PPChainedCallbacks()
/freebsd-13.1/contrib/llvm-project/libcxx/include/
H A D__hash_table1083 template <class _First, class _Second>
1086 __can_extract_map_key<_First, key_type, __container_value_type>::value,
1088 >::type __emplace_unique(_First&& __f, _Second&& __s) {
1089 return __emplace_unique_key_args(__f, _VSTD::forward<_First>(__f),
1348 template <class _First, class ..._Rest>
1349 __node_holder __construct_node_hash(size_t __hash, _First&& __f, _Rest&&... __rest);
2464 template <class _First, class ..._Rest>
2467 size_t __hash, _First&& __f, _Rest&& ...__rest)
2469 static_assert(!__is_hash_value_type<_First, _Rest...>::value,
2474 _VSTD::forward<_First>(__f),
H A D__tree1168 template <class _First, class _Second>
1171 __can_extract_map_key<_First, key_type, __container_value_type>::value,
1173 >::type __emplace_unique(_First&& __f, _Second&& __s) {
1174 return __emplace_unique_key_args(__f, _VSTD::forward<_First>(__f),
1212 template <class _First, class _Second>
1215 __can_extract_map_key<_First, key_type, __container_value_type>::value,
1217 >::type __emplace_hint_unique(const_iterator __p, _First&& __f, _Second&& __s) {
1219 _VSTD::forward<_First>(__f),
H A Dtype_traits471 template <class _First, class...>
472 using _FirstImpl _LIBCPP_NODEBUG_TYPE = _First;
477 template <class _Result, class _First, class ..._Rest>
478 …IBCPP_NODEBUG_TYPE = typename _MetaBase<_First::value != true && sizeof...(_Rest) != 0>::template …
4437 template <class _Pair, class _Key, class _First, class _Second>
4438 struct __can_extract_key<_Pair, _Key, pair<_First, _Second> >
4439 : conditional<_IsSame<typename remove_const<_First>::type, _Key>::value,