HomeSort by relevance Sort by last modified time
    Searched defs:GURL (Results 1 - 3 of 3) sorted by null

  /external/webkit/WebKit/chromium/public/
WebURL.h 40 #include <googleurl/src/gurl.h>
114 WebURL(const GURL& g)
121 WebURL& operator=(const GURL& g)
129 operator GURL() const
131 return isNull() ? GURL() : GURL(m_spec.data(), m_spec.length(), m_parsed, m_isValid);
  /external/chromium/googleurl/src/
gurl.cc 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)
    [all...]
gurl.h 41 class GURL {
47 GURL();
51 GURL(const GURL& other);
60 explicit GURL(const std::string& url_string /*, output_param_encoding*/);
61 explicit GURL(const string16& url_string /*, output_param_encoding*/);
66 GURL(const char* canonical_spec, size_t canonical_spec_len,
124 bool operator==(const GURL& other) const {
127 bool operator!=(const GURL& other) const {
131 // Allows GURL to used as a key in STL (for example, a std::set or std::map)
    [all...]

Completed in 720 milliseconds