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.cpp654 XMLNode* XMLNode::InsertAfterChild( XMLNode* afterThis, XMLNode* addThis ) in InsertAfterChild() argument
656 TIXMLASSERT( afterThis->parent == this ); in InsertAfterChild()
657 if ( afterThis->parent != this ) in InsertAfterChild()
660 if ( afterThis->next == 0 ) { in InsertAfterChild()
664 addThis->prev = afterThis; in InsertAfterChild()
665 addThis->next = afterThis->next; in InsertAfterChild()
666 afterThis->next->prev = addThis; in InsertAfterChild()
667 afterThis->next = addThis; in InsertAfterChild()
Dtinyxml2.h528 XMLNode* InsertAfterChild( XMLNode* afterThis, XMLNode* addThis );