Home | History | Annotate | Download | only in src

Lines Matching defs:GURL

38 #include "googleurl/src/gurl.h"
66 static GURL* empty_gurl = NULL;
107 GURL::GURL() : is_valid_(false) {
110 GURL::GURL(const GURL& other)
116 GURL::GURL(const std::string& url_string) {
120 GURL::GURL(const string16& url_string) {
124 GURL::GURL(const char* canonical_spec, size_t canonical_spec_len,
134 GURL test_url(spec_);
151 const std::string& GURL::spec() const {
159 GURL GURL::Resolve(const std::string& relative) const {
162 GURL GURL::Resolve(const string16& relative) const {
167 GURL GURL::ResolveWithCharsetConverter(
172 return GURL();
174 GURL result;
186 return GURL();
195 GURL GURL::ResolveWithCharsetConverter(
200 return GURL();
202 GURL result;
214 return GURL();
223 GURL GURL::ReplaceComponents(
225 GURL result;
229 return GURL();
245 GURL GURL::ReplaceComponents(
247 GURL result;
251 return GURL();
266 GURL GURL::GetOrigin() const {
270 return GURL();
282 GURL GURL::GetWithEmptyPath() const {
286 return GURL();
290 GURL other(*this);
306 bool GURL::IsStandard() const {
311 bool GURL::SchemeIs(const char* lower_ascii_scheme) const {
319 int GURL::IntPort() const {
325 int GURL::EffectiveIntPort() const {
333 std::string GURL::ExtractFileName() const {
339 std::string GURL::PathForRequest() const {
352 std::string GURL::HostNoBrackets() const {
362 bool GURL::HostIsIPAddress() const {
375 const GURL& GURL::EmptyGURL() {
380 GURL* new_empty_gurl = new GURL;
394 empty_gurl = new GURL;
397 const GURL& GURL::EmptyGURL() {
405 bool GURL::DomainIs(const char* lower_ascii_domain,
445 void GURL::Swap(GURL* other) {