/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/ |
D | p1-0x.cpp | 57 template<typename ...Args1, typename ...Args2> 58 typename get_nth_type<0, Args1...>::type first_arg_pair(pair<Args1, Args2>...); // expected-note{{c… 60 template<typename ...Args1, typename ...Args2> 61 typename get_nth_type<1, Args1...>::type second_arg_pair(pair<Args1, Args2>...);
|
/external/llvm-project/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/ |
D | p1-0x.cpp | 57 template<typename ...Args1, typename ...Args2> 58 typename get_nth_type<0, Args1...>::type first_arg_pair(pair<Args1, Args2>...); // expected-note{{c… 60 template<typename ...Args1, typename ...Args2> 61 typename get_nth_type<1, Args1...>::type second_arg_pair(pair<Args1, Args2>...);
|
/external/llvm-project/clang/test/CXX/temp/temp.decls/temp.variadic/ |
D | parameter-matching.cpp | 36 template<typename ...Args1, int ...Indices1> 37 X(tuple<Args1...>, int_tuple<Indices1...>); 41 template<typename ...Args1, int ...Indices1> 42 X<T>::X(tuple<Args1...>, int_tuple<Indices1...>) {} in X() argument
|
D | p5.cpp | 393 template<class ... Args1> struct zip { 395 …typedef Tuple<Pair<Args1, Args2> ... > type; // expected-error{{pack expansion contains parameter …
|
/external/clang/test/CXX/temp/temp.decls/temp.variadic/ |
D | parameter-matching.cpp | 36 template<typename ...Args1, int ...Indices1> 37 X(tuple<Args1...>, int_tuple<Indices1...>); 41 template<typename ...Args1, int ...Indices1> 42 X<T>::X(tuple<Args1...>, int_tuple<Indices1...>) {} in X() argument
|
D | p5.cpp | 393 template<class ... Args1> struct zip { 395 …typedef Tuple<Pair<Args1, Args2> ... > type; // expected-error{{pack expansion contains parameter …
|
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
D | TensorSyclTuple.h | 214 template <typename... Args1, typename... Args2, size_t... I1, size_t... I2> 215 Tuple<Args1..., Args2...> append_base(Tuple<Args1...> t1, Tuple<Args2...> t2, IndexList<I1...>, Ind… 228 template <typename... Args1, typename... Args2> 229 Tuple<Args1..., Args2...> append(Tuple<Args1...> t1,Tuple<Args2...> t2) { 230 …return utility::tuple::append_base(t1, t2, IndexRange<0, sizeof...(Args1)>(), IndexRange<0, sizeof…
|
/external/jcommander/src/test/java/com/beust/jcommander/ |
D | ParametersNotEmptyTest.java | 14 public class Args1 { class in ParametersNotEmptyTest 24 JCommander jc = new JCommander(new Args1()); in testParameters()
|
D | JCommanderTest.java | 91 Args1 args = new Args1(); in simpleArgs() 140 Args1 args = new Args1(); in repeatedArgs() 151 Args1 args = new Args1(); in requiredFields1Fail() 170 Args1 args = new Args1(); in multipleNames() 393 Args1 args = new Args1(); in badParameterShouldThrowParameter1Exception() 400 Args1 args = new Args1(); in badParameterShouldThrowParameter2Exception() 464 Args1 a = new Args1(); in negativeNumber() 478 JCommander jc = new JCommander(new Args1(), "-log", "1"); in usageShouldNotChange() 482 jc = new JCommander(new Args1(), "-debug", "-log", "2", "-long", "5"); in usageShouldNotChange() 577 JCommander jc = new JCommander(new Args1()); in getParametersShouldNotNpe() [all …]
|
/external/jcommander/src/test/java/com/beust/jcommander/args/ |
D | Args1.java | 29 public class Args1 { class
|
/external/llvm-project/llvm/unittests/Option/ |
D | OptionParsingTest.cpp | 343 const char *Args1[] = {"-AIJ", "-AIJoo", "-AC=1"}; in TEST() local 344 InputArgList AL = T.ParseArgs(Args1, MAI, MAC); in TEST()
|
/external/llvm-project/llvm/lib/Transforms/Instrumentation/ |
D | MemProfiler.cpp | 537 SmallVector<Type *, 2> Args1{1, IntptrTy}; in initializeCallbacks() local 544 FunctionType::get(IRB.getVoidTy(), Args1, false)); in initializeCallbacks()
|
D | AddressSanitizer.cpp | 2537 SmallVector<Type *, 2> Args1{1, IntptrTy}; in initializeCallbacks() local 2541 Args1.push_back(ExpType); in initializeCallbacks() 2557 FunctionType::get(IRB.getVoidTy(), Args1, false)); in initializeCallbacks() 2562 FunctionType::get(IRB.getVoidTy(), Args1, false)); in initializeCallbacks()
|
/external/clang/lib/Sema/ |
D | SemaTemplateDeduction.cpp | 4222 SmallVector<QualType, 4> Args1; in isAtLeastAsSpecializedAs() local 4228 AddImplicitObjectParameterType(S.Context, Method1, Args1); in isAtLeastAsSpecializedAs() 4235 Args1.insert(Args1.end(), Proto1->param_type_begin(), in isAtLeastAsSpecializedAs() 4243 if (Args1.size() > NumComparedArguments) in isAtLeastAsSpecializedAs() 4244 Args1.resize(NumComparedArguments); in isAtLeastAsSpecializedAs() 4248 Args1.data(), Args1.size(), Info, Deduced, in isAtLeastAsSpecializedAs()
|
/external/libcxx/include/ |
D | scoped_allocator | 77 template <class T1, class T2, class... Args1, class... Args2> 78 void construct(pair<T1, T2>* p, piecewise_construct t, tuple<Args1...> x,
|
D | utility | 78 template <class... Args1, class... Args2> 79 pair(piecewise_construct_t, tuple<Args1...> first_args,
|
/external/llvm-project/libcxx/include/ |
D | scoped_allocator | 76 template <class T1, class T2, class... Args1, class... Args2> 77 void construct(pair<T1, T2>* p, piecewise_construct t, tuple<Args1...> x,
|
D | utility | 77 template <class... Args1, class... Args2> 78 pair(piecewise_construct_t, tuple<Args1...> first_args,
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaTemplateDeduction.cpp | 5125 SmallVector<QualType, 4> Args1; in isAtLeastAsSpecializedAs() local 5131 AddImplicitObjectParameterType(S.Context, Method1, Args1); in isAtLeastAsSpecializedAs() 5139 AddImplicitObjectParameterType(S.Context, Method1, Args1); in isAtLeastAsSpecializedAs() 5144 Args1.insert(Args1.end(), Proto1->param_type_begin(), in isAtLeastAsSpecializedAs() 5152 if (Args1.size() > NumComparedArguments) in isAtLeastAsSpecializedAs() 5153 Args1.resize(NumComparedArguments); in isAtLeastAsSpecializedAs() 5159 Args1.data(), Args1.size(), Info, Deduced, in isAtLeastAsSpecializedAs()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/ |
D | AddressSanitizer.cpp | 2483 SmallVector<Type *, 2> Args1{1, IntptrTy}; in initializeCallbacks() local 2487 Args1.push_back(ExpType); in initializeCallbacks() 2503 FunctionType::get(IRB.getVoidTy(), Args1, false)); in initializeCallbacks() 2508 FunctionType::get(IRB.getVoidTy(), Args1, false)); in initializeCallbacks()
|