Home | History | Annotate | Download | only in tinyxml

Lines Matching defs:ival

661 int TiXmlElement::QueryIntAttribute( const char* name, int* ival ) const
666 return attrib->QueryIntValue( ival );
676 int ival = 0;
677 int result = node->QueryIntValue( &ival );
678 *value = (unsigned)ival;
710 int TiXmlElement::QueryIntAttribute( const std::string& name, int* ival ) const
715 return attrib->QueryIntValue( ival );
1236 int TiXmlAttribute::QueryIntValue( int* ival ) const
1238 if ( TIXML_SSCANF( value.c_str(), "%d", ival ) == 1 )