Lines Matching defs:IsPointer
4183 unsigned IsPointer : 1;
4189 CatchHandlerType(QualType QT, Unique) : QT(QT), IsPointer(false) {}
4195 CatchHandlerType(QualType Q) : QT(Q), IsPointer(false) {
4197 IsPointer = true;
4200 if (IsPointer || QT->isReferenceType())
4207 CatchHandlerType(QualType QT, bool IsPointer)
4208 : QT(QT), IsPointer(IsPointer) {}
4211 bool isPointer() const { return IsPointer; }
4216 if (LHS.IsPointer != RHS.IsPointer)