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

/external/sfntly/cpp/src/test/tinyxml/
H A Dtinyxml.cpp661 int TiXmlElement::QueryIntAttribute( const char* name, int* ival ) const function in class:TiXmlElement
710 int TiXmlElement::QueryIntAttribute( const std::string& name, int* ival ) const function in class:TiXmlElement
/external/tinyxml/
H A Dtinyxml.cpp701 int TiXmlElement::QueryIntAttribute( const char* name, int* ival ) const function in class:TiXmlElement
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
/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 5556 milliseconds