Home | History | Annotate | Download | only in Sema

Lines Matching refs:Volatile

4393                                  TQ & Qualifiers::Volatile);
5033 // constructor can be invoked for a const, volatile or const
5034 // volatile object. A constructor shall not be declared const,
5035 // volatile, or const volatile (9.3.2).
5057 if (FTI.TypeQuals & Qualifiers::Volatile)
5059 << "volatile" << SourceRange(D.getIdentifierLoc());
5191 // destructor can be invoked for a const, volatile or const
5192 // volatile object. A destructor shall not be declared const,
5193 // volatile or const volatile (9.3.2).
5222 if (FTI.TypeQuals & Qualifiers::Volatile)
5224 << "volatile" << SourceRange(D.getIdentifierLoc());
7568 // whose parameter is of type const B&, const volatile B& or B,
7600 // const volatile M& or M.
8600 // const volatile B&, and
8628 // const M& or const volatile M&.