OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:GURL
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/WebKit/public/platform/
WebURL.h
41
#include <url/
gurl
.h>
109
WebURL(const
GURL
& url)
116
WebURL& operator=(const
GURL
& url)
124
operator
GURL
() const
126
return isNull() ?
GURL
() :
GURL
(m_string.utf8(), m_parsed, m_isValid);
/external/chromium_org/url/
gurl.cc
14
#include "url/
gurl
.h"
23
static
GURL
* empty_gurl = NULL;
64
GURL
::
GURL
() : is_valid_(false) {
67
GURL
::
GURL
(const
GURL
& other)
72
inner_url_.reset(new
GURL
(*other.inner_url_));
77
GURL
::
GURL
(const std::string& url_string)
[
all
...]
gurl.h
18
class URL_EXPORT
GURL
{
24
GURL
();
28
GURL
(const
GURL
& other);
37
explicit
GURL
(const std::string& url_string /*, output_param_encoding*/);
38
explicit
GURL
(const base::string16& url_string /*, output_param_encoding*/);
43
GURL
(const char* canonical_spec, size_t canonical_spec_len,
49
// implementation, we use swap to move the data into the
GURL
itself,
51
GURL
(std::string canonical_spec,
54
~
GURL
();
[
all
...]
/external/chromium/googleurl/src/
gurl.cc
39
#include "googleurl/src/
gurl
.h"
67
static
GURL
* empty_gurl = NULL;
108
GURL
::
GURL
() : is_valid_(false) {
111
GURL
::
GURL
(const
GURL
& other)
117
GURL
::
GURL
(const std::string& url_string) {
121
GURL
::GURL(const string16& url_string)
[
all
...]
gurl.h
42
class
GURL
{
48
GURL_API
GURL
();
52
GURL_API
GURL
(const
GURL
& other);
61
GURL_API explicit
GURL
(const std::string& url_string
63
GURL_API explicit
GURL
(const string16& url_string
69
GURL_API
GURL
(const char* canonical_spec, size_t canonical_spec_len,
72
GURL_API
GURL
& operator=(const
GURL
& other);
129
bool operator==(const
GURL
& other) const
[
all
...]
Completed in 152 milliseconds