Home | History | Annotate | Download | only in Sema

Lines Matching refs:PointeeTy

6097   QualType PointeeTy;
6102 PointeeTy = PTy->getPointeeType();
6109 PointeeTy = PointerTy->getPointeeType();
6115 if (PointeeTy->isArrayType())
6117 unsigned BaseCVR = PointeeTy.getCVRQualifiers();
6118 if (const ConstantArrayType *Array =Context.getAsConstantArrayType(PointeeTy))
6130 QualType QPointeeTy = Context.getCVRQualifiedType(PointeeTy, CVR);
6159 QualType PointeeTy = PointerTy->getPointeeType();
6164 if (PointeeTy->isArrayType())
6170 unsigned BaseCVR = PointeeTy.getCVRQualifiers();
6174 QualType QPointeeTy = Context.getCVRQualifiedType(PointeeTy, CVR);
6591 QualType PointeeTy = ParamTy->getPointeeType();
6592 if (!PointeeTy->isObjectType() && !PointeeTy->isFunctionType())
6595 if (const FunctionProtoType *Proto =PointeeTy->getAs<FunctionProtoType>())
6599 S.AddBuiltinCandidate(S.Context.getLValueReferenceType(PointeeTy),
6829 QualType PointeeTy = (*Ptr)->getPointeeType();
6830 if (!PointeeTy->isObjectType())