Home
last modified time | relevance | path

Searched refs:XMLAttribute (Results 1 – 3 of 3) sorted by relevance

/external/tinyxml2/
Dtinyxml2.h120 class XMLAttribute; variable
495 … virtual bool VisitEnter( const XMLElement& /*element*/, const XMLAttribute* /*firstAttribute*/ ) { in VisitEnter() argument
1133 class TINYXML2_LIB XMLAttribute
1147 const XMLAttribute* Next() const { in Next()
1226 XMLAttribute() : _name(), _value(),_parseLineNum( 0 ), _next( 0 ), _memPool( 0 ) {} in XMLAttribute() function
1227 virtual ~XMLAttribute() {} in ~XMLAttribute()
1229 XMLAttribute( const XMLAttribute& ); // not supported
1230 void operator=( const XMLAttribute& ); // not supported
1238 XMLAttribute* _next;
1325 const XMLAttribute* a = FindAttribute( name ); in QueryIntAttribute()
[all …]
Dtinyxml2.cpp1346 const char* XMLAttribute::Name() const in Name()
1351 const char* XMLAttribute::Value() const in Value()
1356 char* XMLAttribute::ParseDeep( char* p, bool processEntities, int* curLineNumPtr ) in ParseDeep()
1384 void XMLAttribute::SetName( const char* n ) in SetName()
1390 XMLError XMLAttribute::QueryIntValue( int* value ) const in QueryIntValue()
1399 XMLError XMLAttribute::QueryUnsignedValue( unsigned int* value ) const in QueryUnsignedValue()
1408 XMLError XMLAttribute::QueryInt64Value(int64_t* value) const in QueryInt64Value()
1417 XMLError XMLAttribute::QueryBoolValue( bool* value ) const in QueryBoolValue()
1426 XMLError XMLAttribute::QueryFloatValue( float* value ) const in QueryFloatValue()
1435 XMLError XMLAttribute::QueryDoubleValue( double* value ) const in QueryDoubleValue()
[all …]
Dxmltest.cpp959 const XMLAttribute* attrib = cdoc.FirstChildElement("foo")->FindAttribute("attrib-text"); in main()
1419 const XMLAttribute* a = ele->FirstAttribute(); in main()
2184 bool VisitEnter(const XMLElement& element, const XMLAttribute* firstAttribute) in main()
2187 for (const XMLAttribute *attr = firstAttribute; attr != 0; attr = attr->Next()) in main()