Lines Matching refs:pathname_
71 FilePath() : pathname_("") {}
72 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) {}
74 explicit FilePath(const std::string& pathname) : pathname_(pathname) {
83 void Set(const FilePath& rhs) { pathname_ = rhs.pathname_; }
85 const std::string& string() const { return pathname_; }
86 const char* c_str() const { return pathname_.c_str(); }
118 bool IsEmpty() const { return pathname_.empty(); }
217 std::string pathname_;