Home
last modified time | relevance | path

Searched refs:directoryURL (Results 1 – 1 of 1) sorted by relevance

/external/webkit/WebCore/platform/network/
DCredentialStorage.cpp74 String directoryURL = url.string().substring(0, url.pathEnd()); in protectionSpaceMapKeyFromURL() local
76 ASSERT(directoryURL[directoryURLPathStart] == '/'); in protectionSpaceMapKeyFromURL()
77 if (directoryURL.length() > directoryURLPathStart + 1) { in protectionSpaceMapKeyFromURL()
78 int index = directoryURL.reverseFind('/'); in protectionSpaceMapKeyFromURL()
80directoryURL = directoryURL.substring(0, (static_cast<unsigned>(index) != directoryURLPathStart) ?… in protectionSpaceMapKeyFromURL()
82 …ASSERT(directoryURL.length() == directoryURLPathStart + 1 || directoryURL[directoryURL.length() - … in protectionSpaceMapKeyFromURL()
84 return directoryURL; in protectionSpaceMapKeyFromURL()
120 String directoryURL = protectionSpaceMapKeyFromURL(url); in findDefaultProtectionSpaceForURL() local
123 PathToDefaultProtectionSpaceMap::iterator iter = map.find(directoryURL); in findDefaultProtectionSpaceForURL()
127 …if (directoryURL.length() == directoryURLPathStart + 1) // path is "/" already, cannot shorten it… in findDefaultProtectionSpaceForURL()
[all …]