Lines Matching defs:_value

280 	inline static const char* GetChar( const char* p, char* _value, int* length, TiXmlEncoding encoding )
296 return GetEntity( p, _value, length, encoding );
297 *_value = *p;
302 //strncpy( _value, p, *length ); // lots of compilers don't like this function (unsafe),
305 _value[i] = p[i];
468 void SetValue(const char * _value) { value = _value;}
472 void SetValue( const std::string& _value )
474 StringToBuffer buf( _value );
497 const TiXmlNode* FirstChild( const std::string& _value ) const { return FirstChild (_value.c_str ()); } ///< STL std::string form.
498 TiXmlNode* FirstChild( const std::string& _value ) { return FirstChild (_value.c_str ()); } ///< STL std::string form.
499 const TiXmlNode* LastChild( const std::string& _value ) const { return LastChild (_value.c_str ()); } ///< STL std::string form.
500 TiXmlNode* LastChild( const std::string& _value ) { return LastChild (_value.c_str ()); } ///< STL std::string form.
527 const TiXmlNode* IterateChildren( const std::string& _value, const TiXmlNode* previous ) const { return IterateChildren (_value.c_str (), previous); } ///< STL std::string form.
528 TiXmlNode* IterateChildren( const std::string& _value, TiXmlNode* previous ) { return IterateChildren (_value.c_str (), previous); } ///< STL std::string form.
575 const TiXmlNode* PreviousSibling( const std::string& _value ) const { return PreviousSibling (_value.c_str ()); } ///< STL std::string form.
576 TiXmlNode* PreviousSibling( const std::string& _value ) { return PreviousSibling (_value.c_str ()); } ///< STL std::string form.
577 const TiXmlNode* NextSibling( const std::string& _value) const { return NextSibling (_value.c_str ()); } ///< STL std::string form.
578 TiXmlNode* NextSibling( const std::string& _value) { return NextSibling (_value.c_str ()); } ///< STL std::string form.
604 const TiXmlElement* NextSiblingElement( const std::string& _value) const { return NextSiblingElement (_value.c_str ()); } ///< STL std::string form.
605 TiXmlElement* NextSiblingElement( const std::string& _value) { return NextSiblingElement (_value.c_str ()); } ///< STL std::string form.
617 const TiXmlElement* FirstChildElement( const std::string& _value ) const { return FirstChildElement (_value.c_str ()); } ///< STL std::string form.
618 TiXmlElement* FirstChildElement( const std::string& _value ) { return FirstChildElement (_value.c_str ()); } ///< STL std::string form.
708 TiXmlAttribute( const std::string& _name, const std::string& _value )
711 value = _value;
718 TiXmlAttribute( const char * _name, const char * _value )
721 value = _value;
740 int QueryIntValue( int* _value ) const;
742 int QueryDoubleValue( double* _value ) const;
745 void SetValue( const char* _value ) { value = _value; } ///< Set the value.
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 )
760 StringToBuffer buf( _value );
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 {
897 *_value = (float)d;
905 void SetAttribute( const char* name, const char * _value );
911 int QueryIntAttribute( const std::string& name, int* _value ) const { return QueryIntAttribute( name.c_str(), _value ); }
912 int QueryDoubleAttribute( const std::string& name, double* _value ) const { return QueryDoubleAttribute( name.c_str(), _value ); }
915 void SetAttribute( const std::string& name, const std::string& _value )
918 StringToBuffer v( _value );
923 void SetAttribute( const std::string& name, int _value )
927 SetAttribute (n.buffer, _value);
1486 TiXmlHandle FirstChild( const std::string& _value ) const { return FirstChild( _value.c_str() ); }
1487 TiXmlHandle FirstChildElement( const std::string& _value ) const { return FirstChildElement( _value.c_str() ); }
1489 TiXmlHandle Child( const std::string& _value, int index ) const { return Child( _value.c_str(), index ); }
1490 TiXmlHandle ChildElement( const std::string& _value, int index ) const { return ChildElement( _value.c_str(), index ); }