reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1058 if (!T->isAnyPointerType()) 1060 if (T->isObjCObjectPointerType() || T->isObjCBuiltinType() || 1060 if (T->isObjCObjectPointerType() || T->isObjCBuiltinType() || 1061 T->isBlockPointerType() || T->isFunctionPointerType() || 1061 T->isBlockPointerType() || T->isFunctionPointerType() || 1062 ento::coreFoundation::isCFObjectRef(T)) 1066 QualType OrigT = T; 1067 while (const TypedefType *TD = dyn_cast<TypedefType>(T.getTypePtr())) 1068 T = TD->getDecl()->getUnderlyingType(); 1069 if (OrigT == T || !T->isPointerType()) 1069 if (OrigT == T || !T->isPointerType()) 1071 const PointerType* PT = T->getAs<PointerType>();