Searched defs:URLComponent (Results 1 - 1 of 1) sorted by relevance

/external/webkit/Source/JavaScriptCore/wtf/url/src/
H A DURLComponent.h35 class URLComponent { class in namespace:WTF
37 URLComponent() : m_begin(0), m_length(-1) { } function in class:WTF::URLComponent
38 URLComponent(int begin, int length) : m_begin(begin), m_length(length) { } function in class:WTF::URLComponent
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; }

Completed in 80 milliseconds