Home | History | Annotate | Download | only in tinyxml

Lines Matching refs:dval

720 int TiXmlElement::QueryDoubleAttribute( const char* name, double* dval ) const
725 return attrib->QueryDoubleValue( dval );
730 int TiXmlElement::QueryDoubleAttribute( const std::string& name, double* dval ) const
735 return attrib->QueryDoubleValue( dval );
1243 int TiXmlAttribute::QueryDoubleValue( double* dval ) const
1245 if ( TIXML_SSCANF( value.c_str(), "%lf", dval ) == 1 )