OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:NextSibling
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
tinyxml.cpp
394
return previous->
NextSibling
();
408
return previous->
NextSibling
( val );
413
const TiXmlNode* TiXmlNode::
NextSibling
( const char * _value ) const
458
node = node->
NextSibling
() )
473
node = node->
NextSibling
( _value ) )
486
for ( node =
NextSibling
();
488
node = node->
NextSibling
() )
501
for ( node =
NextSibling
( _value );
503
node = node->
NextSibling
( _value ) )
836
for ( node = firstChild; node; node=node->
NextSibling
() )
[
all
...]
tinyxml.h
549
for( child = parent->FirstChild(); child; child = child->
NextSibling
() )
626
const TiXmlNode*
NextSibling
( const std::string& _value) const { return
NextSibling
(_value.c_str ()); } ///< STL std::string form.
627
TiXmlNode*
NextSibling
( const std::string& _value) { return
NextSibling
(_value.c_str ()); } ///< STL std::string form.
631
const TiXmlNode*
NextSibling
() const { return next; }
632
TiXmlNode*
NextSibling
() { return next; }
635
const TiXmlNode*
NextSibling
( const char * ) const;
636
TiXmlNode*
NextSibling
( const char* _next ) {
637
return const_cast< TiXmlNode* >( (const_cast< const TiXmlNode* >(this))->
NextSibling
( _next ) )
[
all
...]
Completed in 183 milliseconds