Home | History | Annotate | Download | only in Frontend

Lines Matching defs:ArgTypes

430                                         SmallVectorImpl<QualType> &ArgTypes,
2703 SmallVector<QualType, 4> ArgTypes;
2704 ArgTypes.push_back(Context->getObjCIdType());
2705 ArgTypes.push_back(Context->getObjCSelType());
2707 ArgTypes.push_back(PI->getType());
2723 getSimpleFunctionType(returnType, ArgTypes, BoxingMethod->isVariadic());
2832 SmallVector<QualType, 4> ArgTypes;
2833 ArgTypes.push_back(Context->getObjCIdType());
2834 ArgTypes.push_back(Context->getObjCSelType());
2836 ArgTypes.push_back(PI->getType());
2852 getSimpleFunctionType(returnType, ArgTypes, ArrayMethod->isVariadic());
2989 SmallVector<QualType, 8> ArgTypes;
2990 ArgTypes.push_back(Context->getObjCIdType());
2991 ArgTypes.push_back(Context->getObjCSelType());
2999 ArgTypes.push_back(T);
3016 getSimpleFunctionType(returnType, ArgTypes, DictMethod->isVariadic());
3146 /// ArgTypes - type of the arguments passed to objc_msgSend_stret, starting with receiver type.
3152 SmallVectorImpl<QualType> &ArgTypes,
3156 QualType castType = getSimpleFunctionType(returnType, ArgTypes,
3171 for (unsigned i = 2; i < ArgTypes.size(); i++) {
3173 ArgTypes[i].getAsStringInternal(ArgName, Context->getPrintingPolicy());
3177 for (unsigned i = ArgTypes.size(); i < MsgExprs.size(); i++) {
3192 for (unsigned i = 2; i < ArgTypes.size(); i++) {
3196 for (unsigned i = ArgTypes.size(); i < MsgExprs.size(); i++) {
3208 for (unsigned i = 2; i < ArgTypes.size(); i++) {
3212 for (unsigned i = ArgTypes.size(); i < MsgExprs.size(); i++) {
3559 SmallVector<QualType, 8> ArgTypes;
3564 ArgTypes.push_back(Context->getPointerType(getSuperStructType()));
3566 ArgTypes.push_back(Context->getObjCIdType());
3567 ArgTypes.push_back(Context->getObjCSelType());
3576 ArgTypes.push_back(t);
3603 getSimpleFunctionType(returnType, ArgTypes, MD ? MD->isVariadic() : true);
3623 ArgTypes, MsgExprs,
4658 SmallVector<QualType, 8> ArgTypes;
4668 ArgTypes.push_back(t);
4673 FuncType = getSimpleFunctionType(Res, ArgTypes);
4725 SmallVector<QualType, 8> ArgTypes;
4728 ArgTypes.push_back(PtrBlock);
4735 ArgTypes.push_back(t);
4739 QualType PtrToFuncCastType = getSimpleFunctionType(Exp->getType(), ArgTypes);