Home | History | Annotate | Download | only in src

Lines Matching full:c_str

132   const char* const last_sep = strrchr(c_str(), kPathSeparator);
134 const char* const last_alt_sep = strrchr(c_str(), kAlternatePathSeparator);
165 dir = std::string(c_str(), last_sep + 1 - c_str());
206 LPCWSTR unicode = String::AnsiToUtf16(pathname_.c_str());
212 return posix::Stat(pathname_.c_str(), &file_stat) == 0;
230 LPCWSTR unicode = String::AnsiToUtf16(path.c_str());
239 result = posix::Stat(path.c_str(), &file_stat) == 0 &&
255 return pathname_.length() == 1 && IsPathSeparator(pathname_.c_str()[0]);
261 const char* const name = pathname_.c_str();
297 IsPathSeparator(pathname_.c_str()[pathname_.length() - 1]);
323 LPCWSTR unicode = String::AnsiToUtf16(removed_sep.c_str());
327 int result = _mkdir(pathname_.c_str());
329 int result = mkdir(pathname_.c_str(), 0777);
352 if (pathname_.c_str() == NULL) {
356 const char* src = pathname_.c_str();