HomeSort by relevance Sort by last modified time
    Searched refs:fileProtocol (Results 1 - 4 of 4) sorted by null

  /external/webkit/Tools/DumpRenderTree/win/
UIDelegate.cpp 487 size_t fileProtocol = newMessage.find(L"file://");
488 if (fileProtocol != wstring::npos)
489 newMessage = newMessage.substr(0, fileProtocol) + lastPathComponent(newMessage.substr(fileProtocol));
LayoutTestControllerWin.cpp 687 wstring fileProtocol = L"file://";
688 bool isFileProtocol = cygwinPath.find(fileProtocol) != string::npos;
736 windowsPath = fileProtocol + windowsPath;
    [all...]
  /external/webkit/Tools/DumpRenderTree/qt/
DumpRenderTreeQt.cpp 296 size_t fileProtocol = newMessage.indexOf(QLatin1String("file://"));
297 if (fileProtocol != -1) {
298 newMessage = newMessage.left(fileProtocol) + urlSuitableForTestResult(newMessage.mid(fileProtocol));
    [all...]
  /external/webkit/Tools/DumpRenderTree/chromium/
WebViewHost.cpp 260 size_t fileProtocol = newMessage.find("file://");
261 if (fileProtocol != string::npos) {
262 newMessage = newMessage.substr(0, fileProtocol)
263 + urlSuitableForTestResult(newMessage.substr(fileProtocol));
    [all...]

Completed in 119 milliseconds