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

  /external/webkit/Tools/WebKitTestRunner/
TestInvocation.cpp 52 static WKURLRef createWKURL(const char* pathOrURL)
54 if (strstr(pathOrURL, "http://") || strstr(pathOrURL, "https://") || strstr(pathOrURL, "file://"))
55 return WKURLCreateWithUTF8CString(pathOrURL);
58 size_t length = strlen(pathOrURL);
67 bool isAbsolutePath = length >= 3 && pathOrURL[1] == ':' && pathOrURL[2] == separator;
70 bool isAbsolutePath = pathOrURL[0] == separator;
77 strcpy(buffer.get() + prefixLength, pathOrURL);
    [all...]
TestInvocation.h 38 TestInvocation(const std::string& pathOrURL);
TestController.cpp 403 std::string pathOrURL(test);
405 size_t separatorPos = pathOrURL.find("'");
407 pathOrURL = std::string(std::string(test), 0, separatorPos);
413 m_currentInvocation.set(new TestInvocation(pathOrURL));
TestController.h 65 bool runTest(const char* pathOrURL);
  /external/webkit/Tools/DumpRenderTree/chromium/
DumpRenderTree.cpp 81 string pathOrURL = testName;
84 string::size_type separatorPosition = pathOrURL.find(' ');
86 timeOut = pathOrURL.substr(separatorPosition + 1);
87 pathOrURL.erase(separatorPosition);
96 string::size_type separatorPosition = pathOrURL.find("'");
98 params.pixelHash = pathOrURL.substr(separatorPosition + 1);
99 pathOrURL.erase(separatorPosition);
102 params.testUrl = webkit_support::CreateURLForPathOrURL(pathOrURL);
  /external/webkit/Tools/DumpRenderTree/wx/
DumpRenderTreeWx.cpp 224 string pathOrURL(pathOrURLString);
227 size_t separatorPos = pathOrURL.find("'");
229 pathOrURL = string(pathOrURLString, 0, separatorPos);
234 size_t http = pathOrURL.find("http://");
236 pathOrURL.insert(0, "file://");
238 gLayoutTestController = LayoutTestController::create(pathOrURL, expectedPixelHash);
246 webView->LoadURL(wxString(pathOrURL.c_str(), wxConvUTF8));
  /external/webkit/Tools/DumpRenderTree/win/
DumpRenderTree.cpp 791 static bool shouldLogFrameLoadDelegates(const char* pathOrURL)
793 return strstr(pathOrURL, "/loading/") || strstr(pathOrURL, "\\loading\\");
796 static bool shouldLogHistoryDelegates(const char* pathOrURL)
798 return strstr(pathOrURL, "/globalhistory/") || strstr(pathOrURL, "\\globalhistory\\");
801 static bool shouldOpenWebInspector(const char* pathOrURL)
803 return strstr(pathOrURL, "/inspector/") || strstr(pathOrURL, "\\inspector\\");
806 static bool shouldDumpAsText(const char* pathOrURL)
    [all...]
  /external/webkit/Tools/DumpRenderTree/mac/
DumpRenderTree.mm     [all...]
  /external/webkit/Tools/DumpRenderTree/gtk/
DumpRenderTree.cpp 99 static bool shouldLogFrameLoadDelegates(const string& pathOrURL)
101 return pathOrURL.find("loading/") != string::npos;
104 static bool shouldOpenWebInspector(const string& pathOrURL)
106 return pathOrURL.find("inspector/") != string::npos;
109 static bool shouldDumpAsText(const string& pathOrURL)
111 return pathOrURL.find("dumpAsText/") != string::npos;
114 static bool shouldEnableDeveloperExtras(const string& pathOrURL)
    [all...]

Completed in 1378 milliseconds