delta             189 lib/widget/group.c group_default_make_global (Widget * w, const WRect * delta)
delta             193 lib/widget/group.c     if (delta != NULL)
delta             196 lib/widget/group.c         widget_default_make_global (w, delta);
delta             199 lib/widget/group.c             WIDGET (iter->data)->make_global (WIDGET (iter->data), delta);
delta             225 lib/widget/group.c group_default_make_local (Widget * w, const WRect * delta)
delta             229 lib/widget/group.c     if (delta != NULL)
delta             232 lib/widget/group.c         widget_default_make_local (w, delta);
delta             235 lib/widget/group.c             WIDGET (iter->data)->make_local (WIDGET (iter->data), delta);
delta             690 lib/widget/widget-common.c widget_default_make_global (Widget * w, const WRect * delta)
delta             692 lib/widget/widget-common.c     if (delta != NULL)
delta             693 lib/widget/widget-common.c         rect_move (&w->rect, delta->y, delta->x);
delta             709 lib/widget/widget-common.c widget_default_make_local (Widget * w, const WRect * delta)
delta             711 lib/widget/widget-common.c     if (delta != NULL)
delta             712 lib/widget/widget-common.c         rect_move (&w->rect, -delta->y, -delta->x);
delta             162 lib/widget/widget-common.h     void (*make_global) (Widget * w, const WRect * delta);
delta             163 lib/widget/widget-common.h     void (*make_local) (Widget * w, const WRect * delta);
delta             228 lib/widget/widget-common.h void widget_default_make_global (Widget * w, const WRect * delta);
delta             229 lib/widget/widget-common.h void widget_default_make_local (Widget * w, const WRect * delta);
delta             250 src/filemanager/dir.c dir_list_grow (dir_list * list, int delta)
delta             258 src/filemanager/dir.c     if (delta == 0)
delta             261 src/filemanager/dir.c     size = list->size + delta;
delta              77 src/filemanager/dir.h gboolean dir_list_grow (dir_list * list, int delta);