HomeSort by relevance Sort by last modified time
    Searched refs:LastChild (Results 1 - 8 of 8) sorted by null

  /external/sfntly/cpp/src/test/tinyxml/
tinyxml.h 531 const TiXmlNode* LastChild() const { return lastChild; } /// The last child of this node. Will be null if there are no children.
532 TiXmlNode* LastChild() { return lastChild; }
534 const TiXmlNode* LastChild( const char * value ) const; /// The last child of this node matching 'value'. Will be null if there are no children.
535 TiXmlNode* LastChild( const char * _value ) {
536 return const_cast< TiXmlNode* > ((const_cast< const TiXmlNode* >(this))->LastChild( _value ));
542 const TiXmlNode* LastChild( const std::string& _value ) const { return LastChild (_value.c_str ()); } ///< STL std::string form.
543 TiXmlNode* LastChild( const std::string& _value ) { return LastChild (_value.c_str ()); } ///< STL std::string form
    [all...]
tinyxml.cpp 141 lastChild = 0;
182 lastChild = 0;
201 node->prev = lastChild;
204 if ( lastChild )
205 lastChild->next = node;
209 lastChild = node;
288 assert( lastChild == afterThis );
289 lastChild = node;
322 lastChild = node;
350 lastChild = removeThis->prev
    [all...]
  /external/tinyxml/
tinyxml.h 491 const TiXmlNode* LastChild() const { return lastChild; } /// The last child of this node. Will be null if there are no children.
492 TiXmlNode* LastChild() { return lastChild; }
493 const TiXmlNode* LastChild( const char * value ) const; /// The last child of this node matching 'value'. Will be null if there are no children.
494 TiXmlNode* LastChild( const char * value );
499 const TiXmlNode* LastChild( const std::string& _value ) const { return LastChild (_value.c_str ()); } ///< STL std::string form.
500 TiXmlNode* LastChild( const std::string& _value ) { return LastChild (_value.c_str ()); } ///< STL std::string form
    [all...]
xmltest.cpp 285 for( node = doc.LastChild();
326 for( node = todoElement->LastChild( "Item" );
753 XmlTest( "Test InsertAfterChild on empty node. ", ( childNode1 == parent.LastChild() ), true );
  /external/tinyxml2/
tinyxml2.h 490 const XMLNode* LastChild() const { return lastChild; }
491 XMLNode* LastChild() { return const_cast<XMLNode*>(const_cast<const XMLNode*>(this)->LastChild() ); }
597 XMLNode* lastChild;
    [all...]
  /external/pdfium/xfa/src/fdp/include/
fde_xml.h 73 LastChild
  /external/pdfium/xfa/src/fgas/include/
fx_utl.h 509 LastChild
601 case LastChild: {
714 CPLTreeNode* pLast = pParent->GetNode(CPLTreeNode::LastChild);
  /external/pdfium/xfa/src/fdp/src/xml/
fde_xml.cpp 303 case IFDE_XMLNode::LastChild: {
    [all...]

Completed in 129 milliseconds