OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:hostStart
(Results
1 - 6
of
6
) sorted by null
/libcore/luni/src/main/java/java/net/
URLStreamHandler.java
107
int
hostStart
;
110
hostStart
= userInfoEnd + 1;
113
hostStart
= authorityStart;
121
int colonSearchFrom =
hostStart
;
122
int ipv6End = UrlUtils.findFirstOf(spec, "]",
hostStart
, fileStart);
124
if (UrlUtils.findFirstOf(spec, ":",
hostStart
, ipv6End) == ipv6End) {
126
+ spec.substring(
hostStart
, ipv6End + 1));
131
host = spec.substring(
hostStart
, hostEnd);
/external/webkit/Source/WebCore/platform/
KURL.cpp
585
int start =
hostStart
();
742
parse(m_string.left(
hostStart
()) + (slashSlashNeeded ? "//" : "") + s + m_string.substring(m_hostEnd));
773
parse(m_string.left(
hostStart
()) + (slashSlashNeeded ? "//" : "") + hostAndPort + m_string.substring(m_portEnd));
[
all
...]
KURL.h
193
unsigned
hostStart
() const;
362
inline unsigned KURL::
hostStart
() const
KURLGoogle.cpp
907
unsigned KURL::
hostStart
() const
[
all
...]
/external/webkit/Source/WebKit/chromium/tests/
KURLTest.cpp
566
EXPECT_EQ(17u, kurl1.
hostStart
());
575
EXPECT_EQ(7u, kurl2.
hostStart
());
584
EXPECT_EQ(11u, kurl3.
hostStart
());
/external/webkit/Source/WebCore/loader/appcache/
ApplicationCacheStorage.cpp
93
unsigned
hostStart
= url.
hostStart
();
96
return AlreadyHashed::avoidDeletedValue(StringHasher::computeHash(url.string().characters() +
hostStart
, hostEnd -
hostStart
));
[
all
...]
Completed in 343 milliseconds