Lines Matching defs:IsPointer
4077 unsigned IsPointer : 1;
4083 CatchHandlerType(QualType QT, Unique) : QT(QT), IsPointer(false) {}
4089 CatchHandlerType(QualType Q) : QT(Q), IsPointer(false) {
4091 IsPointer = true;
4094 if (IsPointer || QT->isReferenceType())
4101 CatchHandlerType(QualType QT, bool IsPointer)
4102 : QT(QT), IsPointer(IsPointer) {}
4105 bool isPointer() const { return IsPointer; }
4110 if (LHS.IsPointer != RHS.IsPointer)