Lines Matching refs:pathname_
63 if (pathname_.EndsWithCaseInsensitive(dot_extension.c_str())) { in RemoveExtension()
64 return FilePath(String(pathname_.c_str(), pathname_.GetLength() - 4)); in RemoveExtension()
116 return _stat(pathname_.c_str(), &file_stat) == 0; in FileOrDirectoryExists()
119 return stat(pathname_.c_str(), &file_stat) == 0; in FileOrDirectoryExists()
136 result = stat(pathname_.c_str(), &file_stat) == 0 && in DirectoryExists()
165 return pathname_.EndsWith(kPathSeparatorString); in IsDirectory()
176 if (pathname_.GetLength() == 0 || this->DirectoryExists()) { in CreateDirectoriesRecursively()
190 int result = _mkdir(pathname_.c_str()); in CreateFolder()
192 int result = mkdir(pathname_.c_str(), 0777); in CreateFolder()
204 return pathname_.EndsWith(kPathSeparatorString) in RemoveTrailingPathSeparator()
205 ? FilePath(String(pathname_.c_str(), pathname_.GetLength() - 1)) in RemoveTrailingPathSeparator()