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

  /external/webkit/Source/WebKit/chromium/src/
WebURL.cpp 34 #include "KURL.h"
38 WebURL::WebURL(const WebCore::KURL& url)
45 WebURL& WebURL::operator=(const WebCore::KURL& url)
53 WebURL::operator WebCore::KURL() const
55 return WebCore::KURL(m_spec, m_parsed, m_isValid);
  /external/webkit/Source/WebCore/platform/cf/
KURLCFNet.cpp 27 #include "KURL.h"
36 KURL::KURL(CFURLRef url)
62 CFURLRef KURL::createCFURL() const
81 String KURL::fileSystemPath() const
  /external/webkit/Source/WebCore/platform/qt/
KURLQt.cpp 21 #include "KURL.h"
30 KURL::KURL(const QUrl& url)
32 *this = KURL(KURL(), url.toEncoded().constData(), UTF8Encoding());
35 KURL::operator QUrl() const
44 String KURL::fileSystemPath() const
  /external/webkit/Source/WebCore/platform/
KURL.h 68 class KURL {
71 KURL() { invalidate(); }
73 // The argument is an absolute URL string. The string is assumed to be output of KURL::string() called on a valid
74 // KURL object, or indiscernible from such.
76 KURL(ParsedURLStringTag, const char*);
77 KURL(ParsedURLStringTag, const String&);
78 KURL(ParsedURLStringTag, const URLString&);
80 KURL(WTF::HashTableDeletedValueType) : m_url(WTF::HashTableDeletedValue) { }
82 KURL(WTF::HashTableDeletedValueType) : m_string(WTF::HashTableDeletedValue) { }
93 KURL(const KURL& base, const String& relative)
    [all...]
KURLGoogle.cpp 35 #include "KURL.h"
83 // Note that this function must be named differently than the one in KURL.cpp
138 // NOTE This is a copy of the function in KURL.cpp.
210 void KURLGooglePrivate::init(const KURL& base,
218 void KURLGooglePrivate::init(const KURL& base, const CHAR* rel, int relLength,
244 // When KURL encounters an error such that the URL is invalid and empty
292 // KURL returns a null string if the URL is itself a null string, and an
341 // KURL ------------------------------------------------------------------------
346 KURL::KURL(ParsedURLStringTag, const char *url
    [all...]
KURL.cpp 28 #include "KURL.h"
290 inline bool KURL::protocolIs(const String& string, const char* protocol)
295 void KURL::invalidate()
311 KURL::KURL(ParsedURLStringTag, const char* url)
317 KURL::KURL(ParsedURLStringTag, const String& url)
323 KURL::KURL(ParsedURLStringTag, const URLString& url)
329 KURL::KURL(const KURL& base, const String& relative
    [all...]

Completed in 659 milliseconds