Home | History | Annotate | Download | only in internal

Lines Matching defs:c_str

92   static String ShowCStringQuoted(const char* c_str);
101 static const char* CloneCString(const char* c_str);
116 static LPCWSTR AnsiToUtf16(const char* c_str);
227 ConstructNonNull(str.c_str(), str.length());
230 operator ::std::string() const { return ::std::string(c_str(), length()); }
234 ConstructNonNull(str.c_str(), str.length());
237 operator ::string() const { return ::string(c_str(), length()); }
241 bool empty() const { return (c_str() != NULL) && (length() == 0); }
275 const char* c_str() const { return c_str_; }
286 if (rhs.c_str() == NULL) {
290 ConstructNonNull(rhs.c_str(), rhs.length());
317 if (str.c_str() == NULL) {
320 const char* const c_str = str.c_str();
322 if (c_str[i] == '\0') {
325 os << c_str[i];