Lines Matching refs:_value
280 …inline static const char* GetChar( const char* p, char* _value, int* length, TiXmlEncoding encodin… in GetChar() argument
296 return GetEntity( p, _value, length, encoding ); in GetChar()
297 *_value = *p; in GetChar()
305 _value[i] = p[i]; in GetChar()
468 void SetValue(const char * _value) { value = _value;} in SetValue() argument
472 void SetValue( const std::string& _value ) in SetValue() argument
474 StringToBuffer buf( _value ); in SetValue()
497 …const TiXmlNode* FirstChild( const std::string& _value ) const { return FirstChild (_value.c_str (… in FirstChild() argument
498 …TiXmlNode* FirstChild( const std::string& _value ) { return FirstChild (_value.c_str ()); } ///… in FirstChild() argument
499 …const TiXmlNode* LastChild( const std::string& _value ) const { return LastChild (_value.c_str ())… in LastChild() argument
500 …TiXmlNode* LastChild( const std::string& _value ) { return LastChild (_value.c_str ()); } ///< … in LastChild() argument
527 …e* IterateChildren( const std::string& _value, const TiXmlNode* previous ) const { return IterateC… in IterateChildren() argument
528 …XmlNode* IterateChildren( const std::string& _value, TiXmlNode* previous ) { return IterateChildre… in IterateChildren() argument
575 …const TiXmlNode* PreviousSibling( const std::string& _value ) const { return PreviousSibling (_val… in PreviousSibling() argument
576 …TiXmlNode* PreviousSibling( const std::string& _value ) { return PreviousSibling (_value.c_str … in PreviousSibling() argument
577 …const TiXmlNode* NextSibling( const std::string& _value) const { return NextSibling (_value.c_str… in NextSibling() argument
578 …TiXmlNode* NextSibling( const std::string& _value) { return NextSibling (_value.c_str ()); } … in NextSibling() argument
604 …iXmlElement* NextSiblingElement( const std::string& _value) const { return NextSiblingElement (_va… in NextSiblingElement() argument
605 …TiXmlElement* NextSiblingElement( const std::string& _value) { return NextSiblingElement (_valu… in NextSiblingElement() argument
617 …TiXmlElement* FirstChildElement( const std::string& _value ) const { return FirstChildElement (_va… in FirstChildElement() argument
618 …TiXmlElement* FirstChildElement( const std::string& _value ) { return FirstChildElement (_value… in FirstChildElement() argument
708 TiXmlAttribute( const std::string& _name, const std::string& _value ) in TiXmlAttribute() argument
711 value = _value; in TiXmlAttribute()
718 TiXmlAttribute( const char * _name, const char * _value ) in TiXmlAttribute() argument
721 value = _value; in TiXmlAttribute()
740 int QueryIntValue( int* _value ) const;
742 int QueryDoubleValue( double* _value ) const;
745 void SetValue( const char* _value ) { value = _value; } ///< Set the value. in SetValue() argument
747 void SetIntValue( int _value ); ///< Set the value from an integer.
748 void SetDoubleValue( double _value ); ///< Set the value from a double.
758 void SetValue( const std::string& _value ) in SetValue() argument
760 StringToBuffer buf( _value ); in SetValue()
852 TiXmlElement( const std::string& _value );
889 int QueryIntAttribute( const char* name, int* _value ) const;
891 int QueryDoubleAttribute( const char* name, double* _value ) const;
893 int QueryFloatAttribute( const char* name, float* _value ) const { in QueryFloatAttribute() argument
897 *_value = (float)d; in QueryFloatAttribute()
905 void SetAttribute( const char* name, const char * _value );
911 …yIntAttribute( const std::string& name, int* _value ) const { return QueryIntAttribute( name.c_str… in QueryIntAttribute() argument
912 …ttribute( const std::string& name, double* _value ) const { return QueryDoubleAttribute( name.c_st… in QueryDoubleAttribute() argument
915 void SetAttribute( const std::string& name, const std::string& _value ) in SetAttribute() argument
918 StringToBuffer v( _value ); in SetAttribute()
923 void SetAttribute( const std::string& name, int _value ) in SetAttribute() argument
927 SetAttribute (n.buffer, _value); in SetAttribute()
1486 …TiXmlHandle FirstChild( const std::string& _value ) const { return FirstChild( _value.c_str() )… in FirstChild() argument
1487 …TiXmlHandle FirstChildElement( const std::string& _value ) const { return FirstChildElement( _val… in FirstChildElement() argument
1489 …TiXmlHandle Child( const std::string& _value, int index ) const { return Child( _value.c_str(), … in Child() argument
1490 …TiXmlHandle ChildElement( const std::string& _value, int index ) const { return ChildElement( _val… in ChildElement() argument