Home | History | Annotate | Download | only in Sema

Lines Matching refs:Volatile

2876     //      2,j, and similarly for volatile.
4297 // non-volatile const type (i.e., cv1 shall be const), or the reference
4303 // bindings) and p3's strange wording, we allow a const volatile
4723 // [class.dtor]p2: A destructor can be invoked for a const, volatile or
4724 // const volatile object.
4726 Qualifiers::Const | Qualifiers::Volatile : Method->getTypeQualifiers();
6602 /// will add "int const *", "int const volatile *", "int const
6603 /// restrict *", and "int const volatile restrict *" to the set of
6641 // Skip over volatile if no volatile found anywhere in the types.
6642 if ((CVR & Qualifiers::Volatile) && !hasVolatile) continue;
6671 /// will add "int const *", "int const volatile *", "int const
6672 /// restrict *", and "int const volatile restrict *" to the set of
6798 /// the volatile- and non-volatile-qualified assignment operators for the
6813 // volatile T& operator=(volatile T&, T)
6822 /// CollectVRQualifiers - This routine returns Volatile/Restrict qualifiers,
7010 // Non-volatile version.
7017 // add volatile version only if there are conversions to a volatile type.
7044 (Qualifiers::Volatile |
7085 // is either volatile or empty, there exist candidate operator
7094 // than bool, and VQ is either volatile or empty, there exist
7115 // cv-unqualified object type, and VQ is either volatile or
7520 // pointer to member type and VQ is either volatile or
7554 // volatile or empty, there exist candidate operator functions
7562 // cv-unqualified object type and VQ is either volatile or
7581 // non-volatile version
7592 // volatile version
7608 // volatile restrict version
7612 (Qualifiers::Volatile |
7634 // non-volatile version
7641 // volatile version
7657 // volatile restrict version
7661 (Qualifiers::Volatile |
7674 // VQ is either volatile or empty, and R is a promoted
7699 // Add this built-in operator as a candidate (VQ is 'volatile').
7726 // Add this built-in operator as a candidate (VQ is 'volatile').
7740 // is either volatile or empty, and R is a promoted integral
7764 // Add this built-in operator as a candidate (VQ is 'volatile').
7857 // Add volatile/restrict version only if there are conversions to a
7858 // volatile/restrict type.