Home
last modified time | relevance | path

Searched refs:pathname_ (Results 1 - 6 of 6) sorted by relevance

/third_party/mesa3d/src/gtest/src/
H A Dgtest-filepath.cc122 if (String::EndsWithCaseInsensitive(pathname_, dot_extension)) { in RemoveExtension()
123 return FilePath(pathname_.substr( in RemoveExtension()
124 0, pathname_.length() - dot_extension.length())); in RemoveExtension()
207 LPCWSTR unicode = String::AnsiToUtf16(pathname_.c_str()); in FileOrDirectoryExists()
213 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_ in IsAbsolutePath()
[all...]
/third_party/googletest/googletest/src/
H A Dgtest-filepath.cc127 if (String::EndsWithCaseInsensitive(pathname_, dot_extension)) { in RemoveExtension()
129 pathname_.substr(0, pathname_.length() - dot_extension.length())); in RemoveExtension()
151 const auto &path = pathname_; in CalculateRootLength()
249 LPCWSTR unicode = String::AnsiToUtf16(pathname_.c_str()); in FileOrDirectoryExists()
255 return posix::Stat(pathname_.c_str(), &file_stat) == 0; in FileOrDirectoryExists()
293 return root_length > 0 && root_length == pathname_.size() && in IsRootDirectory()
294 IsPathSeparator(pathname_[root_length - 1]); in IsRootDirectory()
325 return !pathname_.empty() && in IsDirectory()
326 IsPathSeparator(pathname_ in IsDirectory()
[all...]
/third_party/node/deps/googletest/src/
H A Dgtest-filepath.cc132 if (String::EndsWithCaseInsensitive(pathname_, dot_extension)) { in RemoveExtension()
134 pathname_.substr(0, pathname_.length() - dot_extension.length())); in RemoveExtension()
156 const auto& path = pathname_; in CalculateRootLength()
253 LPCWSTR unicode = String::AnsiToUtf16(pathname_.c_str()); in FileOrDirectoryExists()
259 return posix::Stat(pathname_.c_str(), &file_stat) == 0; in FileOrDirectoryExists()
297 return root_length > 0 && root_length == pathname_.size() && in IsRootDirectory()
298 IsPathSeparator(pathname_[root_length - 1]); in IsRootDirectory()
327 return !pathname_.empty() && in IsDirectory()
328 IsPathSeparator(pathname_ in IsDirectory()
[all...]
/third_party/googletest/googletest/include/gtest/internal/
H A Dgtest-filepath.h71 FilePath() : pathname_("") {} in FilePath()
72 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) {} in FilePath()
74 explicit FilePath(const std::string& pathname) : pathname_(pathname) { in FilePath()
83 void Set(const FilePath& rhs) { pathname_ = rhs.pathname_; } in Set()
85 const std::string& string() const { return pathname_; } in string()
86 const char* c_str() const { return pathname_.c_str(); } in c_str()
118 bool IsEmpty() const { return pathname_.empty(); } in IsEmpty()
217 std::string pathname_; member in testing::internal::FilePath
[all...]
/third_party/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-filepath.h64 FilePath() : pathname_("") { } in FilePath()
65 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { } in FilePath()
67 explicit FilePath(const std::string& pathname) : pathname_(pathname) { in FilePath()
77 pathname_ = rhs.pathname_; in Set()
80 const std::string& string() const { return pathname_; } in string()
81 const char* c_str() const { return pathname_.c_str(); } in c_str()
114 bool IsEmpty() const { return pathname_.empty(); } in IsEmpty()
203 std::string pathname_; member in testing::internal::FilePath
[all...]
/third_party/node/deps/googletest/include/gtest/internal/
H A Dgtest-filepath.h71 FilePath() : pathname_("") {} in FilePath()
72 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) {} in FilePath()
74 explicit FilePath(const std::string& pathname) : pathname_(pathname) { in FilePath()
83 void Set(const FilePath& rhs) { pathname_ = rhs.pathname_; } in Set()
85 const std::string& string() const { return pathname_; } in string()
86 const char* c_str() const { return pathname_.c_str(); } in c_str()
118 bool IsEmpty() const { return pathname_.empty(); } in IsEmpty()
217 std::string pathname_; member in testing::internal::FilePath
[all...]

Completed in 4 milliseconds