Searched refs:pathOrURL (Results 1 – 4 of 4) sorted by relevance
/external/webkit/WebKitTools/DumpRenderTree/wx/ |
D | DumpRenderTreeWx.cpp | 227 string pathOrURL(pathOrURLString); in runTest() local 230 size_t separatorPos = pathOrURL.find("'"); in runTest() 232 pathOrURL = string(pathOrURLString, 0, separatorPos); in runTest() 237 size_t http = pathOrURL.find("http://"); in runTest() 239 pathOrURL.insert(0, "file://"); in runTest() 241 gLayoutTestController = new LayoutTestController(pathOrURL, expectedPixelHash); in runTest() 249 webView->LoadURL(wxString(pathOrURL.c_str(), wxConvUTF8)); in runTest()
|
/external/webkit/WebKitTools/DumpRenderTree/gtk/ |
D | DumpRenderTree.cpp | 103 static bool shouldLogFrameLoadDelegates(const char* pathOrURL) in shouldLogFrameLoadDelegates() argument 105 return strstr(pathOrURL, "loading/"); in shouldLogFrameLoadDelegates() 382 string pathOrURL(testPathOrURL); in runTest() local 385 size_t separatorPos = pathOrURL.find("'"); in runTest() 387 pathOrURL = string(testPathOrURL, 0, separatorPos); in runTest() 391 gchar* url = autocorrectURL(pathOrURL.c_str()); in runTest() 402 if (shouldLogFrameLoadDelegates(pathOrURL.c_str())) in runTest()
|
/external/webkit/WebKitTools/DumpRenderTree/win/ |
D | DumpRenderTree.cpp | 655 static bool shouldLogFrameLoadDelegates(const char* pathOrURL) in shouldLogFrameLoadDelegates() argument 657 return strstr(pathOrURL, "/loading/") || strstr(pathOrURL, "\\loading\\"); in shouldLogFrameLoadDelegates() 727 string pathOrURL(testPathOrURL); in runTest() local 730 size_t separatorPos = pathOrURL.find("'"); in runTest() 732 pathOrURL = string(testPathOrURL, 0, separatorPos); in runTest() 738 … CFStringRef str = CFStringCreateWithCString(0, pathOrURL.c_str(), kCFStringEncodingWindowsLatin1); in runTest() 757 ::gLayoutTestController = new LayoutTestController(pathOrURL, expectedPixelHash); in runTest() 763 if (shouldLogFrameLoadDelegates(pathOrURL.c_str())) in runTest()
|
/external/webkit/WebKitTools/DumpRenderTree/mac/ |
D | DumpRenderTree.mm | 1036 static bool shouldLogFrameLoadDelegates(const char *pathOrURL) 1038 return strstr(pathOrURL, "loading/"); 1081 string pathOrURL(testPathOrURL); 1084 size_t separatorPos = pathOrURL.find("'"); 1086 pathOrURL = string(testPathOrURL, 0, separatorPos); 1090 NSString *pathOrURLString = [NSString stringWithUTF8String:pathOrURL.c_str()]; 1092 fprintf(stderr, "Failed to parse \"%s\" as UTF-8\n", pathOrURL.c_str()); 1102 fprintf(stderr, "Failed to parse \"%s\" as a URL\n", pathOrURL.c_str()); 1120 if (shouldLogFrameLoadDelegates(pathOrURL.c_str()))
|