Home | History | Annotate | Download | only in base

Lines Matching full:url_path

260   const std::string& url_path = url.path();
262 size_t idx = url_path.find_last_of('/');
269 return url_path.substr(0, idx);
2057 const std::string& url_path) const {
2072 if (url_path.find(path_) != 0)
2075 // Now we know that url_path is >= cookie_path, and that cookie_path
2076 // is a prefix of url_path. If they are the are the same length then
2084 if (path_.length() != url_path.length() &&
2086 url_path[path_.length()] != '/')