Home | History | Annotate | Download | only in base

Lines Matching refs:domain_

1954       domain_(domain),
1989 domain_ = cookie_domain;
2100 // we allow matching as a host cookie even when the domain_ starts with
2102 if (host == domain_)
2113 if (domain_.empty() || domain_[0] != '.')
2117 if (domain_.compare(1, std::string::npos, host) == 0)
2122 return (host.length() > domain_.length() &&
2123 host.compare(host.length() - domain_.length(),
2124 domain_.length(), domain_) == 0);
2132 domain_.c_str(), path_.c_str(),