HomeSort by relevance Sort by last modified time
    Searched full:web_view (Results 1 - 25 of 34) sorted by null

1 2

  /external/webkit/WebKit/gtk/webkit/
webkitwebview.h 80 WebKitWebView * (* create_web_view) (WebKitWebView *web_view,
83 gboolean (* web_view_ready) (WebKitWebView* web_view);
85 gboolean (* close_web_view) (WebKitWebView* web_view);
87 WebKitNavigationResponse (* navigation_requested) (WebKitWebView *web_view,
90 void (* window_object_cleared) (WebKitWebView *web_view,
94 gchar * (* choose_file) (WebKitWebView *web_view,
97 gboolean (* script_alert) (WebKitWebView *web_view,
100 gboolean (* script_confirm) (WebKitWebView *web_view,
104 gboolean (* script_prompt) (WebKitWebView *web_view,
109 gboolean (* console_message) (WebKitWebView *web_view,
    [all...]
webkitwebview.cpp 103 * GtkWidget *web_view = webkit_web_view_new ();
106 * gtk_container_add (GTK_CONTAINER (scrolled_window), web_view);
110 * webkit_web_view_load_uri (WEBKIT_WEB_VIEW (web_view), "http://www.gnome.org");
611 WebKitWebView* web_view = WEBKIT_WEB_VIEW(widget); local
612 Frame* coreFrame = core(webkit_web_view_get_main_frame(web_view));
    [all...]
webkitprivate.h 225 webkit_web_inspector_set_web_view(WebKitWebInspector *web_inspector, WebKitWebView *web_view);
238 webkit_web_view_notify_ready (WebKitWebView* web_view);
241 webkit_web_view_request_download(WebKitWebView* web_view, WebKitNetworkRequest* request, const WebCore::ResourceResponse& response = WebCore::ResourceResponse(), WebCore::ResourceHandle* handle = 0);
326 webkit_web_view_get_selected_text (WebKitWebView* web_view);
329 webkit_web_view_set_group_name(WebKitWebView* web_view, const gchar* group_name);
332 webkit_web_settings_add_extra_plugin_directory (WebKitWebView *web_view, const gchar* directory);
335 webkit_web_settings_get_spell_languages(WebKitWebView* web_view);
338 webkit_web_view_use_primary_for_paste(WebKitWebView* web_view);
webkitwebbackforwardlist.h 61 webkit_web_back_forward_list_new_with_web_view (WebKitWebView *web_view);
webkitwebinspector.cpp 128 * @web_view: the #WebKitWeb which will be inspected
405 void webkit_web_inspector_set_web_view(WebKitWebInspector *web_inspector, WebKitWebView *web_view)
408 g_return_if_fail(WEBKIT_IS_WEB_VIEW(web_view));
415 g_object_ref(web_view);
416 priv->inspector_view = web_view;
webkitwebsettings.cpp 683 * the @web_view. If @flag is %FALSE, the @web_view will interpret tab
    [all...]
webkitwebframe.h 96 webkit_web_frame_new (WebKitWebView *web_view);
webkitwebbackforwardlist.cpp 100 * @web_view: the back forward list's #WebKitWebView
  /external/webkit/WebKitTools/GtkLauncher/
main.c 33 static WebKitWebView* web_view; variable
43 webkit_web_view_load_uri (web_view, uri);
68 notify_title_cb (WebKitWebView* web_view, GParamSpec* pspec, gpointer data)
72 main_title = g_strdup (webkit_web_view_get_title(web_view));
77 notify_load_status_cb (WebKitWebView* web_view, GParamSpec* pspec, gpointer data)
79 if (webkit_web_view_get_load_status (web_view) == WEBKIT_LOAD_COMMITTED) {
80 WebKitWebFrame* frame = webkit_web_view_get_main_frame (web_view);
88 notify_progress_cb (WebKitWebView* web_view, GParamSpec* pspec, gpointer data)
90 load_progress = webkit_web_view_get_progress (web_view) * 100;
103 webkit_web_view_go_back (web_view);
    [all...]
  /external/webkit/WebKit/gtk/tests/
testwebresource.c 141 static void resource_request_starting_cb(WebKitWebView* web_view, WebKitWebFrame* web_frame, WebKitWebResource* web_resource, WebKitNetworkRequest* request, WebKitNetworkResponse* response, gpointer data)
166 static void notify_load_status_cb(WebKitWebView* web_view, GParamSpec* pspec, gpointer data)
168 if (webkit_web_view_get_load_status(web_view) == WEBKIT_LOAD_FINISHED) {
172 g_assert_cmpstr(webkit_web_view_get_uri(web_view), ==, "about:blank");
180 WebKitWebView* web_view = WEBKIT_WEB_VIEW(webkit_web_view_new()); local
188 g_object_ref_sink(web_view);
190 g_signal_connect(web_view, "resource-request-starting",
194 g_signal_connect(web_view, "notify::load-status",
198 webkit_web_view_load_uri(web_view, base_uri);
203 web_frame = webkit_web_view_get_main_frame(web_view);
239 WebKitWebView* web_view = WEBKIT_WEB_VIEW(webkit_web_view_new()); local
    [all...]
testhttpbackend.c 32 static gboolean navigation_policy_decision_requested_cb(WebKitWebView* web_view,
53 WebKitWebView* web_view = WEBKIT_WEB_VIEW(webkit_web_view_new()); local
55 g_object_ref_sink(web_view);
57 g_signal_connect(web_view, "navigation-policy-decision-requested",
64 webkit_web_view_load_uri(web_view, "http://127.0.0.1/");
66 g_object_unref(web_view);
testwebview.c 72 static void idle_quit_loop_cb(WebKitWebView* web_view, GParamSpec* pspec, gpointer data)
74 if (webkit_web_view_get_load_status(web_view) == WEBKIT_LOAD_FINISHED ||
75 webkit_web_view_get_load_status(web_view) == WEBKIT_LOAD_FAILED)
79 static void icon_uri_changed_cb(WebKitWebView* web_view, GParamSpec* pspec, gpointer data)
87 g_assert_cmpstr(webkit_web_view_get_icon_uri(web_view), ==, expected_uri);
93 static void icon_loaded_cb(WebKitWebView* web_view, char* icon_uri, gpointer data)
100 g_assert_cmpstr(icon_uri, ==, webkit_web_view_get_icon_uri(web_view));
testdownload.c 58 navigation_policy_decision_requested_cb(WebKitWebView* web_view,
87 download_requested_cb(WebKitWebView* web_view,
testwindow.c 25 static void notify_load_status_cb(WebKitWebView* web_view, GParamSpec* pspec, gpointer data)
27 if (webkit_web_view_get_load_status(web_view) == WEBKIT_LOAD_FINISHED) {
testmimehandling.c 91 static void idle_quit_loop_cb(WebKitWebView* web_view, GParamSpec* pspec, gpointer data)
93 if (webkit_web_view_get_load_status(web_view) == WEBKIT_LOAD_FINISHED ||
94 webkit_web_view_get_load_status(web_view) == WEBKIT_LOAD_FAILED)
testloading.c 103 static void load_finished_cb(WebKitWebView* web_view, WebKitWebFrame* web_frame, WebLoadingFixture* fixture)
  /frameworks/base/core/java/android/webkit/
DebugFlags.java 48 public static final boolean WEB_VIEW = false;
WebView.java     [all...]
  /external/webkit/WebKit/gtk/po/
en_GB.po 439 msgid "Returns the @web_view's document title"
440 msgstr "Returns the @web_view's document title"
443 msgid "Returns the current URI of the contents displayed by the @web_view"
444 msgstr "Returns the current URI of the contents displayed by the @web_view"
it.po 494 msgid "Returns the @web_view's document title"
495 msgstr "Restituisce il titolo del documento di @web_view"
498 msgid "Returns the current URI of the contents displayed by the @web_view"
499 msgstr "Restituisce l'URI attuale del contenuto mostrato dalla @web_view"
lt.po 447 msgid "Returns the @web_view's document title"
448 msgstr "Gr??ina @web_view objekte atverto tinklalapio pavadinim?"
451 msgid "Returns the current URI of the contents displayed by the @web_view"
452 msgstr "Gr??ina @web_view objekte atverto tinklalapio universal?j? i?tekliaus identifikatori? (URI)"
nl.po 439 msgid "Returns the @web_view's document title"
440 msgstr "Geeft de documenttitel van de @web_view terug"
443 msgid "Returns the current URI of the contents displayed by the @web_view"
444 msgstr "Geeft de huidige URI terug van de inhoud die de @web_view weergeeft"
vi.po 438 msgid "Returns the @web_view's document title"
439 msgstr "Tr? v? tiêu ?? tài li?u c?a @web_view"
442 msgid "Returns the current URI of the contents displayed by the @web_view"
443 msgstr "Tr? v? URI hi?n th?i c?a tài li?u ???c @web_view hi?n th?"
zh_CN.po 440 msgid "Returns the @web_view's document title"
441 msgstr "?? @web_view ?????"
444 msgid "Returns the current URI of the contents displayed by the @web_view"
445 msgstr "????? @web_view ?????? URI"
de.po 440 msgid "Returns the @web_view's document title"
445 msgid "Returns the current URI of the contents displayed by the @web_view"

Completed in 7650 milliseconds

1 2