HomeSort by relevance Sort by last modified time
    Searched full:_args (Results 201 - 225 of 525) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/debug/
unordered_map 207 template<typename... _Args>
209 emplace(_Args&&... __args)
213 = _Base::emplace(std::forward<_Args>(__args)...);
218 template<typename... _Args>
220 emplace_hint(const_iterator __hint, _Args&&... __args)
225 std::forward<_Args>(__args)...);
621 template<typename... _Args>
623 emplace(_Args&&... __args)
627 = _Base::emplace(std::forward<_Args>(__args)...);
632 template<typename... _Args>
    [all...]
unordered_set 207 template<typename... _Args>
209 emplace(_Args&&... __args)
213 = _Base::emplace(std::forward<_Args>(__args)...);
218 template<typename... _Args>
220 emplace_hint(const_iterator __hint, _Args&&... __args)
225 std::forward<_Args>(__args)...);
616 template<typename... _Args>
618 emplace(_Args&&... __args)
622 = _Base::emplace(std::forward<_Args>(__args)...);
627 template<typename... _Args>
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/
alloc_traits.h 139 template<typename _Ptr, typename... _Args>
141 construct(_Alloc& __a, _Ptr __p, _Args&&... __args)
144 std::forward<_Args>(__args)...);
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/
thread 129 template<typename _Callable, typename... _Args>
131 thread(_Callable&& __f, _Args&&... __args)
135 std::forward<_Args>(__args)...)));
type_traits 876 template<typename _Tp, typename... _Args, typename
877 = decltype(_Tp(declval<_Args>()...))>
884 template<typename _Tp, typename... _Args>
888 typedef decltype(__test<_Tp, _Args...>(0)) type;
891 template<typename _Tp, typename... _Args>
893 : public __is_nary_constructible_impl<_Tp, _Args...>::type
895 static_assert(sizeof...(_Args) > 1,
899 template<typename _Tp, typename... _Args>
901 : public __is_nary_constructible<_Tp, _Args...>
915 template<typename _Tp, typename... _Args>
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
stl_construct.h 72 template<typename _T1, typename... _Args>
74 _Construct(_T1* __p, _Args&&... __args)
75 { ::new(static_cast<void*>(__p)) _T1(std::forward<_Args>(__args)...); }
shared_ptr_base.h 392 template<typename... _Args>
393 _Sp_counted_ptr_inplace(_Alloc __a, _Args&&... __args)
400 std::forward<_Args>(__args)...); // might throw
510 template<typename _Tp, typename _Alloc, typename... _Args>
512 _Args&&... __args)
523 std::forward<_Args>(__args)...);
982 template<typename _Alloc, typename... _Args>
984 _Args&&... __args)
986 std::forward<_Args>(__args)...)
1007 template<typename _Alloc, typename... _Args>
    [all...]
shared_ptr.h 313 template<typename _Alloc, typename... _Args>
315 _Args&&... __args)
316 : __shared_ptr<_Tp>(__tag, __a, std::forward<_Args>(__args)...)
319 template<typename _Tp1, typename _Alloc, typename... _Args>
321 allocate_shared(const _Alloc& __a, _Args&&... __args);
593 template<typename _Tp, typename _Alloc, typename... _Args>
595 allocate_shared(const _Alloc& __a, _Args&&... __args)
598 std::forward<_Args>(__args)...);
608 template<typename _Tp, typename... _Args>
610 make_shared(_Args&&... __args
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/debug/
unordered_map 241 template<typename... _Args>
243 emplace(_Args&&... __args)
247 = _Base::emplace(std::forward<_Args>(__args)...);
252 template<typename... _Args>
254 emplace_hint(const_iterator __hint, _Args&&... __args)
259 std::forward<_Args>(__args)...);
671 template<typename... _Args>
673 emplace(_Args&&... __args)
677 = _Base::emplace(std::forward<_Args>(__args)...);
682 template<typename... _Args>
    [all...]
unordered_set 241 template<typename... _Args>
243 emplace(_Args&&... __args)
247 = _Base::emplace(std::forward<_Args>(__args)...);
252 template<typename... _Args>
254 emplace_hint(const_iterator __hint, _Args&&... __args)
259 std::forward<_Args>(__args)...);
666 template<typename... _Args>
668 emplace(_Args&&... __args)
672 = _Base::emplace(std::forward<_Args>(__args)...);
677 template<typename... _Args>
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/
array_allocator.h 80 template<typename _Up, typename... _Args>
82 construct(_Up* __p, _Args&&... __args)
83 { ::new((void *)__p) _Up(std::forward<_Args>(__args)...); }
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
shared_ptr_base.h 395 template<typename... _Args>
396 _Sp_counted_ptr_inplace(_Alloc __a, _Args&&... __args)
403 std::forward<_Args>(__args)...); // might throw
513 template<typename _Tp, typename _Alloc, typename... _Args>
515 _Args&&... __args)
526 std::forward<_Args>(__args)...);
993 template<typename _Alloc, typename... _Args>
995 _Args&&... __args)
997 std::forward<_Args>(__args)...)
1018 template<typename _Alloc, typename... _Args>
    [all...]
shared_ptr.h 314 template<typename _Alloc, typename... _Args>
316 _Args&&... __args)
317 : __shared_ptr<_Tp>(__tag, __a, std::forward<_Args>(__args)...)
320 template<typename _Tp1, typename _Alloc, typename... _Args>
322 allocate_shared(const _Alloc& __a, _Args&&... __args);
594 template<typename _Tp, typename _Alloc, typename... _Args>
596 allocate_shared(const _Alloc& __a, _Args&&... __args)
599 std::forward<_Args>(__args)...);
609 template<typename _Tp, typename... _Args>
611 make_shared(_Args&&... __args
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
shared_ptr_base.h 395 template<typename... _Args>
396 _Sp_counted_ptr_inplace(_Alloc __a, _Args&&... __args)
403 std::forward<_Args>(__args)...); // might throw
513 template<typename _Tp, typename _Alloc, typename... _Args>
515 _Args&&... __args)
526 std::forward<_Args>(__args)...);
993 template<typename _Alloc, typename... _Args>
995 _Args&&... __args)
997 std::forward<_Args>(__args)...)
1018 template<typename _Alloc, typename... _Args>
    [all...]
shared_ptr.h 314 template<typename _Alloc, typename... _Args>
316 _Args&&... __args)
317 : __shared_ptr<_Tp>(__tag, __a, std::forward<_Args>(__args)...)
320 template<typename _Tp1, typename _Alloc, typename... _Args>
322 allocate_shared(const _Alloc& __a, _Args&&... __args);
594 template<typename _Tp, typename _Alloc, typename... _Args>
596 allocate_shared(const _Alloc& __a, _Args&&... __args)
599 std::forward<_Args>(__args)...);
609 template<typename _Tp, typename... _Args>
611 make_shared(_Args&&... __args
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
shared_ptr.h 314 template<typename _Alloc, typename... _Args>
316 _Args&&... __args)
317 : __shared_ptr<_Tp>(__tag, __a, std::forward<_Args>(__args)...)
320 template<typename _Tp1, typename _Alloc, typename... _Args>
322 allocate_shared(const _Alloc& __a, _Args&&... __args);
530 template<typename _Tp, typename _Alloc, typename... _Args>
532 allocate_shared(const _Alloc& __a, _Args&&... __args)
535 std::forward<_Args>(__args)...);
545 template<typename _Tp, typename... _Args>
547 make_shared(_Args&&... __args
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
shared_ptr.h 314 template<typename _Alloc, typename... _Args>
316 _Args&&... __args)
317 : __shared_ptr<_Tp>(__tag, __a, std::forward<_Args>(__args)...)
320 template<typename _Tp1, typename _Alloc, typename... _Args>
322 allocate_shared(const _Alloc& __a, _Args&&... __args);
530 template<typename _Tp, typename _Alloc, typename... _Args>
532 allocate_shared(const _Alloc& __a, _Args&&... __args)
535 std::forward<_Args>(__args)...);
545 template<typename _Tp, typename... _Args>
547 make_shared(_Args&&... __args
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
shared_ptr.h 314 template<typename _Alloc, typename... _Args>
316 _Args&&... __args)
317 : __shared_ptr<_Tp>(__tag, __a, std::forward<_Args>(__args)...)
320 template<typename _Tp1, typename _Alloc, typename... _Args>
322 allocate_shared(const _Alloc& __a, _Args&&... __args);
530 template<typename _Tp, typename _Alloc, typename... _Args>
532 allocate_shared(const _Alloc& __a, _Args&&... __args)
535 std::forward<_Args>(__args)...);
545 template<typename _Tp, typename... _Args>
547 make_shared(_Args&&... __args
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
shared_ptr.h 314 template<typename _Alloc, typename... _Args>
316 _Args&&... __args)
317 : __shared_ptr<_Tp>(__tag, __a, std::forward<_Args>(__args)...)
320 template<typename _Tp1, typename _Alloc, typename... _Args>
322 allocate_shared(const _Alloc& __a, _Args&&... __args);
530 template<typename _Tp, typename _Alloc, typename... _Args>
532 allocate_shared(const _Alloc& __a, _Args&&... __args)
535 std::forward<_Args>(__args)...);
545 template<typename _Tp, typename... _Args>
547 make_shared(_Args&&... __args
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
__tree 606 template <class ..._Args>
608 explicit __tree_node(_Args&& ...__args)
609 : __value_(_VSTD::forward<_Args>(__args)...) {}
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/
type_traits 650 template<typename _Tp, typename... _Args>
661 static const bool __value = sizeof(__test<_Tp, _Args...>(0)) == 1;
682 template<typename _Tp, typename... _Args>
686 _Args...>::__value>
689 template<bool, typename _Tp, typename... _Args>
693 template<typename _Tp, typename... _Args>
694 struct __is_nt_constructible_helper<true, _Tp, _Args...>
695 { static const bool __value = noexcept(_Tp(declval<_Args>()...)); };
704 template<typename _Tp, typename... _Args>
707 __is_nt_constructible_helper<is_constructible<_Tp, _Args...>::value
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/
type_traits 650 template<typename _Tp, typename... _Args>
661 static const bool __value = sizeof(__test<_Tp, _Args...>(0)) == 1;
682 template<typename _Tp, typename... _Args>
686 _Args...>::__value>
689 template<bool, typename _Tp, typename... _Args>
693 template<typename _Tp, typename... _Args>
694 struct __is_nt_constructible_helper<true, _Tp, _Args...>
695 { static const bool __value = noexcept(_Tp(declval<_Args>()...)); };
704 template<typename _Tp, typename... _Args>
707 __is_nt_constructible_helper<is_constructible<_Tp, _Args...>::value
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/
type_traits 650 template<typename _Tp, typename... _Args>
661 static const bool __value = sizeof(__test<_Tp, _Args...>(0)) == 1;
682 template<typename _Tp, typename... _Args>
686 _Args...>::__value>
689 template<bool, typename _Tp, typename... _Args>
693 template<typename _Tp, typename... _Args>
694 struct __is_nt_constructible_helper<true, _Tp, _Args...>
695 { static const bool __value = noexcept(_Tp(declval<_Args>()...)); };
704 template<typename _Tp, typename... _Args>
707 __is_nt_constructible_helper<is_constructible<_Tp, _Args...>::value
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/
type_traits 650 template<typename _Tp, typename... _Args>
661 static const bool __value = sizeof(__test<_Tp, _Args...>(0)) == 1;
682 template<typename _Tp, typename... _Args>
686 _Args...>::__value>
689 template<bool, typename _Tp, typename... _Args>
693 template<typename _Tp, typename... _Args>
694 struct __is_nt_constructible_helper<true, _Tp, _Args...>
695 { static const bool __value = noexcept(_Tp(declval<_Args>()...)); };
704 template<typename _Tp, typename... _Args>
707 __is_nt_constructible_helper<is_constructible<_Tp, _Args...>::value
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/
type_traits 876 template<typename _Tp, typename... _Args, typename
877 = decltype(_Tp(declval<_Args>()...))>
884 template<typename _Tp, typename... _Args>
888 typedef decltype(__test<_Tp, _Args...>(0)) type;
891 template<typename _Tp, typename... _Args>
893 : public __is_nary_constructible_impl<_Tp, _Args...>::type
895 static_assert(sizeof...(_Args) > 1,
899 template<typename _Tp, typename... _Args>
901 : public __is_nary_constructible<_Tp, _Args...>
915 template<typename _Tp, typename... _Args>
    [all...]

Completed in 1556 milliseconds

1 2 3 4 5 6 7 891011>>