Searched refs:last_child (Results 1 - 4 of 4) sorted by relevance

/freebsd-11.0-release/contrib/elftoolchain/libdwarf/
H A Dlibdwarf_die.c172 Dwarf_P_Die last_child; local
188 last_child = parent->die_child;
189 if (last_child) {
190 while (last_child->die_right != NULL)
191 last_child = last_child->die_right;
202 if (last_child) {
203 assert(last_child->die_right == NULL);
204 last_child->die_right = die;
205 die->die_left = last_child;
[all...]
/freebsd-11.0-release/contrib/apr-util/include/
H A Dapr_xml.h186 struct apr_xml_elem *last_child; member in struct:apr_xml_elem
/freebsd-11.0-release/contrib/apr-util/xml/
H A Dapr_xml.c161 if (elem->parent->last_child == NULL) {
163 elem->parent->first_child = elem->parent->last_child = elem;
167 elem->parent->last_child->next = elem;
168 elem->parent->last_child = elem;
328 if (elem->last_child == NULL) {
334 hdr = &elem->last_child->following_cdata;
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Core/
H A DIOHandler.cpp3712 bool last_child)
3778 const bool last_child = row.parent && &rows[rows.size()-1] == &row; local
3790 last_child))
3708 DisplayRowObject(Window &window, Row &row, DisplayOptions &options, bool highlight, bool last_child) argument

Completed in 137 milliseconds