Home | History | Annotate | Download | only in Sema

Lines Matching refs:Restrict

1060     OldQuals &= ~Qualifiers::Restrict;
1061 NewQuals &= ~Qualifiers::Restrict;
6868 /// restrict *", and "int const volatile restrict *" to the set of
6909 // Skip over restrict if no restrict found anywhere in the types, or if
6910 // the type cannot be restrict-qualified.
6911 if ((CVR & Qualifiers::Restrict) &&
6937 /// restrict *", and "int const volatile restrict *" to the set of
7082 /// CollectVRQualifiers - This routine returns Volatile/Restrict qualifiers,
7282 // Add restrict version only if there are conversions to a restrict type
7283 // and our candidate type is a non-restrict-qualified pointer.
7288 S.Context.getCVRQualifiedType(CandidateTy, Qualifiers::Restrict));
7299 Qualifiers::Restrict)));
7855 // restrict version
7862 // volatile restrict version
7867 Qualifiers::Restrict)));
7904 // restrict version
7911 // volatile restrict version
7916 Qualifiers::Restrict)));
8111 // Add volatile/restrict version only if there are conversions to a
8112 // volatile/restrict type.