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

1 2

  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
injected-class-name.cpp 49 template<typename R, typename ...ArgTypes>
50 struct X<R(ArgTypes...)> {
51 X<R(ArgTypes...)> f();
54 template<typename R, typename ...ArgTypes>
55 X<R(ArgTypes...)> X<R(ArgTypes...)>::f() { return *this; }
61 template<typename ...ArgTypes> int g(ArgTypes...);
65 template<typename R, typename ...ArgTypes>
66 struct X1<R(ArgTypes...)>
    [all...]
  /ndk/tests/device/issue35933-lambda/jni/
issue35933-lambda.cpp 17 template <class Callable, typename... ArgTypes>
18 void* Call(Callable native_func, ArgTypes&&... args) noexcept
21 return native_func(std::forward<ArgTypes>(args)...);
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
p21.cpp 11 template<class R, class ... ArgTypes> struct X<R(int, ArgTypes ...)> {
  /external/clang/test/CodeGenCXX/
mangle-variadic-templates.cpp 54 template<typename R, typename ...ArgTypes> identity<R(ArgTypes...)> f5() {}
  /external/clang/lib/CodeGen/
CGCUDANV.cpp 82 std::vector<llvm::Type *> ArgTypes;
88 ArgTypes.push_back(cast<llvm::PointerType>(V->getType())->getElementType());
91 CGF.getLLVMContext(), ArgTypes);
102 llvm::ConstantExpr::getSizeOf(ArgTypes[I]),
CGCall.cpp 125 SmallVector<CanQualType, 16> argTypes;
126 return ::arrangeFreeFunctionType(*this, argTypes, FTP);
187 SmallVector<CanQualType, 16> argTypes;
191 argTypes.push_back(GetThisType(Context, RD));
193 argTypes.push_back(Context.VoidPtrTy);
195 return ::arrangeCXXMethodType(*this, argTypes,
224 SmallVector<CanQualType, 16> argTypes;
225 argTypes.push_back(GetThisType(Context, D->getParent()));
229 TheCXXABI.HasThisReturn(GD) ? argTypes.front() : Context.VoidTy;
235 argTypes.push_back(FTP->getParamType(i))
    [all...]
CGStmt.cpp     [all...]
CodeGenFunction.h     [all...]
CodeGenFunction.cpp 593 SmallVector<QualType, 16> ArgTypes;
596 ArgTypes.push_back((*i)->getType());
600 getContext().getFunctionType(RetTy, ArgTypes,
    [all...]
MicrosoftCXXABI.cpp 656 llvm::Type *ArgTypes[] = {CGF.Int8PtrTy};
658 llvm::FunctionType::get(CGF.Int8PtrTy, ArgTypes, false);
707 llvm::Type *ArgTypes[] = {CGF.Int8PtrTy, CGF.Int32Ty, CGF.Int8PtrTy,
710 llvm::FunctionType::get(CGF.Int8PtrTy, ArgTypes, false),
728 llvm::Type *ArgTypes[] = {CGF.Int8PtrTy};
730 llvm::FunctionType::get(CGF.Int8PtrTy, ArgTypes, false),
    [all...]
CGExpr.cpp     [all...]
CGObjCGNU.cpp     [all...]
  /external/valgrind/main/none/tests/amd64/
gen_insn_test.pl 7 our %ArgTypes = (
256 print qq| $ArgTypes{$type} $name = \{ .$subtype = \{|;
293 print qq| $ArgTypes{$type} $name = \{ .$subtype = \{|;
378 print qq| $ArgTypes{$type} $name = \{ .$subtype = \{|;
415 print qq| $ArgTypes{$type} $name = \{ .$subtype = \{|;
503 print qq| $ArgTypes{$type} $name|;
526 print qq| $ArgTypes{$type} $name;\n|;
545 print qq| $ArgTypes{$type} $name;\n|;
563 print qq| $ArgTypes{eflags} $name;\n|;
587 print qq| $ArgTypes{fpucw} $name;\n|
    [all...]
  /external/valgrind/main/none/tests/x86/
gen_insn_test.pl 7 our %ArgTypes = (
233 print qq| $ArgTypes{$type} $name = \{ .$subtype = \{|;
270 print qq| $ArgTypes{$type} $name = \{ .$subtype = \{|;
355 print qq| $ArgTypes{$type} $name = \{ .$subtype = \{|;
392 print qq| $ArgTypes{$type} $name = \{ .$subtype = \{|;
480 print qq| $ArgTypes{$type} $name|;
503 print qq| $ArgTypes{$type} $name;\n|;
522 print qq| $ArgTypes{$type} $name;\n|;
540 print qq| $ArgTypes{eflags} $name;\n|;
564 print qq| $ArgTypes{fpucw} $name;\n|
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
DataFlowSanitizer.cpp 344 llvm::SmallVector<Type *, 4> ArgTypes;
345 std::copy(T->param_begin(), T->param_end(), std::back_inserter(ArgTypes));
347 ArgTypes.push_back(ShadowTy);
349 ArgTypes.push_back(ShadowPtrTy);
353 return FunctionType::get(RetType, ArgTypes, T->isVarArg());
358 llvm::SmallVector<Type *, 4> ArgTypes;
359 ArgTypes.push_back(T->getPointerTo());
360 std::copy(T->param_begin(), T->param_end(), std::back_inserter(ArgTypes));
362 ArgTypes.push_back(ShadowTy);
365 ArgTypes.push_back(ShadowPtrTy)
    [all...]
  /external/llvm/lib/Target/R600/
AMDGPUPromoteAlloca.cpp 340 std::vector<Type*> ArgTypes;
343 ArgTypes.push_back(Call->getArgOperand(ArgIdx)->getType());
346 FunctionType *NewType = FunctionType::get(Call->getType(), ArgTypes,
  /external/clang/lib/Rewrite/Frontend/
RewriteModernObjC.cpp 430 SmallVectorImpl<QualType> &ArgTypes,
    [all...]
RewriteObjC.cpp 364 SmallVectorImpl<QualType> &ArgTypes,
    [all...]
  /external/llvm/lib/Transforms/Utils/
CloneFunction.cpp 216 std::vector<Type*> ArgTypes;
224 ArgTypes.push_back(I->getType());
228 ArgTypes, F->getFunctionType()->isVarArg());
CodeExtractor.cpp 452 std::vector<Type*> ArgTypes;
455 ArgTypes.push_back((*v)->getType());
458 Type *StructArgTy = StructType::get(newFunction->getContext(), ArgTypes);
  /external/llvm/examples/ExceptionDemo/
ExceptionDemo.cpp 195 typedef std::vector<llvm::Type*> ArgTypes;
215 const ArgTypes &theArgTypes,
    [all...]
  /external/clang/lib/Sema/
SemaExprCXX.cpp     [all...]
SemaExpr.cpp     [all...]
  /external/clang/lib/AST/
ASTContext.cpp     [all...]
ASTImporter.cpp     [all...]

Completed in 686 milliseconds

1 2