Searched refs:hostStart (Results 1 - 5 of 5) sorted by relevance

/external/webkit/Source/WebCore/platform/
H A DKURL.cpp585 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));
1135 static inline bool hostPortIsEmptyButCredentialsArePresent(int hostStart, int portEnd, char userEndChar) argument
1137 return userEndChar == '@' && hostStart == portEnd;
1170 int hostStart; local
1213 hostStart = passwordEnd + 1;
1220 hostStart = userStart;
1228 hostEnd = hostStart;
1265 if (hostPortIsEmptyButCredentialsArePresent(hostStart, portEn
1674 int hostStart, hostEnd; local
[all...]
H A DKURL.h193 unsigned hostStart() const;
362 inline unsigned KURL::hostStart() const function in class:WebCore::KURL
H A DKURLGoogle.cpp907 unsigned KURL::hostStart() const function in class:WebCore::KURL
959 int hostStartA = a.hostStart();
961 int hostStartB = b.hostStart();
962 int hostLengthB = b.hostEnd() - b.hostStart();
/external/webkit/Source/WebKit/chromium/tests/
H A DKURLTest.cpp566 EXPECT_EQ(17u, kurl1.hostStart());
575 EXPECT_EQ(7u, kurl2.hostStart());
584 EXPECT_EQ(11u, kurl3.hostStart());
/external/webkit/Source/WebCore/loader/appcache/
H A DApplicationCacheStorage.cpp93 unsigned hostStart = url.hostStart(); local
96 return AlreadyHashed::avoidDeletedValue(StringHasher::computeHash(url.string().characters() + hostStart, hostEnd - hostStart));

Completed in 431 milliseconds