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

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc7955 if (String::EndsWithCaseInsensitive(pathname_, dot_extension)) {
7956 return FilePath(pathname_.substr(
7957 0, pathname_.length() - dot_extension.length()));
8040 LPCWSTR unicode = String::AnsiToUtf16(pathname_.c_str());
8046 return posix::Stat(pathname_.c_str(), &file_stat) == 0;
8087 return pathname_.length() == 3 && IsAbsolutePath();
8089 return pathname_.length() == 1 && IsPathSeparator(pathname_.c_str()[0]);
8095 const char* const name = pathname_.c_str();
8097 return pathname_
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h3548 FilePath() : pathname_("") { }
3549 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { }
3551 explicit FilePath(const std::string& pathname) : pathname_(pathname) {
3561 pathname_ = rhs.pathname_;
3564 const std::string& string() const { return pathname_; }
3565 const char* c_str() const { return pathname_.c_str(); }
3598 bool IsEmpty() const { return pathname_.empty(); }
3687 std::string pathname_; member in class:testing::internal::FilePath
[all...]

Completed in 57 milliseconds