Lines Matching defs:child
215 for (current_child = object->child; current_child != NULL; (void)(current_child = current_child->next), child_index++)
264 cJSON *child = array ? array->child : NULL;
265 while ((child != NULL) && (item > 0))
268 child = child->next;
271 return child;
326 current_element = current_element->child;
395 cJSON *c = array->child;
406 if (c != array->child)
415 if (c == array->child)
417 array->child = c->next;
421 array->child->prev = c->prev;
437 /* copy path and split it in parent and child */
470 /* Couldn't find object to remove child from. */
601 object->child = sort_list(object->child, case_sensitive);
653 for ((void)(a = a->child), b = b->child; (a != NULL) && (b != NULL); (void)(a = a->next), b = b->next)
675 for ((void)(a = a->child), b = b->child; (a != NULL) && (b != NULL); (void)(a = a->next), b = b->next)
712 cJSON *child = array->child;
713 while (child && (which > 0))
715 child = child->next;
723 if (child == NULL)
730 newitem->next = child;
731 newitem->prev = child->prev;
732 child->prev = newitem;
735 if (child == array->child)
737 array->child = newitem;
816 if (root->child != NULL)
818 cJSON_Delete(root->child);
978 /* split pointer in parent and child */
1068 current_patch = patches->child;
1097 current_patch = patches->child;
1190 cJSON *from_child = from->child;
1191 cJSON *to_child = to->child;
1239 from_child = from->child;
1240 to_child = to->child;
1355 patch_child = patch->child;
1426 from_child = from->child;
1427 to_child = to->child;
1480 if (patch->child == NULL)