HomeSort by relevance Sort by last modified time
    Searched refs:Args (Results 1 - 25 of 2185) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
ext-blocks.cpp 4 template<typename ...Args>
5 int f0(Args ...args) {
7 return sizeof...(Args);
9 return sizeof...(args);
13 template<typename ...Args>
14 int f1(Args ...args) {
16 return f0(args...);
23 template<typename ...Args>
    [all...]
  /external/clang/test/SemaCXX/
issue547.cpp 9 template<typename R, typename ...Args>
10 struct classify_function<R(Args...)> {
14 template<typename R, typename ...Args>
15 struct classify_function<R(Args...) const> {
19 template<typename R, typename ...Args>
20 struct classify_function<R(Args...) volatile> {
24 template<typename R, typename ...Args>
25 struct classify_function<R(Args...) const volatile> {
29 template<typename R, typename ...Args>
30 struct classify_function<R(Args..., ...)>
    [all...]
  /external/parameter-framework/upstream/utility/
Memory.hpp 40 template <class T, class... Args>
41 std::unique_ptr<T> make_unique(Args &&... args)
43 return std::unique_ptr<T>(new T(std::forward<Args>(args)...));
  /external/clang/test/CXX/special/class.conv/class.conv.ctor/
p1.cpp 7 template <typename Arg0, typename... Args>
8 void_type(Arg0&&, Args&&...) { }
13 template <typename... Args>
14 void_type2(Args&&...) { }
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
p22.cpp 7 template<class ... Args> int& f(Args ... args);
8 template<class T1, class ... Args> float& f(T1 a1, Args ... args);
p8-0x.cpp 11 template<class C, typename R, typename ...Args>
12 struct member_pointer_kind<R (C::*)(Args...)> {
16 template<class C, typename R, typename ...Args>
17 struct member_pointer_kind<R (C::*)(Args...) &> {
21 template<class C, typename R, typename ...Args>
22 struct member_pointer_kind<R (C::*)(Args...) &&> {
26 template<class C, typename R, typename ...Args>
27 struct member_pointer_kind<R (C::*)(Args...) const> {
31 template<class C, typename R, typename ...Args>
32 struct member_pointer_kind<R (C::*)(Args...) const &>
    [all...]
  /external/clang/unittests/AST/
DeclTest.cpp 29 std::vector<std::string> Args(1, "-std=c++11");
30 Args.push_back("-fno-ms-extensions");
51 Args));
58 Args));
  /external/libchrome/base/mac/
bind_objc_block.h 36 template<typename R, typename... Args>
37 R RunBlock(base::mac::ScopedBlock<R(^)(Args...)> block, Args... args) {
38 R(^extracted_block)(Args...) = block.get();
39 return extracted_block(args...);
46 template<typename R, typename... Args>
47 base::Callback<R(Args...)> BindBlock(R(^block)(Args...)) {
49 &base::internal::RunBlock<R, Args...>
    [all...]
  /external/libcxx/test/support/
test_convertible.hpp 13 // "test_convertible<Tp, Args...>()" is a metafunction used to check if 'Tp'
14 // is implicitly convertible from 'Args...' for any number of arguments,
29 template <class Tp, class ...Args>
31 -> decltype(eat_type<Tp>({std::declval<Args>()...}), true)
34 template <class Tp, class ...Args>
38 template <class Tp, class ...Args>
40 { return detail::test_convertible_imp<Tp, Args...>(0); }
  /frameworks/native/libs/vr/libpdx/private/pdx/rpc/
argument_encoder.h 25 template <typename... Args>
26 class ArgumentEncoder<void(Args...)> {
31 void EncodeArguments(Args... args) {
32 Serialize(std::forward_as_tuple(args...), writer_);
40 template <typename Return, typename... Args>
41 class ArgumentEncoder<Return(Args...)> {
49 void EncodeArguments(Args... args) {
50 Serialize(std::forward_as_tuple(args...), writer_)
    [all...]
  /external/parameter-framework/upstream/test/functional-tests/include/
FailureWrapper.hpp 59 template <class... Args>
60 FailureWrapper(Args &&... args) : Base(std::forward<Args>(args)...)
68 * @param[in] args parameters to call method call with. */
69 template <class K, class... MArgs, class... Args>
70 void mayFailCall(bool (K::*method)(MArgs...) const, Args &&... args) const
72 wrapCall<bool>(*this, method, std::forward<Args>(args)...)
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/support/
uses_alloc_types.hpp 22 // (1) UA_AllocArg: 'T(allocator_arg_t, Alloc const&, Args&&...)'
23 // (2) UA_AllocLast: 'T(Args&&..., Alloc const&)'
92 template <bool IsZero, size_t N, class ArgList, class ...Args>
95 template <class ArgList, class ...Args>
96 struct TakeNImp<true, 0, ArgList, Args...> {
104 template <size_t N, class ...Args>
105 struct TakeNArgs : TakeNImp<N == 0, N, ArgumentListID<>, Args...> {};
156 template <class ...Args>
157 UsesAllocatorTestBase(std::allocator_arg_t, CtorAlloc const& a, Args&&...)
158 : args_id(&makeArgumentID<Args&&...>())
    [all...]
  /external/libchrome/base/
bind.h 27 template <typename Functor, typename... Args>
28 inline base::Callback<MakeUnboundRunType<Functor, Args...>> Bind(
30 Args&&... args) {
31 using BindState = internal::MakeBindStateType<Functor, Args...>;
32 using UnboundRunType = MakeUnboundRunType<Functor, Args...>;
37 std::forward<Args>(args)...),
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
VectorExtras.h 29 va_list Args;
30 va_start(Args, A);
33 while (T Val = va_arg(Args, T))
35 va_end(Args);
  /external/clang/lib/Tooling/
ArgumentsAdjusters.cpp 22 return [](const CommandLineArguments &Args, StringRef /*unused*/) {
24 for (size_t i = 0, e = Args.size(); i != e; ++i) {
25 StringRef Arg = Args[i];
29 AdjustedArgs.push_back(Args[i]);
37 return [](const CommandLineArguments &Args, StringRef /*unused*/) {
39 for (size_t i = 0, e = Args.size(); i < e; ++i) {
40 StringRef Arg = Args[i];
42 AdjustedArgs.push_back(Args[i]);
56 return [Extra, Pos](const CommandLineArguments &Args, StringRef /*unused*/) {
57 CommandLineArguments Return(Args);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/
thread.h 39 template <class Function, class... Args>
40 explicit thread(Function &&f, Args &&... args) {
41 f(std::forward<Args>(args)...);
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/
thread.h 39 template <class Function, class... Args>
40 explicit thread(Function &&f, Args &&... args) {
41 f(std::forward<Args>(args)...);
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/
thread.h 39 template <class Function, class... Args>
40 explicit thread(Function &&f, Args &&... args) {
41 f(std::forward<Args>(args)...);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
thread.h 39 template <class Function, class... Args>
40 explicit thread(Function &&f, Args &&... args) {
41 f(std::forward<Args>(args)...);
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/
thread.h 39 template <class Function, class... Args>
40 explicit thread(Function &&f, Args &&... args) {
41 f(std::forward<Args>(args)...);
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/
thread.h 39 template <class Function, class... Args>
40 explicit thread(Function &&f, Args &&... args) {
41 f(std::forward<Args>(args)...);
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/
thread.h 39 template <class Function, class... Args>
40 explicit thread(Function &&f, Args &&... args) {
41 f(std::forward<Args>(args)...);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
thread.h 39 template <class Function, class... Args>
40 explicit thread(Function &&f, Args &&... args) {
41 f(std::forward<Args>(args)...);
  /external/libcxx/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/
construct_types.pass.cpp 17 // template <class U, class ...Args>
18 // void polymorphic_allocator<T>::construct(U *, Args &&...)
42 template <class ...Args>
43 void construct(Args&&... args) {
44 A.construct(ptr, std::forward<Args>(args)...);
54 template <class T, class ...Args>
55 bool doTest(UsesAllocatorType UAExpect, Args&&... args)
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/experimental/memory/memory.polymorphic.allocator.class/memory.polymorphic.allocator.mem/
construct_types.pass.cpp 16 // template <class U, class ...Args>
17 // void polymorphic_allocator<T>::construct(U *, Args &&...)
37 template <class ...Args>
38 void construct(Args&&... args) {
39 A.construct(ptr, std::forward<Args>(args)...);
49 template <class T, class ...Args>
50 bool doTest(UsesAllocatorType UAExpect, Args&&... args)
    [all...]

Completed in 736 milliseconds

1 2 3 4 5 6 7 8 91011>>