HomeSort by relevance Sort by last modified time
    Searched full:_args (Results 1 - 25 of 524) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/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...]
alloc_traits.h 73 typename _Up, typename... _Args>
74 struct __alloctr_rebind<_Alloc<_Up, _Args...>, _Tp, false>
76 typedef _Alloc<_Tp, _Args...> __type;
234 template<typename _Tp, typename... _Args>
239 std::declval<_Tp*>(), std::declval<_Args>()...))>
249 template<typename _Tp, typename... _Args>
251 enable_if<__construct_helper<_Tp, _Args...>::value, void>::type
252 _S_construct(_Alloc& __a, _Tp* __p, _Args&&... __args)
253 { __a.construct(__p, std::forward<_Args>(__args)...); }
255 template<typename _Tp, typename... _Args>
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/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...]
alloc_traits.h 73 typename _Up, typename... _Args>
74 struct __alloctr_rebind<_Alloc<_Up, _Args...>, _Tp, false>
76 typedef _Alloc<_Tp, _Args...> __type;
234 template<typename _Tp, typename... _Args>
239 std::declval<_Tp*>(), std::declval<_Args>()...))>
249 template<typename _Tp, typename... _Args>
251 enable_if<__construct_helper<_Tp, _Args...>::value, void>::type
252 _S_construct(_Alloc& __a, _Tp* __p, _Args&&... __args)
253 { __a.construct(__p, std::forward<_Args>(__args)...); }
255 template<typename _Tp, typename... _Args>
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/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...]
alloc_traits.h 74 typename _Up, typename... _Args>
75 struct __alloctr_rebind<_Alloc<_Up, _Args...>, _Tp, false>
77 typedef _Alloc<_Tp, _Args...> __type;
235 template<typename _Tp, typename... _Args>
240 std::declval<_Tp*>(), std::declval<_Args>()...))>
250 template<typename _Tp, typename... _Args>
252 enable_if<__construct_helper<_Tp, _Args...>::value, void>::type
253 _S_construct(_Alloc& __a, _Tp* __p, _Args&&... __args)
254 { __a.construct(__p, std::forward<_Args>(__args)...); }
256 template<typename _Tp, typename... _Args>
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/
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...]
future 169 template<typename _Fn, typename... _Args>
170 future<typename result_of<_Fn(_Args...)>::type>
171 async(launch __policy, _Fn&& __fn, _Args&&... __args);
173 template<typename _Fn, typename... _Args>
174 future<typename result_of<_Fn(_Args...)>::type>
175 async(_Fn&& __fn, _Args&&... __args);
643 template<typename _Fn, typename... _Args>
644 friend future<typename result_of<_Fn(_Args...)>::type>
645 async(launch, _Fn&&, _Args&&...);
686 template<typename _Fn, typename... _Args>
    [all...]
  /external/chromium_org/gpu/command_buffer/service/
mocks.cc 21 const void* _args) {
26 static_cast<const cmd::SetToken*>(_args);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/
functional 219 template<typename _Functor, typename... _Args>
225 typename result_of<_Functor(_Args&&...)>::type
227 __invoke(_Functor& __f, _Args&&... __args)
229 return __f(std::forward<_Args>(__args)...);
232 template<typename _Functor, typename... _Args>
238 typename result_of<_Functor(_Args&&...)>::type
240 __invoke(_Functor& __f, _Args&&... __args)
242 return mem_fn(__f)(std::forward<_Args>(__args)...);
246 template<typename _Functor, typename... _Args>
251 typename result_of<_Functor(_Args&&...)>::typ
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/
functional 219 template<typename _Functor, typename... _Args>
225 typename result_of<_Functor(_Args&&...)>::type
227 __invoke(_Functor& __f, _Args&&... __args)
229 return __f(std::forward<_Args>(__args)...);
232 template<typename _Functor, typename... _Args>
238 typename result_of<_Functor(_Args&&...)>::type
240 __invoke(_Functor& __f, _Args&&... __args)
242 return mem_fn(__f)(std::forward<_Args>(__args)...);
246 template<typename _Functor, typename... _Args>
251 typename result_of<_Functor(_Args&&...)>::typ
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/
functional 219 template<typename _Functor, typename... _Args>
225 typename result_of<_Functor(_Args&&...)>::type
227 __invoke(_Functor& __f, _Args&&... __args)
229 return __f(std::forward<_Args>(__args)...);
232 template<typename _Functor, typename... _Args>
238 typename result_of<_Functor(_Args&&...)>::type
240 __invoke(_Functor& __f, _Args&&... __args)
242 return mem_fn(__f)(std::forward<_Args>(__args)...);
246 template<typename _Functor, typename... _Args>
251 typename result_of<_Functor(_Args&&...)>::typ
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/
functional 219 template<typename _Functor, typename... _Args>
225 typename result_of<_Functor(_Args&&...)>::type
227 __invoke(_Functor& __f, _Args&&... __args)
229 return __f(std::forward<_Args>(__args)...);
232 template<typename _Functor, typename... _Args>
238 typename result_of<_Functor(_Args&&...)>::type
240 __invoke(_Functor& __f, _Args&&... __args)
242 return mem_fn(__f)(std::forward<_Args>(__args)...);
246 template<typename _Functor, typename... _Args>
251 typename result_of<_Functor(_Args&&...)>::typ
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/
scoped_allocator 147 template<typename... _Args>
149 __inner_type_impl(_Args&&... __args)
150 : _M_inner(std::forward<_Args>(__args)...) { }
194 template<typename _Tp, typename... _Args>
196 _M_construct(__uses_alloc0, _Tp* __p, _Args&&... __args)
201 __o_traits::construct(__outer, __p, std::forward<_Args>(__args)...);
207 template<typename _Tp, typename... _Args>
209 _M_construct(__uses_alloc1_, _Tp* __p, _Args&&... __args)
215 std::forward<_Args>(__args)...);
218 template<typename _Tp, typename... _Args>
    [all...]
functional 225 template<typename _Functor, typename... _Args>
231 typename result_of<_Functor(_Args&&...)>::type
233 __invoke(_Functor& __f, _Args&&... __args)
235 return __f(std::forward<_Args>(__args)...);
238 template<typename _Functor, typename... _Args>
244 typename result_of<_Functor(_Args&&...)>::type
246 __invoke(_Functor& __f, _Args&&... __args)
248 return mem_fn(__f)(std::forward<_Args>(__args)...);
252 template<typename _Functor, typename... _Args>
257 typename result_of<_Functor(_Args&&...)>::typ
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/
scoped_allocator 147 template<typename... _Args>
149 __inner_type_impl(_Args&&... __args)
150 : _M_inner(std::forward<_Args>(__args)...) { }
194 template<typename _Tp, typename... _Args>
196 _M_construct(__uses_alloc0, _Tp* __p, _Args&&... __args)
201 __o_traits::construct(__outer, __p, std::forward<_Args>(__args)...);
207 template<typename _Tp, typename... _Args>
209 _M_construct(__uses_alloc1_, _Tp* __p, _Args&&... __args)
215 std::forward<_Args>(__args)...);
218 template<typename _Tp, typename... _Args>
    [all...]
functional 225 template<typename _Functor, typename... _Args>
231 typename result_of<_Functor(_Args&&...)>::type
233 __invoke(_Functor& __f, _Args&&... __args)
235 return __f(std::forward<_Args>(__args)...);
238 template<typename _Functor, typename... _Args>
244 typename result_of<_Functor(_Args&&...)>::type
246 __invoke(_Functor& __f, _Args&&... __args)
248 return mem_fn(__f)(std::forward<_Args>(__args)...);
252 template<typename _Functor, typename... _Args>
257 typename result_of<_Functor(_Args&&...)>::typ
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/page/
page_test_runner.py 28 self._args = None
79 ps = test.CreatePageSet(self._args, self._options)
83 if len(self._args) < 2:
91 page_set_arg = self._args[1]
150 _, self._args = self._parser.parse_args()
152 if len(self._args) < 1:
160 self.test_class_name, self._args[0], self.test_class_name)
171 if len(self._args) > 2:
  /external/clang/test/CXX/except/except.spec/
canonical.cpp 11 template <class _Tp, class... _Args>
14 static const bool value = noexcept(_Tp(declval<_Args>()...));
  /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
  /prebuilts/python/linux-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
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
__functional_base 295 template <class _Fp, class _A0, class ..._Args,
299 __invoke(_Fp&& __f, _A0&& __a0, _Args&& ...__args)
300 -> decltype((_VSTD::forward<_A0>(__a0).*__f)(_VSTD::forward<_Args>(__args)...))
302 return (_VSTD::forward<_A0>(__a0).*__f)(_VSTD::forward<_Args>(__args)...);
305 template <class _Fp, class _A0, class ..._Args,
309 __invoke(_Fp&& __f, _A0&& __a0, _Args&& ...__args)
310 -> decltype(((*_VSTD::forward<_A0>(__a0)).*__f)(_VSTD::forward<_Args>(__args)...))
312 return ((*_VSTD::forward<_A0>(__a0)).*__f)(_VSTD::forward<_Args>(__args)...);
339 template <class _Fp, class ..._Args>
342 __invoke(_Fp&& __f, _Args&& ...__args
    [all...]

Completed in 1994 milliseconds

1 2 3 4 5 6 7 8 91011>>