Home | History | Annotate | Download | only in Sema

Lines Matching defs:CVR

4216     // Note that we only want to check address spaces and cvr-qualifiers here.
4690 unsigned CVR = FromQs.getCVRQualifiers() & ~ToQs.getCVRQualifiers();
4691 if (CVR) {
4694 << Method->getDeclName() << FromRecordType << (CVR - 1)
6124 for (unsigned CVR = BaseCVR+1; CVR <= Qualifiers::CVRMask; ++CVR) {
6125 if ((CVR | BaseCVR) != CVR) continue;
6128 if ((CVR & Qualifiers::Volatile) && !hasVolatile) continue;
6129 if ((CVR & Qualifiers::Restrict) && !hasRestrict) continue;
6130 QualType QPointeeTy = Context.getCVRQualifiedType(PointeeTy, CVR);
6168 // Iterate through all strict supersets of the pointee type's CVR
6171 for (unsigned CVR = BaseCVR+1; CVR <= Qualifiers::CVRMask; ++CVR) {
6172 if ((CVR | BaseCVR) != CVR) continue;
6174 QualType QPointeeTy = Context.getCVRQualifiedType(PointeeTy, CVR);
7971 unsigned CVR = FromQs.getCVRQualifiers() & ~ToQs.getCVRQualifiers();
7972 assert(CVR && "unexpected qualifiers mismatch");
7978 << FromTy << (CVR - 1);
7983 << FromTy << (CVR - 1) << I+1;