Home | History | Annotate | Download | only in Analysis

Lines Matching full:argty

260 ArgType::matchesType(ASTContext &C, QualType argTy) const {
263 const PointerType *PT = argTy->getAs<PointerType>();
271 argTy = PT->getPointeeType();
282 if (const EnumType *ETy = argTy->getAs<EnumType>())
283 argTy = ETy->getDecl()->getIntegerType();
285 if (const BuiltinType *BT = argTy->getAs<BuiltinType>())
299 if (const EnumType *ETy = argTy->getAs<EnumType>())
300 argTy = ETy->getDecl()->getIntegerType();
301 argTy = C.getCanonicalType(argTy).getUnqualifiedType();
303 if (T == argTy)
306 if (const BuiltinType *BT = argTy->getAs<BuiltinType>())
337 const PointerType *PT = argTy->getAs<PointerType>();
357 const PointerType *PT = argTy->getAs<PointerType>();
368 argTy->isPromotableIntegerType()
369 ? C.getPromotedIntegerType(argTy) : argTy;
384 if (argTy->isVoidPointerType()) {
386 } if (argTy->isPointerType() || argTy->isObjCObjectPointerType() ||
387 argTy->isBlockPointerType() || argTy->isNullPtrType()) {
394 if (argTy->getAs<ObjCObjectPointerType>() ||
395 argTy->getAs<BlockPointerType>())
399 if (const PointerType *PT = argTy->getAs<PointerType>()) {