Home
last modified time | relevance | path

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

/external/tinyxml/
Dtinyxml.cpp246 TiXmlNode* TiXmlNode::InsertAfterChild( TiXmlNode* afterThis, const TiXmlNode& addThis ) in InsertAfterChild() argument
248 if ( !afterThis || afterThis->parent != this ) in InsertAfterChild()
256 node->prev = afterThis; in InsertAfterChild()
257 node->next = afterThis->next; in InsertAfterChild()
258 if ( afterThis->next ) in InsertAfterChild()
260 afterThis->next->prev = node; in InsertAfterChild()
264 assert( lastChild == afterThis ); in InsertAfterChild()
267 afterThis->next = node; in InsertAfterChild()
Dtinyxml.h556 TiXmlNode* InsertAfterChild( TiXmlNode* afterThis, const TiXmlNode& addThis );
/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.cpp902 XMLNode* XMLNode::InsertAfterChild( XMLNode* afterThis, XMLNode* addThis ) in InsertAfterChild() argument
910 TIXMLASSERT( afterThis ); in InsertAfterChild()
912 if ( afterThis->_parent != this ) { in InsertAfterChild()
916 if ( afterThis == addThis ) { in InsertAfterChild()
924 if ( afterThis->_next == 0 ) { in InsertAfterChild()
929 addThis->_prev = afterThis; in InsertAfterChild()
930 addThis->_next = afterThis->_next; in InsertAfterChild()
931 afterThis->_next->_prev = addThis; in InsertAfterChild()
932 afterThis->_next = addThis; in InsertAfterChild()
Dtinyxml2.h857 XMLNode* InsertAfterChild( XMLNode* afterThis, XMLNode* addThis );