Home | History | Annotate | Download | only in Sema

Lines Matching refs:Restrict

1075     OldQuals &= ~Qualifiers::Restrict;
1076 NewQuals &= ~Qualifiers::Restrict;
6603 /// restrict *", and "int const volatile restrict *" to the set of
6644 // Skip over restrict if no restrict found anywhere in the types, or if
6645 // the type cannot be restrict-qualified.
6646 if ((CVR & Qualifiers::Restrict) &&
6672 /// restrict *", and "int const volatile restrict *" to the set of
6822 /// CollectVRQualifiers - This routine returns Volatile/Restrict qualifiers,
7028 // Add restrict version only if there are conversions to a restrict type
7029 // and our candidate type is a non-restrict-qualified pointer.
7034 S.Context.getCVRQualifiedType(CandidateTy, Qualifiers::Restrict));
7045 Qualifiers::Restrict)));
7601 // restrict version
7608 // volatile restrict version
7613 Qualifiers::Restrict)));
7650 // restrict version
7657 // volatile restrict version
7662 Qualifiers::Restrict)));
7857 // Add volatile/restrict version only if there are conversions to a
7858 // volatile/restrict type.