OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:TiXmlAttribute
(Results
1 - 2
of
2
) sorted by null
/external/sfntly/cpp/src/test/tinyxml/
tinyxml.h
87
class
TiXmlAttribute
;
139
virtual bool VisitEnter( const TiXmlElement& /*element*/, const
TiXmlAttribute
* /*firstAttribute*/ ) { return true; }
779
class
TiXmlAttribute
: public TiXmlBase
785
TiXmlAttribute
() : TiXmlBase()
793
TiXmlAttribute
( const std::string& _name, const std::string& _value )
803
TiXmlAttribute
( const char * _name, const char * _value )
849
const
TiXmlAttribute
* Next() const;
850
TiXmlAttribute
* Next() {
851
return const_cast<
TiXmlAttribute
* >( (const_cast< const
TiXmlAttribute
* >(this))->Next() );
[
all
...]
/external/tinyxml/
tinyxml.h
89
class
TiXmlAttribute
;
694
class
TiXmlAttribute
: public TiXmlBase
700
TiXmlAttribute
() : TiXmlBase()
708
TiXmlAttribute
( const std::string& _name, const std::string& _value )
718
TiXmlAttribute
( const char * _name, const char * _value )
766
const
TiXmlAttribute
* Next() const;
767
TiXmlAttribute
* Next();
769
const
TiXmlAttribute
* Previous() const;
770
TiXmlAttribute
* Previous();
772
bool operator==( const
TiXmlAttribute
& rhs ) const { return rhs.name == name;
[
all
...]
Completed in 217 milliseconds