Home
last modified time | relevance | path

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

/external/sfntly/cpp/src/test/tinyxml/
Dtinyxml.cpp263 TiXmlNode* TiXmlNode::InsertAfterChild( TiXmlNode* afterThis, const TiXmlNode& addThis ) in InsertAfterChild() argument
265 if ( !afterThis || afterThis->parent != this ) { in InsertAfterChild()
280 node->prev = afterThis; in InsertAfterChild()
281 node->next = afterThis->next; in InsertAfterChild()
282 if ( afterThis->next ) in InsertAfterChild()
284 afterThis->next->prev = node; in InsertAfterChild()
288 assert( lastChild == afterThis ); in InsertAfterChild()
291 afterThis->next = node; in InsertAfterChild()
Dtinyxml.h603 TiXmlNode* InsertAfterChild( TiXmlNode* afterThis, const TiXmlNode& addThis );
/external/tinyxml2/
Dtinyxml2.cpp924 XMLNode* XMLNode::InsertAfterChild( XMLNode* afterThis, XMLNode* addThis ) in InsertAfterChild() argument
932 TIXMLASSERT( afterThis ); in InsertAfterChild()
934 if ( afterThis->_parent != this ) { in InsertAfterChild()
938 if ( afterThis == addThis ) { in InsertAfterChild()
946 if ( afterThis->_next == 0 ) { in InsertAfterChild()
951 addThis->_prev = afterThis; in InsertAfterChild()
952 addThis->_next = afterThis->_next; in InsertAfterChild()
953 afterThis->_next->_prev = addThis; in InsertAfterChild()
954 afterThis->_next = addThis; in InsertAfterChild()
Dtinyxml2.h858 XMLNode* InsertAfterChild( XMLNode* afterThis, XMLNode* addThis );