OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LastChild
(Results
1 - 2
of
2
) sorted by null
/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 );
Completed in 73 milliseconds