OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:URLComponent
(Results
1 - 6
of
6
) sorted by null
/external/webkit/Source/JavaScriptCore/wtf/url/src/
URLSegments.h
32
#include "
URLComponent
.h"
93
URLComponent
scheme;
94
URLComponent
username;
95
URLComponent
password;
96
URLComponent
host;
97
URLComponent
port;
98
URLComponent
path;
99
URLComponent
query;
100
URLComponent
fragment;
URLComponent.h
35
class
URLComponent
{
37
URLComponent
() : m_begin(0), m_length(-1) { }
38
URLComponent
(int begin, int length) : m_begin(begin), m_length(length) { }
42
static inline
URLComponent
fromRange(int begin, int end)
44
return
URLComponent
(begin, end - begin);
60
bool operator==(const
URLComponent
& other) const { return m_begin == other.m_begin && m_length == other.m_length; }
URLParser.h
40
#include "
URLComponent
.h"
64
static void parseAuthority(const CHAR* spec, const
URLComponent
& auth,
URLComponent
& username,
URLComponent
& password,
URLComponent
& host,
URLComponent
& port)
84
parseUserInfo(spec,
URLComponent
(auth.begin(), i - auth.begin()), username, password);
85
parseServerInfo(spec,
URLComponent
::fromRange(i + 1, auth.begin() + auth.length()), host, port);
94
static bool extractScheme(const CHAR* spec, int specLength,
URLComponent
& scheme)
106
scheme =
URLComponent
::fromRange(begin, i)
[
all
...]
URLQueryCanonicalizer.h
36
#include "
URLComponent
.h"
44
static void canonicalize(const InChar* spec, const
URLComponent
& query, URLBuffer<OutChar>& buffer,
URLComponent
& resultQuery)
47
resultQuery =
URLComponent
();
58
static bool isAllASCII(const InChar* spec, const
URLComponent
& query)
90
static void convertToQueryEncoding(const InChar* spec, const
URLComponent
& query, URLBuffer<OutChar>& buffer)
/external/webkit/Source/JavaScriptCore/wtf/url/api/
ParsedURL.h
34
class
URLComponent
;
54
inline String segment(const
URLComponent
&) const;
ParsedURL.cpp
29
#include "
URLComponent
.h"
83
String ParsedURL::segment(const
URLComponent
& component) const
Completed in 28 milliseconds