Home | History | Annotate | Download | only in tinyxml

Lines Matching refs:sentinel

1172 	// We are using knowledge of the sentinel. The sentinel
1182 // We are using knowledge of the sentinel. The sentinel
1192 // We are using knowledge of the sentinel. The sentinel
1202 // We are using knowledge of the sentinel. The sentinel
1502 sentinel.next = &sentinel;
1503 sentinel.prev = &sentinel;
1509 assert( sentinel.next == &sentinel );
1510 assert( sentinel.prev == &sentinel );
1522 addMe->next = &sentinel;
1523 addMe->prev = sentinel.prev;
1525 sentinel.prev->next = addMe;
1526 sentinel.prev = addMe;
1533 for( node = sentinel.next; node != &sentinel; node = node->next )
1551 for( TiXmlAttribute* node = sentinel.next; node != &sentinel; node = node->next )
1574 for( TiXmlAttribute* node = sentinel.next; node != &sentinel; node = node->next )