HomeSort by relevance Sort by last modified time
    Searched refs:ArgTypes (Results 1 - 25 of 37) 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 55 template<typename R, typename ...ArgTypes> identity<R(ArgTypes...)> f5() {}
  /external/clang/lib/CodeGen/
ObjectFilePCHContainerOperations.cpp 97 SmallVector<QualType, 16> ArgTypes;
99 ArgTypes.push_back(i->getType());
101 QualType FnTy = Ctx.getFunctionType(RetTy, ArgTypes,
113 SmallVector<QualType, 16> ArgTypes;
114 ArgTypes.push_back(D->getSelfType(Ctx, D->getClassInterface(),
116 ArgTypes.push_back(Ctx.getObjCSelType());
118 ArgTypes.push_back(i->getType());
120 QualType FnTy = Ctx.getFunctionType(RetTy, ArgTypes,
CGCUDANV.cpp 121 std::vector<llvm::Type *> ArgTypes;
127 ArgTypes.push_back(cast<llvm::PointerType>(V->getType())->getElementType());
129 llvm::StructType *ArgStackTy = llvm::StructType::get(Context, ArgTypes);
140 llvm::ConstantExpr::getSizeOf(ArgTypes[I]),
CGCall.cpp 142 SmallVector<CanQualType, 16> argTypes;
143 return ::arrangeLLVMFunctionInfo(*this, /*instanceMethod=*/false, argTypes,
189 SmallVector<CanQualType, 16> argTypes;
193 argTypes.push_back(GetThisType(Context, RD));
195 argTypes.push_back(Context.VoidPtrTy);
198 *this, true, argTypes,
226 SmallVector<CanQualType, 16> argTypes;
227 argTypes.push_back(GetThisType(Context, MD->getParent()));
240 appendParameterTypes(*this, argTypes, FTP, MD);
242 TheCXXABI.buildStructorSignature(MD, Type, argTypes);
    [all...]
CGStmt.cpp     [all...]
CodeGenFunction.h     [all...]
CodeGenFunction.cpp 743 SmallVector<QualType, 16> ArgTypes;
746 ArgTypes.push_back((*i)->getType());
750 getContext().getFunctionType(RetTy, ArgTypes,
    [all...]
MicrosoftCXXABI.cpp     [all...]
CGExpr.cpp     [all...]
  /external/llvm/include/llvm/ADT/
Optional.h 74 template<typename ...ArgTypes>
75 void emplace(ArgTypes &&...Args) {
78 new (storage.buffer) T(std::forward<ArgTypes>(Args)...);
SmallVector.h 659 template <typename... ArgTypes> void emplace_back(ArgTypes &&... Args) {
662 ::new ((void *)this->end()) T(std::forward<ArgTypes>(Args)...);
  /external/valgrind/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/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/Target/AMDGPU/
AMDGPUOpenCLImageTypeLoweringPass.cpp 258 SmallVector<Type *, 8> ArgTypes;
266 ArgTypes.push_back(FT->getParamType(i));
274 ArgTypes.push_back(ImageSizeType);
279 ArgTypes.push_back(ImageFormatType);
290 auto NewFT = FunctionType::get(FT->getReturnType(), ArgTypes, false);
AMDGPUPromoteAlloca.cpp 378 std::vector<Type*> ArgTypes;
381 ArgTypes.push_back(Call->getArgOperand(ArgIdx)->getType());
384 FunctionType *NewType = FunctionType::get(Call->getType(), ArgTypes,
  /external/llvm/lib/Transforms/Instrumentation/
DataFlowSanitizer.cpp 381 llvm::SmallVector<Type *, 4> ArgTypes(T->param_begin(), T->param_end());
382 ArgTypes.append(T->getNumParams(), ShadowTy);
384 ArgTypes.push_back(ShadowPtrTy);
388 return FunctionType::get(RetType, ArgTypes, T->isVarArg());
393 llvm::SmallVector<Type *, 4> ArgTypes;
394 ArgTypes.push_back(T->getPointerTo());
395 ArgTypes.append(T->param_begin(), T->param_end());
396 ArgTypes.append(T->getNumParams(), ShadowTy);
399 ArgTypes.push_back(ShadowPtrTy);
400 return FunctionType::get(T->getReturnType(), ArgTypes, false)
    [all...]
  /external/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp 421 SmallVectorImpl<QualType> &ArgTypes,
    [all...]
RewriteObjC.cpp 355 SmallVectorImpl<QualType> &ArgTypes,
    [all...]
  /external/llvm/examples/ExceptionDemo/
ExceptionDemo.cpp 197 typedef std::vector<llvm::Type*> ArgTypes;
217 const ArgTypes &theArgTypes,
    [all...]
  /external/llvm/lib/IR/
IRBuilder.cpp 285 Type *ArgTypes[] = { FuncPtrType };
288 ArgTypes);
  /external/llvm/lib/Transforms/Utils/
CloneFunction.cpp 226 std::vector<Type*> ArgTypes;
233 ArgTypes.push_back(I.getType());
237 ArgTypes, F->getFunctionType()->isVarArg());
    [all...]
CodeExtractor.cpp 454 std::vector<Type*> ArgTypes;
457 ArgTypes.push_back((*v)->getType());
460 StructArgTy = StructType::get(newFunction->getContext(), ArgTypes);

Completed in 659 milliseconds

1 2