Home | History | Annotate | Download | only in Sema

Lines Matching refs:Volatile

2909     //      2,j, and similarly for volatile.
4327 // non-volatile const type (i.e., cv1 shall be const), or the reference
4805 // [class.dtor]p2: A destructor can be invoked for a const, volatile or
4806 // const volatile object.
4808 Qualifiers::Const | Qualifiers::Volatile : Method->getTypeQualifiers();
6867 /// will add "int const *", "int const volatile *", "int const
6868 /// restrict *", and "int const volatile restrict *" to the set of
6906 // Skip over volatile if no volatile found anywhere in the types.
6907 if ((CVR & Qualifiers::Volatile) && !hasVolatile) continue;
6936 /// will add "int const *", "int const volatile *", "int const
6937 /// restrict *", and "int const volatile restrict *" to the set of
7058 /// the volatile- and non-volatile-qualified assignment operators for the
7073 // volatile T& operator=(volatile T&, T)
7082 /// CollectVRQualifiers - This routine returns Volatile/Restrict qualifiers,
7264 // Non-volatile version.
7271 // add volatile version only if there are conversions to a volatile type.
7298 (Qualifiers::Volatile |
7339 // is either volatile or empty, there exist candidate operator
7348 // than bool, and VQ is either volatile or empty, there exist
7369 // cv-unqualified object type, and VQ is either volatile or
7774 // pointer to member type and VQ is either volatile or
7808 // volatile or empty, there exist candidate operator functions
7816 // cv-unqualified object type and VQ is either volatile or
7835 // non-volatile version
7846 // volatile version
7862 // volatile restrict version
7866 (Qualifiers::Volatile |
7888 // non-volatile version
7895 // volatile version
7911 // volatile restrict version
7915 Volatile |
7928 // VQ is either volatile or empty, and R is a promoted
7953 // Add this built-in operator as a candidate (VQ is 'volatile').
7980 // Add this built-in operator as a candidate (VQ is 'volatile').
7994 // is either volatile or empty, and R is a promoted integral
8018 // Add this built-in operator as a candidate (VQ is 'volatile').
8111 // Add volatile/restrict version only if there are conversions to a
8112 // volatile/restrict type.