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

/xsrc/external/mit/MesaLib.old/dist/src/gtest/include/gtest/internal/
H A Dgtest-filepath.h61 FilePath() : pathname_("") { }
62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { }
64 explicit FilePath(const std::string& pathname) : pathname_(pathname) {
74 pathname_ = rhs.pathname_;
77 const std::string& string() const { return pathname_; }
78 const char* c_str() const { return pathname_.c_str(); }
111 bool IsEmpty() const { return pathname_.empty(); }
200 std::string pathname_; member in class:testing::internal::FilePath
[all...]
/xsrc/external/mit/MesaLib/dist/src/gtest/include/gtest/internal/
H A Dgtest-filepath.h64 FilePath() : pathname_("") { }
65 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { }
67 explicit FilePath(const std::string& pathname) : pathname_(pathname) {
77 pathname_ = rhs.pathname_;
80 const std::string& string() const { return pathname_; }
81 const char* c_str() const { return pathname_.c_str(); }
114 bool IsEmpty() const { return pathname_.empty(); }
203 std::string pathname_; member in class:testing::internal::FilePath
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gtest/src/
H A Dgtest-filepath.cc126 if (String::EndsWithCaseInsensitive(pathname_, dot_extension)) {
127 return FilePath(pathname_.substr(
128 0, pathname_.length() - dot_extension.length()));
211 LPCWSTR unicode = String::AnsiToUtf16(pathname_.c_str());
217 return posix::Stat(pathname_.c_str(), &file_stat) == 0;
258 return pathname_.length() == 3 && IsAbsolutePath();
260 return pathname_.length() == 1 && IsPathSeparator(pathname_.c_str()[0]);
266 const char* const name = pathname_.c_str();
268 return pathname_
[all...]
/xsrc/external/mit/MesaLib/dist/src/gtest/src/
H A Dgtest-filepath.cc122 if (String::EndsWithCaseInsensitive(pathname_, dot_extension)) {
123 return FilePath(pathname_.substr(
124 0, pathname_.length() - dot_extension.length()));
207 LPCWSTR unicode = String::AnsiToUtf16(pathname_.c_str());
213 return posix::Stat(pathname_.c_str(), &file_stat) == 0;
251 return pathname_.length() == 3 && IsAbsolutePath();
253 return pathname_.length() == 1 && IsPathSeparator(pathname_.c_str()[0]);
259 const char* const name = pathname_.c_str();
261 return pathname_
[all...]

Completed in 7 milliseconds