Searched refs:fileProtocol (Results 1 - 4 of 4) sorted by relevance

/external/webkit/Tools/DumpRenderTree/win/
H A DUIDelegate.cpp487 size_t fileProtocol = newMessage.find(L"file://"); local
488 if (fileProtocol != wstring::npos)
489 newMessage = newMessage.substr(0, fileProtocol) + lastPathComponent(newMessage.substr(fileProtocol));
H A DLayoutTestControllerWin.cpp687 wstring fileProtocol = L"file://"; local
688 bool isFileProtocol = cygwinPath.find(fileProtocol) != string::npos;
736 windowsPath = fileProtocol + windowsPath;
/external/webkit/Tools/DumpRenderTree/qt/
H A DDumpRenderTreeQt.cpp296 size_t fileProtocol = newMessage.indexOf(QLatin1String("file://")); local
297 if (fileProtocol != -1) {
298 newMessage = newMessage.left(fileProtocol) + urlSuitableForTestResult(newMessage.mid(fileProtocol));
/external/webkit/Tools/DumpRenderTree/chromium/
H A DWebViewHost.cpp260 size_t fileProtocol = newMessage.find("file://"); local
261 if (fileProtocol != string::npos) {
262 newMessage = newMessage.substr(0, fileProtocol)
263 + urlSuitableForTestResult(newMessage.substr(fileProtocol));

Completed in 2656 milliseconds