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

  /external/webkit/WebKitTools/DumpRenderTree/mac/
PolicyDelegate.mm 55 const char* typeDescription;
58 typeDescription = "link clicked";
61 typeDescription = "form submitted";
64 typeDescription = "back/forward";
67 typeDescription = "reload";
70 typeDescription = "form resubmitted";
73 typeDescription = "other";
76 typeDescription = "illegal value";
79 NSString *message = [NSString stringWithFormat:@"Policy delegate: attempt to load %@ with navigation type '%s'", [[request URL] _drt_descriptionSuitableForTestResult], typeDescription];
  /external/webkit/WebKitTools/DumpRenderTree/win/
PolicyDelegate.cpp 111 LPCTSTR typeDescription;
114 typeDescription = TEXT("link clicked");
117 typeDescription = TEXT("form submitted");
120 typeDescription = TEXT("back/forward");
123 typeDescription = TEXT("reload");
126 typeDescription = TEXT("form resubmitted");
129 typeDescription = TEXT("other");
132 typeDescription = TEXT("illegal value");
135 wstring message = TEXT("Policy delegate: attempt to load ") + wurl + TEXT(" with navigation type '") + typeDescription + TEXT("'");
  /external/webkit/WebKitTools/DumpRenderTree/qt/
DumpRenderTreeQt.cpp 242 QString typeDescription;
246 typeDescription = "link clicked";
249 typeDescription = "form submitted";
252 typeDescription = "back/forward";
255 typeDescription = "reload";
258 typeDescription = "form resubmitted";
261 typeDescription = "other";
264 typeDescription = "illegal value";
269 url.toUtf8().constData(), typeDescription.toUtf8().constData());
  /external/webkit/WebKitTools/DumpRenderTree/gtk/
DumpRenderTree.cpp 655 gchar* typeDescription;
661 typeDescription = g_strdup("link clicked");
664 typeDescription = g_strdup("form submitted");
667 typeDescription = g_strdup("back/forward");
670 typeDescription = g_strdup("reload");
673 typeDescription = g_strdup("form resubmitted");
676 typeDescription = g_strdup("other");
679 typeDescription = g_strdup("illegal value");
682 printf("Policy delegate: attempt to load %s with navigation type '%s'\n", webkit_network_request_get_uri(request), typeDescription);
683 g_free(typeDescription);
    [all...]

Completed in 123 milliseconds