w0                265 lib/widget/group.c     GList *w0;
w0                267 lib/widget/group.c     w0 = widget_default_find (w, what);
w0                268 lib/widget/group.c     if (w0 == NULL)
w0                274 lib/widget/group.c             w0 = widget_find (WIDGET (iter->data), what);
w0                275 lib/widget/group.c             if (w0 != NULL)
w0                280 lib/widget/group.c     return w0;
w0                297 lib/widget/group.c     Widget *w0;
w0                299 lib/widget/group.c     w0 = widget_default_find_by_type (w, cb);
w0                300 lib/widget/group.c     if (w0 == NULL)
w0                306 lib/widget/group.c             w0 = widget_find_by_type (WIDGET (iter->data), cb);
w0                307 lib/widget/group.c             if (w0 != NULL)
w0                312 lib/widget/group.c     return w0;
w0                329 lib/widget/group.c     Widget *w0;
w0                331 lib/widget/group.c     w0 = widget_default_find_by_id (w, id);
w0                332 lib/widget/group.c     if (w0 == NULL)
w0                338 lib/widget/group.c             w0 = widget_find_by_id (WIDGET (iter->data), id);
w0                339 lib/widget/group.c             if (w0 != NULL)
w0                344 lib/widget/group.c     return w0;
w0                 87 tests/lib/widget/group_init_destroy.c     Widget *w0;
w0                 99 tests/lib/widget/group_init_destroy.c     w0 = g_new0 (Widget, 1);
w0                101 tests/lib/widget/group_init_destroy.c     widget_init (w0, &r, widget_callback, NULL);
w0                102 tests/lib/widget/group_init_destroy.c     group_add_widget (g0, w0);
w0                104 tests/lib/widget/group_init_destroy.c     w0 = g_new0 (Widget, 1);
w0                106 tests/lib/widget/group_init_destroy.c     widget_init (w0, &r, widget_callback, NULL);
w0                107 tests/lib/widget/group_init_destroy.c     group_add_widget (g0, w0);
w0                114 tests/lib/widget/group_init_destroy.c     w0 = g_new0 (Widget, 1);
w0                116 tests/lib/widget/group_init_destroy.c     widget_init (w0, &r, widget_callback, NULL);
w0                117 tests/lib/widget/group_init_destroy.c     group_add_widget (g0, w0);
w0                119 tests/lib/widget/group_init_destroy.c     w0 = g_new0 (Widget, 1);
w0                121 tests/lib/widget/group_init_destroy.c     widget_init (w0, &r, widget_callback, NULL);
w0                122 tests/lib/widget/group_init_destroy.c     group_add_widget (g0, w0);
w0                124 tests/lib/widget/group_init_destroy.c     w0 = g_new0 (Widget, 1);
w0                126 tests/lib/widget/group_init_destroy.c     widget_init (w0, &r, widget_callback, NULL);
w0                127 tests/lib/widget/group_init_destroy.c     group_add_widget (g, w0);
w0                129 tests/lib/widget/group_init_destroy.c     ck_assert_msg (w0->id == 7, "last id (%d) != 7", ref);
w0                 43 tests/lib/widget/widget_find_by_id.c     Widget *w0;
w0                 55 tests/lib/widget/widget_find_by_id.c     w0 = g_new0 (Widget, 1);
w0                 57 tests/lib/widget/widget_find_by_id.c     widget_init (w0, &r, widget_default_callback, NULL);        /* ID = 2 */
w0                 58 tests/lib/widget/widget_find_by_id.c     group_add_widget (g0, w0);
w0                 60 tests/lib/widget/widget_find_by_id.c     w0 = g_new0 (Widget, 1);
w0                 62 tests/lib/widget/widget_find_by_id.c     widget_init (w0, &r, widget_default_callback, NULL);        /* ID = 3 */
w0                 63 tests/lib/widget/widget_find_by_id.c     group_add_widget (g0, w0);
w0                 70 tests/lib/widget/widget_find_by_id.c     w0 = g_new0 (Widget, 1);
w0                 72 tests/lib/widget/widget_find_by_id.c     widget_init (w0, &r, widget_default_callback, NULL);        /* ID = 5 */
w0                 73 tests/lib/widget/widget_find_by_id.c     group_add_widget (g0, w0);
w0                 75 tests/lib/widget/widget_find_by_id.c     w0 = g_new0 (Widget, 1);
w0                 77 tests/lib/widget/widget_find_by_id.c     widget_init (w0, &r, widget_default_callback, NULL);        /* ID = 6 */
w0                 78 tests/lib/widget/widget_find_by_id.c     group_add_widget (g0, w0);
w0                 80 tests/lib/widget/widget_find_by_id.c     w0 = g_new0 (Widget, 1);
w0                 82 tests/lib/widget/widget_find_by_id.c     widget_init (w0, &r, widget_default_callback, NULL);        /* ID = 7 */
w0                 83 tests/lib/widget/widget_find_by_id.c     group_add_widget (g, w0);
w0                 85 tests/lib/widget/widget_find_by_id.c     w0 = WIDGET (g);
w0                 87 tests/lib/widget/widget_find_by_id.c     ck_assert_msg (widget_find_by_id (w0, 0) != NULL, "Not found ID=0");
w0                 88 tests/lib/widget/widget_find_by_id.c     ck_assert_msg (widget_find_by_id (w0, 1) != NULL, "Not found ID=1");
w0                 89 tests/lib/widget/widget_find_by_id.c     ck_assert_msg (widget_find_by_id (w0, 2) != NULL, "Not found ID=2");
w0                 90 tests/lib/widget/widget_find_by_id.c     ck_assert_msg (widget_find_by_id (w0, 3) != NULL, "Not found ID=3");
w0                 91 tests/lib/widget/widget_find_by_id.c     ck_assert_msg (widget_find_by_id (w0, 4) != NULL, "Not found ID=4");
w0                 92 tests/lib/widget/widget_find_by_id.c     ck_assert_msg (widget_find_by_id (w0, 5) != NULL, "Not found ID=5");
w0                 93 tests/lib/widget/widget_find_by_id.c     ck_assert_msg (widget_find_by_id (w0, 6) != NULL, "Not found ID=6");
w0                 94 tests/lib/widget/widget_find_by_id.c     ck_assert_msg (widget_find_by_id (w0, 7) != NULL, "Not found ID=7");
w0                 95 tests/lib/widget/widget_find_by_id.c     ck_assert_msg (widget_find_by_id (w0, 8) == NULL, "Found ID=8");
w0                 98 tests/lib/widget/widget_find_by_id.c     widget_destroy (w0);
w0                 44 tests/lib/widget/widget_make_global_local.c     Widget *w0, *w1, *w2;
w0                 52 tests/lib/widget/widget_make_global_local.c     w0 = g_new0 (Widget, 1);
w0                 54 tests/lib/widget/widget_make_global_local.c     widget_init (w0, &r, widget_default_callback, NULL);
w0                 55 tests/lib/widget/widget_make_global_local.c     group_add_widget (g0, w0);
w0                 85 tests/lib/widget/widget_make_global_local.c     ck_assert_int_eq (w0->rect.y, 21);
w0                 86 tests/lib/widget/widget_make_global_local.c     ck_assert_int_eq (w0->rect.x, 21);
w0                100 tests/lib/widget/widget_make_global_local.c     group_remove_widget (w0);
w0                105 tests/lib/widget/widget_make_global_local.c     ck_assert_int_eq (w0->rect.y, 1);
w0                106 tests/lib/widget/widget_make_global_local.c     ck_assert_int_eq (w0->rect.x, 1);
w0                121 tests/lib/widget/widget_make_global_local.c     widget_destroy (w0);