HomeSort by relevance Sort by last modified time
    Searched refs:gchar (Results 1 - 25 of 149) sorted by null

1 2 3 4 5 6

  /external/webkit/Source/WebKit/gtk/tests/
test_utils.h 3 int testutils_relative_chdir(const gchar*, const gchar*);
test_utils.c 25 int testutils_relative_chdir(const gchar* target_filename, const gchar* executable_path)
34 gchar *path_name;
42 gchar* dirname = g_path_get_dirname(target_filename);
  /external/webkit/Source/WebCore/bindings/gobject/
ConvertToUTF8String.h 30 typedef char gchar; typedef
32 gchar* convertToUTF8String(WTF::String const& s);
33 gchar* convertToUTF8String(WebCore::KURL const& s);
ConvertToUTF8String.cpp 30 gchar* convertToUTF8String(WTF::String const& s)
35 gchar* convertToUTF8String(WebCore::KURL const& s)
  /external/webkit/Source/WebKit/gtk/webkit/
webkitwebresourceprivate.h 34 gchar* uri;
35 gchar* mimeType;
36 gchar* textEncoding;
37 gchar* frameName;
webkitwebframeprivate.h 45 gchar* name;
46 gchar* title;
47 gchar* uri;
55 WEBKIT_API gchar* webkit_web_frame_get_response_mime_type(WebKitWebFrame*);
webkitdownloadprivate.h 32 void webkit_download_set_suggested_filename(WebKitDownload*, const gchar* suggestedFilename);
webkitwebresource.h 60 webkit_web_resource_new (const gchar *data,
62 const gchar *uri,
63 const gchar *mime_type,
64 const gchar *encoding,
65 const gchar *frame_name);
70 WEBKIT_API G_CONST_RETURN gchar *
73 WEBKIT_API G_CONST_RETURN gchar *
76 WEBKIT_API G_CONST_RETURN gchar *
79 WEBKIT_API G_CONST_RETURN gchar *
webkitwebsettingsprivate.h 30 WEBKIT_API void webkit_web_settings_add_extra_plugin_directory(WebKitWebView*, const gchar* directory);
webkitsecurityoriginprivate.h 40 gchar* protocol;
41 gchar* host;
webkitwebinspectorprivate.h 36 void webkit_web_inspector_set_inspected_uri(WebKitWebInspector*, const gchar*);
38 WEBKIT_API void webkit_web_inspector_execute_script(WebKitWebInspector*, long callId, const gchar* script);
webkitwebhistoryitem.h 63 webkit_web_history_item_new_with_data (const gchar *uri,
64 const gchar *title);
66 WEBKIT_API G_CONST_RETURN gchar *
69 WEBKIT_API G_CONST_RETURN gchar *
74 const gchar *title);
76 WEBKIT_API G_CONST_RETURN gchar *
79 WEBKIT_API G_CONST_RETURN gchar *
webkitwebframe.h 102 WEBKIT_API G_CONST_RETURN gchar *
105 WEBKIT_API G_CONST_RETURN gchar *
108 WEBKIT_API G_CONST_RETURN gchar *
116 const gchar *uri);
120 const gchar *content,
121 const gchar *mime_type,
122 const gchar *encoding,
123 const gchar *base_uri);
127 const gchar *content,
128 const gchar *base_url
    [all...]
webkitapplicationcache.h 33 WEBKIT_API G_CONST_RETURN gchar*
webkiticondatabase.h 58 WEBKIT_API G_CONST_RETURN gchar*
63 const gchar* path);
65 WEBKIT_API gchar*
67 const gchar* page_uri);
71 const gchar* page_uri);
webkitwebdatabase.h 61 WEBKIT_API G_CONST_RETURN gchar*
64 WEBKIT_API G_CONST_RETURN gchar*
73 WEBKIT_API G_CONST_RETURN gchar*
82 WEBKIT_API G_CONST_RETURN gchar*
86 webkit_set_web_database_directory_path (const gchar* path);
webkitwebview.h 112 gchar * (* choose_file) (WebKitWebView *web_view,
114 const gchar *old_file);
117 const gchar *alert_message);
120 const gchar *confirm_message,
124 const gchar *message,
125 const gchar *default_value,
126 gchar* *value);
128 const gchar *message,
130 const gchar* source_id);
162 WEBKIT_API G_CONST_RETURN gchar *
    [all...]
  /external/webkit/Source/WebCore/platform/gtk/
WidgetRenderingContext.h 44 void gtkPaintBox(const IntRect&, GtkWidget*, GtkStateType, GtkShadowType, const gchar*);
45 void gtkPaintFlatBox(const IntRect&, GtkWidget*, GtkStateType, GtkShadowType, const gchar*);
46 void gtkPaintFocus(const IntRect&, GtkWidget*, GtkStateType, const gchar*);
47 void gtkPaintSlider(const IntRect&, GtkWidget*, GtkStateType, GtkShadowType, const gchar*, GtkOrientation);
48 void gtkPaintCheck(const IntRect&, GtkWidget*, GtkStateType, GtkShadowType, const gchar*);
49 void gtkPaintOption(const IntRect&, GtkWidget*, GtkStateType, GtkShadowType, const gchar*);
50 void gtkPaintShadow(const IntRect&, GtkWidget*, GtkStateType, GtkShadowType, const gchar*);
51 void gtkPaintArrow(const IntRect&, GtkWidget*, GtkStateType, GtkShadowType, int arrowDirection, const gchar*);
52 void gtkPaintVLine(const IntRect&, GtkWidget*, GtkStateType, const gchar*);
KURLGtk.cpp 31 gchar* filename = g_filename_from_uri(m_string.utf8().data(), 0, 0);
  /external/webkit/Source/WebKit/gtk/gdom/
ConvertToGCharPrivate.h 28 inline gchar* copyAsGchar(WTF::String const& s)
33 inline gchar* copyAsGchar(WebCore::KURL const& s)
38 inline gchar* copyAsGchar(const JSC::UString& s)
43 inline gchar* copyAsGchar(WTF::AtomicString const& s)
  /external/webkit/Tools/DumpRenderTree/gtk/
WorkQueueItemGtk.cpp 31 gchar* JSStringCopyUTF8CString(JSStringRef jsString)
34 gchar* utf8 = (gchar*)g_malloc(dataSize);
42 gchar* targetString = JSStringCopyUTF8CString(m_target.get());
51 gchar* urlString = JSStringCopyUTF8CString(m_url.get());
62 GOwnPtr<gchar> content(JSStringCopyUTF8CString(m_content.get()));
63 GOwnPtr<gchar> baseURL(JSStringCopyUTF8CString(m_baseURL.get()));
66 GOwnPtr<gchar> unreachableURL(JSStringCopyUTF8CString(m_unreachableURL.get()));
83 gchar* scriptString = JSStringCopyUTF8CString(m_script.get());
  /external/chromium/chrome/browser/ui/gtk/
gtk_chrome_link_button.h 40 gchar* normal_markup;
41 gchar* pressed_markup;
43 gchar normal_color[9];
44 gchar* native_markup;
47 gchar* text;
  /external/webkit/Source/WebCore/bindings/scripts/test/GObject/
WebKitDOMTestObj.h 53 webkit_dom_test_obj_void_method_with_args(WebKitDOMTestObj* self, glong int_arg, const gchar* str_arg, WebKitDOMTestObj* obj_arg);
59 webkit_dom_test_obj_int_method_with_args(WebKitDOMTestObj* self, glong int_arg, const gchar* str_arg, WebKitDOMTestObj* obj_arg);
65 webkit_dom_test_obj_obj_method_with_args(WebKitDOMTestObj* self, glong int_arg, const gchar* str_arg, WebKitDOMTestObj* obj_arg);
68 webkit_dom_test_obj_method_that_requires_all_args(WebKitDOMTestObj* self, const gchar* str_arg, WebKitDOMTestObj* obj_arg);
71 webkit_dom_test_obj_method_that_requires_all_args_and_throws(WebKitDOMTestObj* self, const gchar* str_arg, WebKitDOMTestObj* obj_arg, GError **error);
133 WEBKIT_API gchar*
169 WEBKIT_API gchar*
173 webkit_dom_test_obj_set_string_attr(WebKitDOMTestObj* self, const gchar* value);
193 WEBKIT_API gchar*
197 webkit_dom_test_obj_set_reflected_string_attr(WebKitDOMTestObj* self, const gchar* value)
    [all...]
  /external/icu4c/samples/layout/
GnomeGUISupport.cpp 25 gchar *s;
  /external/webkit/Source/WebCore/platform/network/soup/
SoupURIUtils.cpp 34 GOwnPtr<gchar> urlString(soup_uri_to_string(soupURI, FALSE));

Completed in 418 milliseconds

1 2 3 4 5 6