Searched defs:pathOrURL (Results 1 - 4 of 4) 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...]
/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/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
/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...]

Completed in 124 milliseconds