Home | History | Annotate | Download | only in Sema

Lines Matching refs:TypeQuals

695       /*TypeQuals=*/0,
717 unsigned &TypeQuals,
731 if (TypeQuals & Qual.first)
737 TypeQuals &= ~Qual.first;
1375 // TypeQuals handled by caller.
1426 // TypeQuals handled by caller.
1436 // TypeQuals handled by caller.
1442 // TypeQuals handled by caller.
1453 // TypeQuals handled by caller.
1474 // TypeQuals handled by caller.
1570 if (unsigned TypeQuals = DS.getTypeQualifiers()) {
1579 if (TypeQuals && Result->isFunctionType()) {
1581 S, DS, TypeQuals, Result, DeclSpec::TQ_const | DeclSpec::TQ_volatile,
1597 if (TypeQuals && Result->isReferenceType()) {
1599 S, DS, TypeQuals, Result,
1608 && TypeQuals & Result.getCVRQualifiers()) {
1609 if (TypeQuals & DeclSpec::TQ_const && Result.isConstQualified()) {
1614 if (TypeQuals & DeclSpec::TQ_volatile && Result.isVolatileQualified()) {
1623 QualType Qualified = S.BuildQualifiedType(Result, DeclLoc, TypeQuals, &DS);
2521 PTI.TypeQuals,
3587 if (DeclType.Cls.TypeQuals)
3588 T = S.BuildQualifiedType(T, DeclType.Loc, DeclType.Cls.TypeQuals);
3605 if (DeclType.Ptr.TypeQuals)
3606 T = S.BuildQualifiedType(T, DeclType.Loc, DeclType.Ptr.TypeQuals);
3610 if (DeclType.Ptr.TypeQuals)
3611 T = S.BuildQualifiedType(T, DeclType.Loc, DeclType.Ptr.TypeQuals);
3657 if (ASM == ArrayType::Static || ATI.TypeQuals) {
3665 ATI.TypeQuals = 0;
3687 ATI.TypeQuals = 0;
3709 T = S.BuildArrayType(T, ASM, ArraySize, ATI.TypeQuals,
3718 IsQualifiedFunction = FTI.TypeQuals || FTI.hasRefQualifier();
3927 EPI.TypeQuals = FTI.TypeQuals;
4095 } else if (DeclType.Mem.TypeQuals) {
4096 T = S.BuildQualifiedType(T, DeclType.Loc, DeclType.Mem.TypeQuals);
4165 if (Chunk.Fun.TypeQuals & Qualifiers::Const)
4167 if (Chunk.Fun.TypeQuals & Qualifiers::Volatile)
4169 if (Chunk.Fun.TypeQuals & Qualifiers::Restrict)
4186 EPI.TypeQuals = 0;