Searched refs:pathOrURL (Results 1 - 9 of 9) sorted by relevance

/external/webkit/Tools/WebKitTestRunner/
H A DTestInvocation.cpp52 static WKURLRef createWKURL(const char* pathOrURL) argument
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);
91 TestInvocation(const std::string& pathOrURL) argument
117 sizeWebViewForCurrentTest(const char* pathOrURL) argument
127 shouldOpenWebInspector(const char* pathOrURL) argument
[all...]
H A DTestInvocation.h38 TestInvocation(const std::string& pathOrURL);
H A DTestController.cpp403 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));
H A DTestController.h65 bool runTest(const char* pathOrURL);
/external/webkit/Tools/DumpRenderTree/chromium/
H A DDumpRenderTree.cpp81 string pathOrURL = testName; local
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/
H A DDumpRenderTreeWx.cpp224 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/
H A DDumpRenderTree.cpp791 static bool shouldLogFrameLoadDelegates(const char* pathOrURL) argument
793 return strstr(pathOrURL, "/loading/") || strstr(pathOrURL, "\\loading\\");
796 static bool shouldLogHistoryDelegates(const char* pathOrURL) argument
798 return strstr(pathOrURL, "/globalhistory/") || strstr(pathOrURL, "\\globalhistory\\");
801 static bool shouldOpenWebInspector(const char* pathOrURL) argument
803 return strstr(pathOrURL, "/inspector/") || strstr(pathOrURL, "\\inspector\\");
806 static bool shouldDumpAsText(const char* pathOrURL) argument
811 shouldEnableDeveloperExtras(const char* pathOrURL) argument
[all...]
/external/webkit/Tools/DumpRenderTree/mac/
H A DDumpRenderTree.mm1012 static bool shouldLogFrameLoadDelegates(const char* pathOrURL)
1014 return strstr(pathOrURL, "loading/");
1017 static bool shouldLogHistoryDelegates(const char* pathOrURL)
1019 return strstr(pathOrURL, "globalhistory/");
1022 static bool shouldOpenWebInspector(const char* pathOrURL)
1024 return strstr(pathOrURL, "inspector/");
1027 static bool shouldDumpAsText(const char* pathOrURL)
1029 return strstr(pathOrURL, "dumpAsText/");
1032 static bool shouldEnableDeveloperExtras(const char* pathOrURL)
1078 string pathOrURL(testPathOrUR
[all...]
/external/webkit/Tools/DumpRenderTree/gtk/
H A DDumpRenderTree.cpp99 static bool shouldLogFrameLoadDelegates(const string& pathOrURL) argument
101 return pathOrURL.find("loading/") != string::npos;
104 static bool shouldOpenWebInspector(const string& pathOrURL) argument
106 return pathOrURL.find("inspector/") != string::npos;
109 static bool shouldDumpAsText(const string& pathOrURL) argument
111 return pathOrURL.find("dumpAsText/") != string::npos;
114 static bool shouldEnableDeveloperExtras(const string& pathOrURL) argument

Completed in 215 milliseconds