HomeSort by relevance Sort by last modified time
    Searched defs:ArgTypes (Results 1 - 23 of 23) sorted by null

  /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 113 SmallVector<CanQualType, 16> argTypes;
114 return ::arrangeLLVMFunctionInfo(*this, /*instanceMethod=*/false, argTypes,
159 SmallVector<CanQualType, 16> argTypes;
163 argTypes.push_back(GetThisType(Context, RD));
165 argTypes.push_back(Context.VoidPtrTy);
168 *this, true, argTypes,
196 SmallVector<CanQualType, 16> argTypes;
197 argTypes.push_back(GetThisType(Context, MD->getParent()));
210 argTypes.append(FTP->param_type_begin(), FTP->param_type_end());
212 TheCXXABI.buildStructorSignature(MD, Type, argTypes);
    [all...]
CGStmt.cpp     [all...]
CodeGenFunction.cpp 661 SmallVector<QualType, 16> ArgTypes;
664 ArgTypes.push_back((*i)->getType());
668 getContext().getFunctionType(RetTy, ArgTypes,
    [all...]
CodeGenFunction.h     [all...]
CGBuiltin.cpp     [all...]
CGDebugInfo.cpp     [all...]
CGExpr.cpp     [all...]
CGObjCGNU.cpp     [all...]
MicrosoftCXXABI.cpp     [all...]
  /external/llvm/lib/IR/
IRBuilder.cpp 247 Type *ArgTypes[] = { FuncPtrType };
250 ArgTypes);
  /external/llvm/lib/Target/R600/
AMDGPUPromoteAlloca.cpp 361 std::vector<Type*> ArgTypes;
364 ArgTypes.push_back(Call->getArgOperand(ArgIdx)->getType());
367 FunctionType *NewType = FunctionType::get(Call->getType(), ArgTypes,
  /external/llvm/lib/Transforms/Utils/
CloneFunction.cpp 217 std::vector<Type*> ArgTypes;
225 ArgTypes.push_back(I->getType());
229 ArgTypes, F->getFunctionType()->isVarArg());
CodeExtractor.cpp 453 std::vector<Type*> ArgTypes;
456 ArgTypes.push_back((*v)->getType());
459 StructArgTy = StructType::get(newFunction->getContext(), ArgTypes);
  /external/llvm/examples/ExceptionDemo/
ExceptionDemo.cpp 196 typedef std::vector<llvm::Type*> ArgTypes;
216 const ArgTypes &theArgTypes,
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
DataFlowSanitizer.cpp 373 llvm::SmallVector<Type *, 4> ArgTypes(T->param_begin(), T->param_end());
374 ArgTypes.append(T->getNumParams(), ShadowTy);
376 ArgTypes.push_back(ShadowPtrTy);
380 return FunctionType::get(RetType, ArgTypes, T->isVarArg());
385 llvm::SmallVector<Type *, 4> ArgTypes;
386 ArgTypes.push_back(T->getPointerTo());
387 ArgTypes.append(T->param_begin(), T->param_end());
388 ArgTypes.append(T->getNumParams(), ShadowTy);
391 ArgTypes.push_back(ShadowPtrTy);
392 return FunctionType::get(T->getReturnType(), ArgTypes, false)
    [all...]
  /external/clang/lib/Sema/
SemaExprCXX.cpp     [all...]
SemaDecl.cpp     [all...]
SemaDeclCXX.cpp     [all...]
SemaExpr.cpp     [all...]
  /external/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp 421 SmallVectorImpl<QualType> &ArgTypes,
    [all...]
RewriteObjC.cpp 355 SmallVectorImpl<QualType> &ArgTypes,
    [all...]
  /external/clang/lib/AST/
ASTContext.cpp     [all...]

Completed in 608 milliseconds