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

/external/webkit/Source/WebCore/platform/network/
H A DCredentialStorage.cpp75 unsigned directoryURLPathStart = url.pathStart(); local
76 ASSERT(directoryURL[directoryURLPathStart] == '/');
77 if (directoryURL.length() > directoryURLPathStart + 1) {
80 directoryURL = directoryURL.substring(0, (index != directoryURLPathStart) ? index : directoryURLPathStart + 1);
125 unsigned directoryURLPathStart = url.pathStart(); local
131 if (directoryURL.length() == directoryURLPathStart + 1) // path is "/" already, cannot shorten it any more
136 directoryURL = directoryURL.substring(0, (index == directoryURLPathStart) ? index + 1 : index);
137 ASSERT(directoryURL.length() > directoryURLPathStart);
138 ASSERT(directoryURL.length() == directoryURLPathStart
[all...]

Completed in 261 milliseconds