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

/freebsd-13-stable/contrib/elftoolchain/libdwarf/
H A Dlibdwarf_die.c171 Dwarf_P_Die last_child; local
187 last_child = parent->die_child;
188 if (last_child) {
189 while (last_child->die_right != NULL)
190 last_child = last_child->die_right;
201 if (last_child) {
202 assert(last_child->die_right == NULL);
203 last_child->die_right = die;
204 die->die_left = last_child;
[all...]
/freebsd-13-stable/contrib/apr-util/include/
H A Dapr_xml.h186 struct apr_xml_elem *last_child; member in struct:apr_xml_elem
/freebsd-13-stable/contrib/apr-util/xml/
H A Dapr_xml.c181 if (elem->parent->last_child == NULL) {
183 elem->parent->first_child = elem->parent->last_child = elem;
187 elem->parent->last_child->next = elem;
188 elem->parent->last_child = elem;
348 if (elem->last_child == NULL) {
354 hdr = &elem->last_child->following_cdata;
/freebsd-13-stable/contrib/llvm-project/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp2284 bool highlight, bool last_child) {
2344 const bool last_child = row.parent && &rows[rows.size() - 1] == &row; local
2355 last_child)) {
2283 DisplayRowObject(Window &window, Row &row, DisplayOptions &options, bool highlight, bool last_child) argument

Completed in 141 milliseconds