OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:IterateChildren
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
tinyxml.cpp
385
const TiXmlNode* TiXmlNode::
IterateChildren
( const TiXmlNode* previous ) const
399
const TiXmlNode* TiXmlNode::
IterateChildren
( const char * val, const TiXmlNode* previous ) const
[
all
...]
tinyxml.h
552
IterateChildren
does the same thing with the syntax:
555
while( child = parent->
IterateChildren
( child ) )
558
IterateChildren
takes the previous child as input and finds
560
first.
IterateChildren
will return null when done.
562
const TiXmlNode*
IterateChildren
( const TiXmlNode* previous ) const;
563
TiXmlNode*
IterateChildren
( const TiXmlNode* previous ) {
564
return const_cast< TiXmlNode* >( (const_cast< const TiXmlNode* >(this))->
IterateChildren
( previous ) );
567
/// This flavor of
IterateChildren
searches for children with a particular 'value'
568
const TiXmlNode*
IterateChildren
( const char * value, const TiXmlNode* previous ) const;
569
TiXmlNode*
IterateChildren
( const char * _value, const TiXmlNode* previous )
[
all
...]
Completed in 87 milliseconds