• Home
  • Raw
  • Download

Lines Matching refs:cur

90         CRSelector *cur = NULL;  in cr_selector_append()  local
97 for (cur = a_this; cur && cur->next; cur = cur->next) ; in cr_selector_append()
99 cur->next = a_new; in cr_selector_append()
100 a_new->prev = cur; in cr_selector_append()
118 CRSelector *cur = NULL; in cr_selector_prepend() local
123 for (cur = a_new; cur && cur->prev; cur = cur->prev) ; in cr_selector_prepend()
125 return cur; in cr_selector_prepend()
160 CRSelector const *cur = NULL; in cr_selector_to_string() local
162 for (cur = a_this; cur; cur = cur->next) { in cr_selector_to_string()
163 if (cur->simple_sel) { in cr_selector_to_string()
167 (cur->simple_sel); in cr_selector_to_string()
170 if (cur->prev) in cr_selector_to_string()
271 CRSelector *cur = NULL; in cr_selector_destroy() local
279 for (cur = a_this; cur && cur->next; cur = cur->next) { in cr_selector_destroy()
280 if (cur->simple_sel) { in cr_selector_destroy()
281 cr_simple_sel_destroy (cur->simple_sel); in cr_selector_destroy()
282 cur->simple_sel = NULL; in cr_selector_destroy()
286 if (cur) { in cr_selector_destroy()
287 if (cur->simple_sel) { in cr_selector_destroy()
288 cr_simple_sel_destroy (cur->simple_sel); in cr_selector_destroy()
289 cur->simple_sel = NULL; in cr_selector_destroy()
294 if (cur && !cur->prev) { in cr_selector_destroy()
295 g_free (cur); in cr_selector_destroy()
300 for (cur = cur->prev; cur && cur->prev; cur = cur->prev) { in cr_selector_destroy()
301 if (cur->next) { in cr_selector_destroy()
302 g_free (cur->next); in cr_selector_destroy()
303 cur->next = NULL; in cr_selector_destroy()
307 if (!cur) in cr_selector_destroy()
310 if (cur->next) { in cr_selector_destroy()
311 g_free (cur->next); in cr_selector_destroy()
312 cur->next = NULL; in cr_selector_destroy()
315 g_free (cur); in cr_selector_destroy()