Home | History | Annotate | Download | only in gtest

Lines Matching defs:pathname_

3548   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_;