Home
last modified time | relevance | path

Searched refs:afterThis (Results 1 – 2 of 2) sorted by relevance

/AliOS-Things-master/components/oss/src/external/tinyxml2/
A Dtinyxml2.cpp906 XMLNode* XMLNode::InsertAfterChild( XMLNode* afterThis, XMLNode* addThis ) in InsertAfterChild() argument
914 TIXMLASSERT( afterThis ); in InsertAfterChild()
916 if ( afterThis->_parent != this ) { in InsertAfterChild()
920 if ( afterThis == addThis ) { in InsertAfterChild()
928 if ( afterThis->_next == 0 ) { in InsertAfterChild()
933 addThis->_prev = afterThis; in InsertAfterChild()
934 addThis->_next = afterThis->_next; in InsertAfterChild()
935 afterThis->_next->_prev = addThis; in InsertAfterChild()
936 afterThis->_next = addThis; in InsertAfterChild()
A Dtinyxml2.h861 XMLNode* InsertAfterChild( XMLNode* afterThis, XMLNode* addThis );

Completed in 13 milliseconds