Searched refs:QueryIntAttribute (Results 1 - 4 of 4) sorted by relevance

/external/tinyxml/
H A Dtinyxml.h882 /** QueryIntAttribute examines the attribute - it is an alternative to the
889 int QueryIntAttribute( const char* name, int* _value ) const;
890 /// QueryDoubleAttribute examines the attribute - see QueryIntAttribute().
892 /// QueryFloatAttribute examines the attribute - see QueryIntAttribute().
911 int QueryIntAttribute( const std::string& name, int* _value ) const { return QueryIntAttribute( name.c_str(), _value ); } function in class:TiXmlElement
H A Dxmltest.cpp453 result = ele->QueryIntAttribute( "attr1", &iVal );
456 result = ele->QueryIntAttribute( "attr2", &iVal );
458 result = ele->QueryIntAttribute( "bar", &iVal );
/external/sfntly/cpp/src/test/tinyxml/
H A Dtinyxml.h978 /** QueryIntAttribute examines the attribute - it is an alternative to the
985 int QueryIntAttribute( const char* name, int* _value ) const;
986 /// QueryUnsignedAttribute examines the attribute - see QueryIntAttribute().
988 /** QueryBoolAttribute examines the attribute - see QueryIntAttribute().
993 /// QueryDoubleAttribute examines the attribute - see QueryIntAttribute().
995 /// QueryFloatAttribute examines the attribute - see QueryIntAttribute().
1006 /// QueryStringAttribute examines the attribute - see QueryIntAttribute().
1056 int QueryIntAttribute( const std::string& name, int* _value ) const;
/external/tinyxml2/
H A Dtinyxml2.h779 use QueryIntAttribute() if you need error checking.
791 /** QueryIntAttribute interprets the attribute as an integer, and returns the value
796 /// See QueryIntAttribute
798 /// See QueryIntAttribute
800 /// See QueryIntAttribute
802 /// See QueryIntAttribute
882 checking, see QueryIntAttribute()
884 int IntAttribute( const char* name ) const { int i=0; QueryIntAttribute( name, &i ); return i; }
894 /** Given an attribute name, QueryIntAttribute() returns
904 QueryIntAttribute( "fo
907 int QueryIntAttribute( const char* name, int* _value ) const { const XMLAttribute* a = FindAttribute( name ); if ( !a ) return XML_NO_ATTRIBUTE; return a->QueryIntValue( _value ); } function in class:tinyxml2::XMLElement
[all...]

Completed in 299 milliseconds