Home | History | Annotate | Download | only in Sema

Lines Matching refs:Volatile

4675                                RHSQuals & Qualifiers::Volatile,
4678 LHSQuals & Qualifiers::Volatile);
5777 // Trivial copy operations always have const, non-volatile parameter types.
6263 // constructor can be invoked for a const, volatile or const
6264 // volatile object. A constructor shall not be declared const,
6265 // volatile, or const volatile (9.3.2).
6296 if (FTI.TypeQuals & Qualifiers::Volatile)
6298 << "volatile" << SourceRange(D.getIdentifierLoc());
6426 // destructor can be invoked for a const, volatile or const
6427 // volatile object. A destructor shall not be declared const,
6428 // volatile or const volatile (9.3.2).
6467 if (FTI.TypeQuals & Qualifiers::Volatile)
6469 << "volatile" << SourceRange(D.getIdentifierLoc());