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

  /external/qemu/distrib/mini-glib/include/
glib.h 113 } GSList;
115 void g_slist_free(GSList* list);
116 GSList* g_slist_last(GSList* list);
117 GSList* g_slist_find(GSList* list, gconstpointer data);
118 GSList* g_slist_append(GSList* list, gpointer data);
119 GSList* g_slist_prepend(GSList* list, gpointer data)
    [all...]
  /external/qemu/distrib/mini-glib/src/
glib-mini.c 176 GSList* string_list = NULL;
200 GSList* slist = string_list;
234 static GSList* _g_slist_alloc(void) {
235 return (GSList*) g_malloc(sizeof(GSList));
238 void g_slist_free(GSList* list) {
240 GSList* next = list->next;
246 GSList* g_slist_last(GSList* list) {
252 GSList* g_slist_find(GSList* list, const void* data)
    [all...]
  /external/chromium_org/ui/gfx/
render_text_pango.cc 27 // Returns the preceding element in a GSList (O(n)).
28 GSList* GSListPrevious(GSList* head, GSList* item) {
29 GSList* prev = NULL;
30 for (GSList* cur = head; cur != item; cur = cur->next) {
146 for (GSList* it = current_line_->runs; it; it = it->next) {
167 GSList* run = GetRunContainingCaret(selection);
219 GSList* run = GetRunContainingCaret(cur);
412 for (GSList* it = current_line_->runs; it; it = it->next)
    [all...]
render_text_pango.h 50 GSList* GetRunContainingCaret(const SelectionModel& caret) const;
  /external/qemu/include/qom/
object.h 359 GSList *interfaces;
748 GSList *object_class_get_list(const char *implements_type,
    [all...]
  /external/chromium_org/chrome/browser/ui/libgtk2ui/
select_file_dialog_impl_gtk2.cc 357 GSList* filters = gtk_file_chooser_list_filters(GTK_FILE_CHOOSER(dialog));
593 GSList* filenames = gtk_file_chooser_get_filenames(GTK_FILE_CHOOSER(dialog));
600 for (GSList* iter = filenames; iter != NULL; iter = g_slist_next(iter)) {
  /external/chromium_org/third_party/icu/source/samples/layout/
gnomelayout.cpp 45 static GSList *appList = NULL;
cgnomelayout.c 35 static GSList *appList = NULL;
  /external/icu/icu4c/source/samples/layout/
gnomelayout.cpp 45 static GSList *appList = NULL;
cgnomelayout.c 35 static GSList *appList = NULL;
  /external/qemu/qom/
object.c 246 GSList *e;
514 GSList *i;
684 GSList **list = opaque;
689 GSList *object_class_get_list(const char *implements_type,
692 GSList *list = NULL;
    [all...]
  /external/chromium_org/net/proxy/
proxy_config_service_linux.cc 444 GSList* list = gconf_client_get_list(client_, key,
450 for (GSList *it = list; it; it = it->next) {
    [all...]

Completed in 313 milliseconds