Lines Matching refs:string
35 // global string (::string) exists.
40 // string type is defined (i.e. ::string). Now, let's suppose that ::string
41 // is different that std::string and you'd like to have the option to easily
42 // choose between the two string types. Ideally you'd like to control which
43 // string type is chosen by simply #defining an identifier.
48 // globally replace std::string with string. Then include this header
49 // file everywhere where string is used. If you want to revert back to
50 // using std::string, simply remove the #define (HAS_GLOBAL_STRING).
56 typedef ::string google_breakpad_string;
58 using std::string;
59 typedef std::string google_breakpad_string;