Home | History | Annotate | Download | only in internal

Lines Matching defs:pathname_

61   FilePath() : pathname_("") { }
62 FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { }
64 explicit FilePath(const char* pathname) : pathname_(pathname) {
68 explicit FilePath(const String& pathname) : pathname_(pathname) {
78 pathname_ = rhs.pathname_;
81 String ToString() const { return pathname_; }
82 const char* c_str() const { return pathname_.c_str(); }
204 String pathname_;