Home
last modified time | relevance | path

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

/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/iq_parser/
H A Dtinyxml2.cpp678 XMLNode* XMLNode::InsertAfterChild( XMLNode* afterThis, XMLNode* addThis ) in InsertAfterChild() argument
680 TIXMLASSERT( afterThis->parent == this ); in InsertAfterChild()
681 if ( afterThis->parent != this ) in InsertAfterChild()
684 if ( afterThis->next == 0 ) { in InsertAfterChild()
688 addThis->prev = afterThis; in InsertAfterChild()
689 addThis->next = afterThis->next; in InsertAfterChild()
690 afterThis->next->prev = addThis; in InsertAfterChild()
691 afterThis->next = addThis; in InsertAfterChild()
H A Dtinyxml2.h651 XMLNode* InsertAfterChild( XMLNode* afterThis, XMLNode* addThis );