Lines Matching refs:pathname_
120 if (pathname_.EndsWithCaseInsensitive(dot_extension.c_str())) { in RemoveExtension()
121 return FilePath(String(pathname_.c_str(), pathname_.length() - 4)); in RemoveExtension()
204 LPCWSTR unicode = String::AnsiToUtf16(pathname_.c_str()); in FileOrDirectoryExists()
210 return posix::Stat(pathname_.c_str(), &file_stat) == 0; in FileOrDirectoryExists()
251 return pathname_.length() == 3 && IsAbsolutePath(); in IsRootDirectory()
253 return pathname_.length() == 1 && IsPathSeparator(pathname_.c_str()[0]); in IsRootDirectory()
259 const char* const name = pathname_.c_str(); in IsAbsolutePath()
261 return pathname_.length() >= 3 && in IsAbsolutePath()
294 return !pathname_.empty() && in IsDirectory()
295 IsPathSeparator(pathname_.c_str()[pathname_.length() - 1]); in IsDirectory()
306 if (pathname_.length() == 0 || this->DirectoryExists()) { in CreateDirectoriesRecursively()
325 int result = _mkdir(pathname_.c_str()); in CreateFolder()
327 int result = mkdir(pathname_.c_str(), 0777); in CreateFolder()
341 ? FilePath(String(pathname_.c_str(), pathname_.length() - 1)) in RemoveTrailingPathSeparator()
350 if (pathname_.c_str() == NULL) { in Normalize()
351 pathname_ = ""; in Normalize()
354 const char* src = pathname_.c_str(); in Normalize()
355 char* const dest = new char[pathname_.length() + 1]; in Normalize()
357 memset(dest_ptr, 0, pathname_.length() + 1); in Normalize()
375 pathname_ = dest; in Normalize()