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

1 2 3 4

  /external/bluetooth/glib/glib/
gstring.h 40 typedef struct _GString GString;
66 GString* g_string_new (const gchar *init);
67 GString* g_string_new_len (const gchar *init,
69 GString* g_string_sized_new (gsize dfl_size);
70 gchar* g_string_free (GString *string,
72 gboolean g_string_equal (const GString *v,
73 const GString *v2);
74 guint g_string_hash (const GString *str);
75 GString* g_string_assign (GString *string
    [all...]
gstring.c 353 g_string_maybe_expand (GString* string,
368 * Creates a new #GString, with enough space for @dfl_size
373 * Returns: the new #GString
375 GString*
378 GString *string = g_slice_new (GString);
394 * Creates a new #GString, initialized with the given string.
396 * Returns: the new #GString
398 GString*
401 GString *string
    [all...]
Android.mk 14 gstring.c \
gmessages.c 604 GString *gstring = g_string_new ("[Invalid UTF-8] "); local
612 g_string_append_c (gstring, *p);
614 g_string_append_printf (gstring, "\\x%02x", (guint)(guchar)*p);
617 return g_string_free (gstring, FALSE);
826 escape_string (GString *string)
893 GString *gstring; local
907 gstring = g_string_new (NULL);
909 g_string_append (gstring, "\n")
    [all...]
gtestutils.c 1371 GString *gstring; local
1827 GString *gstring = g_string_sized_new (1024); local
    [all...]
giochannel.h 36 #include <glib/gstring.h>
121 GString *read_buf; /* Raw data from the channel */
122 GString *encoded_read_buf; /* Channel data converted to UTF-8 */
123 GString *write_buf; /* Data ready to be written to the file */
240 GString *buffer,
gregex.h 30 #include <glib/gstring.h>
125 GString *result,
  /external/bluetooth/glib/gio/tests/
sleepy-stream.c 160 GString *string,
186 build_comparison (GString *str,
206 GString *one;
207 GString *two;
226 static GString *one, *two;
  /external/bluetooth/glib/tests/
unicode-normalize.c 16 GString *result = g_string_new (NULL);
48 GString *result = g_string_new(NULL);
146 GString *buffer = g_string_new (NULL);
iochannel-test.c 59 GString *buffer;
  /external/bluetooth/glib/gobject/
gvaluetransform.c 215 GString *gstring = g_string_new (NULL); local
222 if (gstring->str[0])
223 g_string_append (gstring, " | ");
224 g_string_append (gstring, flags_value->value_name);
231 gstring->str,
234 dest_value->data[0].v_pointer = g_strdup (gstring->str);
235 g_string_free (gstring, TRUE);
gboxed.c 212 const GString *src_gstring = boxed;
220 GString *gstring = boxed; local
222 g_string_free (gstring, TRUE);
231 type_id = g_boxed_type_register_static (g_intern_static_string ("GString"),
232 /* the naming is a bit odd, but GString is obviously not G_TYPE_STRING */
gboxed.h 146 * The #GType for #GString.
  /external/bluetooth/glib/docs/reference/glib/tmpl/
strings.sgml 9 A #GString is similar to a standard C string, except that it grows
23 <!-- ##### STRUCT GString ##### -->
25 The #GString struct contains the public fields of a #GString.
  /external/webkit/Source/WebKit/gtk/webkit/
webkitwebresourceprivate.h 39 GString* data;
webkitwebdatasource.h 82 WEBKIT_API GString *
webkitwebresource.h 67 WEBKIT_API GString *
webkitwebdatasource.cpp 72 GString* data;
327 * Return value: (transfer none): a #GString which contains the raw
333 GString* webkit_web_data_source_get_data(WebKitWebDataSource* webDataSource)
webkitwebresource.cpp 286 * Return value: (transfer none): a #GString containing the character
292 GString* webkit_web_resource_get_data(WebKitWebResource* webResource)
  /sdk/layoutopt/libs/uix/src/com/android/layoutopt/uix/groovy/
LayoutAnalysisCategory.java 27 import groovy.lang.GString;
191 public static LayoutAnalysis leftShift(LayoutAnalysis analysis, GString description) {
  /external/bluetooth/glib/gio/
gdummyfile.c 76 static void g_string_append_encoded (GString *string,
350 GString *str;
691 g_string_append_encoded (GString *string,
721 GString *uri;
gicon.c 163 g_icon_to_string_tokenized (GIcon *icon, GString *s)
287 GString *s;
  /external/bluetooth/glib/
glib.h 77 #include <glib/gstring.h>
  /external/bluetooth/glib/tests/gobject/
ifacecheck.c 44 GString *history;
  /external/bluetooth/bluez/gdbus/
object.c 62 static void print_arguments(GString *gstr, const char *sig,
122 static void generate_interface_xml(GString *gstr, struct interface_data *iface)
157 GString *gstr;

Completed in 1098 milliseconds

1 2 3 4