Home | History | Annotate | Download | only in SemaCXX

Lines Matching defs:string

56   int* ip1 = k("foo"); // expected-warning{{conversion from string literal to 'char *' is deprecated}}
57 int* ip2 = k(("foo")); // expected-warning{{conversion from string literal to 'char *' is deprecated}}
65 int* ip1 = l(L"foo"); // expected-warning{{conversion from string literal to 'wchar_t *' is deprecated}}
83 int* ip2 = n("foo"); // expected-warning{{conversion from string literal to 'char *' is deprecated}}
178 double* q3 = quals_rank1("string literal");
293 class string { };
294 class opt : public string { };
297 SR(const string&);
443 struct String { String(char const*); };
446 int &f(String);