Lines Matching refs:Str
38 struct Str struct
40 Str();
41 Str(const char *str);
42 Str(const char *str, int len);
43 Str(const Str& rhs);
44 virtual ~Str();
46 void operator=(const Str& rhs); argument
49 int operator != (const Str& rhs) const; argument
50 int operator == (const Str& rhs) const;
53 Str& operator<<(Str rhs);
54 Str& operator<<(long long i);
55 Str& operator<<(long i);
56 Str& operator<<(int i);
57 Str& operator<<(char c);
60 int compare(const Str& rhs) const;
65 char tokenize(Str& token, const Str& separators, Str& remainder);