Home | History | Annotate | Download | only in SemaTemplate

Lines Matching full:volatile

46 int is_const2[is_const<const volatile int>::value? 1 : -1];
48 int is_const4[is_const<const volatile int[3]>::value? 1 : -1];
49 int is_const5[is_const<volatile int[3]>::value? -1 : 1];
57 struct is_volatile<volatile T> {
62 int is_volatile1[is_volatile<volatile int>::value? 1 : -1];
63 int is_volatile2[is_volatile<const volatile int>::value? 1 : -1];
64 int is_volatile3[is_volatile<volatile char[3]>::value? 1 : -1];
249 struct is_member_function_pointer<T (Class::*)() volatile> {
254 struct is_member_function_pointer<T (Class::*)() const volatile> {
269 struct is_member_function_pointer<T (Class::*)(A1) volatile> {
274 struct is_member_function_pointer<T (Class::*)(A1) const volatile> {