Home | History | Annotate | Download | only in internal

Lines Matching refs:pathname_

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