/external/clang/test/PCH/ |
cxx-variadic-templates.h | 5 template<class _Alloc, class ..._Args> 8 allocate_shared(const _Alloc& __a, _Args&& ...__args); 12 template<class _Alloc, class ..._Args> 14 shared_ptr<_Tp>::allocate_shared(const _Alloc& __a, _Args&& ...__args)
|
/external/clang/test/SemaCXX/ |
PR9902.cpp | 9 template <template <class, class...> class _Alloc, class _Tp, class ..._Args, 11 struct __allocator_traits_rebind<_Alloc<_Tp, _Args...>, _Up, false> 13 typedef _Alloc<_Up, _Args...> type;
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/ |
uses_allocator.h | 63 template<typename _Tp, typename _Alloc, typename... _Args> 65 : is_constructible<_Tp, _Alloc, _Args...> 76 template<bool, typename _Alloc, typename... _Args> 79 template<typename _Tp, typename _Alloc, typename... _Args> 80 struct __uses_alloc<true, _Tp, _Alloc, _Args...> 82 is_constructible<_Tp, allocator_arg_t, _Alloc, _Args...>::value, 87 template<typename _Tp, typename _Alloc, typename... _Args> 88 struct __uses_alloc<false, _Tp, _Alloc, _Args...> 91 template<typename _Tp, typename _Alloc, typename... _Args> 93 : __uses_alloc<uses_allocator<_Tp, _Alloc>::value, _Tp, _Alloc, _Args... [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/ |
uses_allocator.h | 63 template<typename _Tp, typename _Alloc, typename... _Args> 65 : is_constructible<_Tp, _Alloc, _Args...> 76 template<bool, typename _Alloc, typename... _Args> 79 template<typename _Tp, typename _Alloc, typename... _Args> 80 struct __uses_alloc<true, _Tp, _Alloc, _Args...> 82 is_constructible<_Tp, allocator_arg_t, _Alloc, _Args...>::value, 87 template<typename _Tp, typename _Alloc, typename... _Args> 88 struct __uses_alloc<false, _Tp, _Alloc, _Args...> 91 template<typename _Tp, typename _Alloc, typename... _Args> 93 : __uses_alloc<uses_allocator<_Tp, _Alloc>::value, _Tp, _Alloc, _Args... [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/ |
uses_allocator.h | 63 template<typename _Tp, typename _Alloc, typename... _Args> 65 : is_constructible<_Tp, _Alloc, _Args...> 76 template<bool, typename _Alloc, typename... _Args> 79 template<typename _Tp, typename _Alloc, typename... _Args> 80 struct __uses_alloc<true, _Tp, _Alloc, _Args...> 82 is_constructible<_Tp, allocator_arg_t, _Alloc, _Args...>::value, 87 template<typename _Tp, typename _Alloc, typename... _Args> 88 struct __uses_alloc<false, _Tp, _Alloc, _Args...> 91 template<typename _Tp, typename _Alloc, typename... _Args> 93 : __uses_alloc<uses_allocator<_Tp, _Alloc>::value, _Tp, _Alloc, _Args... [all...] |
/prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/ |
uses_allocator.h | 63 template<typename _Tp, typename _Alloc, typename... _Args> 65 : is_constructible<_Tp, _Alloc, _Args...> 76 template<bool, typename _Alloc, typename... _Args> 79 template<typename _Tp, typename _Alloc, typename... _Args> 80 struct __uses_alloc<true, _Tp, _Alloc, _Args...> 82 is_constructible<_Tp, allocator_arg_t, _Alloc, _Args...>::value, 87 template<typename _Tp, typename _Alloc, typename... _Args> 88 struct __uses_alloc<false, _Tp, _Alloc, _Args...> 91 template<typename _Tp, typename _Alloc, typename... _Args> 93 : __uses_alloc<uses_allocator<_Tp, _Alloc>::value, _Tp, _Alloc, _Args... [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ |
functional | 224 template<typename _Functor, typename... _Args> 230 typename result_of<_Functor&(_Args&&...)>::type 232 __invoke(_Functor& __f, _Args&&... __args) 234 return __f(std::forward<_Args>(__args)...); 237 template<typename _Functor, typename... _Args> 243 typename result_of<_Functor(_Args&&...)>::type 245 __invoke(_Functor& __f, _Args&&... __args) 247 return std::mem_fn(__f)(std::forward<_Args>(__args)...); 251 template<typename _Functor, typename... _Args> 256 typename result_of<_Functor(_Args&&...)>::typ [all...] |
scoped_allocator | 148 template<typename... _Args> 150 __inner_type_impl(_Args&&... __args) 151 : _M_inner(std::forward<_Args>(__args)...) { } 202 template<typename _Tp, typename... _Args> 204 _M_construct(__uses_alloc0, _Tp* __p, _Args&&... __args) 208 std::forward<_Args>(__args)...); 214 template<typename _Tp, typename... _Args> 216 _M_construct(__uses_alloc1_, _Tp* __p, _Args&&... __args) 221 std::forward<_Args>(__args)...); 224 template<typename _Tp, typename... _Args> [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ |
functional | 224 template<typename _Functor, typename... _Args> 230 typename result_of<_Functor&(_Args&&...)>::type 232 __invoke(_Functor& __f, _Args&&... __args) 234 return __f(std::forward<_Args>(__args)...); 237 template<typename _Functor, typename... _Args> 243 typename result_of<_Functor(_Args&&...)>::type 245 __invoke(_Functor& __f, _Args&&... __args) 247 return std::mem_fn(__f)(std::forward<_Args>(__args)...); 251 template<typename _Functor, typename... _Args> 256 typename result_of<_Functor(_Args&&...)>::typ [all...] |
scoped_allocator | 148 template<typename... _Args> 150 __inner_type_impl(_Args&&... __args) 151 : _M_inner(std::forward<_Args>(__args)...) { } 202 template<typename _Tp, typename... _Args> 204 _M_construct(__uses_alloc0, _Tp* __p, _Args&&... __args) 208 std::forward<_Args>(__args)...); 214 template<typename _Tp, typename... _Args> 216 _M_construct(__uses_alloc1_, _Tp* __p, _Args&&... __args) 221 std::forward<_Args>(__args)...); 224 template<typename _Tp, typename... _Args> [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ |
functional | 224 template<typename _Functor, typename... _Args> 230 typename result_of<_Functor&(_Args&&...)>::type 232 __invoke(_Functor& __f, _Args&&... __args) 234 return __f(std::forward<_Args>(__args)...); 237 template<typename _Functor, typename... _Args> 243 typename result_of<_Functor(_Args&&...)>::type 245 __invoke(_Functor& __f, _Args&&... __args) 247 return std::mem_fn(__f)(std::forward<_Args>(__args)...); 251 template<typename _Functor, typename... _Args> 256 typename result_of<_Functor(_Args&&...)>::typ [all...] |
scoped_allocator | 148 template<typename... _Args> 150 __inner_type_impl(_Args&&... __args) 151 : _M_inner(std::forward<_Args>(__args)...) { } 202 template<typename _Tp, typename... _Args> 204 _M_construct(__uses_alloc0, _Tp* __p, _Args&&... __args) 208 std::forward<_Args>(__args)...); 214 template<typename _Tp, typename... _Args> 216 _M_construct(__uses_alloc1_, _Tp* __p, _Args&&... __args) 221 std::forward<_Args>(__args)...); 224 template<typename _Tp, typename... _Args> [all...] |
/prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ |
functional | 192 template<typename _Functor, typename... _Args> 198 typename result_of<_Functor&(_Args&&...)>::type 200 __invoke(_Functor& __f, _Args&&... __args) 202 return __f(std::forward<_Args>(__args)...); 205 template<typename _Functor, typename... _Args> 211 typename result_of<_Functor(_Args&&...)>::type 213 __invoke(_Functor& __f, _Args&&... __args) 215 return std::mem_fn(__f)(std::forward<_Args>(__args)...); 219 template<typename _Functor, typename... _Args> 224 typename result_of<_Functor(_Args&&...)>::typ [all...] |
scoped_allocator | 148 template<typename... _Args> 150 __inner_type_impl(_Args&&... __args) 151 : _M_inner(std::forward<_Args>(__args)...) { } 202 template<typename _Tp, typename... _Args> 204 _M_construct(__uses_alloc0, _Tp* __p, _Args&&... __args) 208 std::forward<_Args>(__args)...); 214 template<typename _Tp, typename... _Args> 216 _M_construct(__uses_alloc1_, _Tp* __p, _Args&&... __args) 221 std::forward<_Args>(__args)...); 224 template<typename _Tp, typename... _Args> [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
__functional_base | 363 template <class _Fp, class _A0, class ..._Args, 367 __invoke(_Fp&& __f, _A0&& __a0, _Args&& ...__args) 368 -> decltype((_VSTD::forward<_A0>(__a0).*__f)(_VSTD::forward<_Args>(__args)...)) 370 return (_VSTD::forward<_A0>(__a0).*__f)(_VSTD::forward<_Args>(__args)...); 373 template <class _Fp, class _A0, class ..._Args, 377 __invoke(_Fp&& __f, _A0&& __a0, _Args&& ...__args) 378 -> decltype(((*_VSTD::forward<_A0>(__a0)).*__f)(_VSTD::forward<_Args>(__args)...)) 380 return ((*_VSTD::forward<_A0>(__a0)).*__f)(_VSTD::forward<_Args>(__args)...); 407 template <class _Fp, class ..._Args> 410 __invoke(_Fp&& __f, _Args&& ...__args [all...] |
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/libcxx/include/ |
__functional_base | 363 template <class _Fp, class _A0, class ..._Args, 367 __invoke(_Fp&& __f, _A0&& __a0, _Args&& ...__args) 368 -> decltype((_VSTD::forward<_A0>(__a0).*__f)(_VSTD::forward<_Args>(__args)...)) 370 return (_VSTD::forward<_A0>(__a0).*__f)(_VSTD::forward<_Args>(__args)...); 373 template <class _Fp, class _A0, class ..._Args, 377 __invoke(_Fp&& __f, _A0&& __a0, _Args&& ...__args) 378 -> decltype(((*_VSTD::forward<_A0>(__a0)).*__f)(_VSTD::forward<_Args>(__args)...)) 380 return ((*_VSTD::forward<_A0>(__a0)).*__f)(_VSTD::forward<_Args>(__args)...); 407 template <class _Fp, class ..._Args> 410 __invoke(_Fp&& __f, _Args&& ...__args [all...] |
/external/libcxx/include/ |
__functional_base | 366 template <class _Fp, class _A0, class ..._Args, 370 __invoke(_Fp&& __f, _A0&& __a0, _Args&& ...__args) 371 -> decltype((_VSTD::forward<_A0>(__a0).*__f)(_VSTD::forward<_Args>(__args)...)) 373 return (_VSTD::forward<_A0>(__a0).*__f)(_VSTD::forward<_Args>(__args)...); 376 template <class _Fp, class _A0, class ..._Args, 380 __invoke(_Fp&& __f, _A0&& __a0, _Args&& ...__args) 381 -> decltype(((*_VSTD::forward<_A0>(__a0)).*__f)(_VSTD::forward<_Args>(__args)...)) 383 return ((*_VSTD::forward<_A0>(__a0)).*__f)(_VSTD::forward<_Args>(__args)...); 410 template <class _Fp, class ..._Args> 413 __invoke(_Fp&& __f, _Args&& ...__args [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/experimental/ |
optional | 226 template <class... _Args> 229 explicit __optional_storage(in_place_t, _Args&&... __args) 230 : __val_(_VSTD::forward<_Args>(__args)...), 277 template <class... _Args> 280 explicit __optional_storage(in_place_t, _Args&&... __args) 281 : __val_(_VSTD::forward<_Args>(__args)...), 314 template <class... _Args, 317 is_constructible<value_type, _Args...>::value 322 explicit optional(in_place_t, _Args&&... __args) 323 : __base(in_place, _VSTD::forward<_Args>(__args)...) { [all...] |
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/libcxx/include/experimental/ |
optional | 226 template <class... _Args> 229 explicit __optional_storage(in_place_t, _Args&&... __args) 230 : __val_(_VSTD::forward<_Args>(__args)...), 277 template <class... _Args> 280 explicit __optional_storage(in_place_t, _Args&&... __args) 281 : __val_(_VSTD::forward<_Args>(__args)...), 314 template <class... _Args, 317 is_constructible<value_type, _Args...>::value 322 explicit optional(in_place_t, _Args&&... __args) 323 : __base(in_place, _VSTD::forward<_Args>(__args)...) { [all...] |
/external/clang/test/CXX/except/except.spec/ |
canonical.cpp | 11 template <class _Tp, class... _Args> 14 static const bool value = noexcept(_Tp(declval<_Args>()...));
|
/external/libcxx/test/std/thread/thread.threads/thread.thread.class/thread.thread.constr/ |
constr.fail.cpp | 13 // template <class _Fp, class ..._Args, 14 // explicit thread(_Fp&& __f, _Args&&... __args);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.constr/ |
constr.fail.cpp | 13 // template <class _Fp, class ..._Args, 14 // explicit thread(_Fp&& __f, _Args&&... __args);
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_shelve.py | 118 x= shelve.Shelf({}, **self._args) 121 x= shelve.open(self.fn+str(self.counter), **self._args) 133 _args={'protocol':0} variable in class:TestAsciiFileShelve 136 _args={'protocol':1} variable in class:TestBinaryFileShelve 139 _args={'protocol':2} variable in class:TestProto2FileShelve 142 _args={'protocol':0} variable in class:TestAsciiMemShelve 145 _args={'protocol':1} variable in class:TestBinaryMemShelve 148 _args={'protocol':2} variable in class:TestProto2MemShelve
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_shelve.py | 118 x= shelve.Shelf({}, **self._args) 121 x= shelve.open(self.fn+str(self.counter), **self._args) 133 _args={'protocol':0} variable in class:TestAsciiFileShelve 136 _args={'protocol':1} variable in class:TestBinaryFileShelve 139 _args={'protocol':2} variable in class:TestProto2FileShelve 142 _args={'protocol':0} variable in class:TestAsciiMemShelve 145 _args={'protocol':1} variable in class:TestBinaryMemShelve 148 _args={'protocol':2} variable in class:TestProto2MemShelve
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_shelve.py | 118 x= shelve.Shelf({}, **self._args) 121 x= shelve.open(self.fn+str(self.counter), **self._args) 133 _args={'protocol':0} variable in class:TestAsciiFileShelve 136 _args={'protocol':1} variable in class:TestBinaryFileShelve 139 _args={'protocol':2} variable in class:TestProto2FileShelve 142 _args={'protocol':0} variable in class:TestAsciiMemShelve 145 _args={'protocol':1} variable in class:TestBinaryMemShelve 148 _args={'protocol':2} variable in class:TestProto2MemShelve
|