OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NextSiblingElement
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
tinyxml.h
644
const TiXmlElement*
NextSiblingElement
() const;
645
TiXmlElement*
NextSiblingElement
() {
646
return const_cast< TiXmlElement* >( (const_cast< const TiXmlNode* >(this))->
NextSiblingElement
() );
653
const TiXmlElement*
NextSiblingElement
( const char * ) const;
654
TiXmlElement*
NextSiblingElement
( const char *_next ) {
655
return const_cast< TiXmlElement* >( (const_cast< const TiXmlNode* >(this))->
NextSiblingElement
( _next ) );
659
const TiXmlElement*
NextSiblingElement
( const std::string& _value) const { return
NextSiblingElement
(_value.c_str ()); } ///< STL std::string form.
660
TiXmlElement*
NextSiblingElement
( const std::string& _value) { return
NextSiblingElement
(_value.c_str ()); } ///< STL std::string form
[
all
...]
tinyxml.cpp
482
const TiXmlElement* TiXmlNode::
NextSiblingElement
() const
497
const TiXmlElement* TiXmlNode::
NextSiblingElement
( const char * _value ) const
[
all
...]
/cts/suite/audio_quality/lib/src/task/
ModelBuilder.cpp
164
child = child->
NextSiblingElement
();
222
inc = inc->
NextSiblingElement
();
/external/bluetooth/bluedroid/btif/src/
btif_config_util.cpp
211
for(section = root->FirstChildElement(); section; section = section->
NextSiblingElement
())
230
for(key = section->FirstChildElement(); key; key = key->
NextSiblingElement
())
240
for(value = key->FirstChildElement(); value; value = value->
NextSiblingElement
())
[
all
...]
Completed in 8987 milliseconds