• Home
  • Raw
  • Download

Lines Matching refs:_value

327 …inline static const char* GetChar( const char* p, char* _value, int* length, TiXmlEncoding encodin…  in GetChar()  argument
343 return GetEntity( p, _value, length, encoding ); in GetChar()
344 *_value = *p; in GetChar()
352 _value[i] = p[i]; in GetChar()
508 void SetValue(const char * _value) { value = _value;} in SetValue() argument
512 void SetValue( const std::string& _value ) { value = _value; } in SetValue() argument
526 TiXmlNode* FirstChild( const char * _value ) { in FirstChild() argument
529 return const_cast< TiXmlNode* > ((const_cast< const TiXmlNode* >(this))->FirstChild( _value )); in FirstChild()
535 TiXmlNode* LastChild( const char * _value ) { in LastChild() argument
536 return const_cast< TiXmlNode* > ((const_cast< const TiXmlNode* >(this))->LastChild( _value )); in LastChild()
540 …const TiXmlNode* FirstChild( const std::string& _value ) const { return FirstChild (_value.c_str (… in FirstChild() argument
541 …TiXmlNode* FirstChild( const std::string& _value ) { return FirstChild (_value.c_str ()); } ///… in FirstChild() argument
542 …const TiXmlNode* LastChild( const std::string& _value ) const { return LastChild (_value.c_str ())… in LastChild() argument
543 …TiXmlNode* LastChild( const std::string& _value ) { return LastChild (_value.c_str ()); } ///< … in LastChild() argument
569 TiXmlNode* IterateChildren( const char * _value, const TiXmlNode* previous ) { in IterateChildren() argument
570 …return const_cast< TiXmlNode* >( (const_cast< const TiXmlNode* >(this))->IterateChildren( _value, … in IterateChildren()
574 …e* IterateChildren( const std::string& _value, const TiXmlNode* previous ) const { return IterateC… in IterateChildren() argument
575 …Node* IterateChildren( const std::string& _value, const TiXmlNode* previous ) { return IterateChil… in IterateChildren() argument
624 …const TiXmlNode* PreviousSibling( const std::string& _value ) const { return PreviousSibling (_val… in PreviousSibling() argument
625 …TiXmlNode* PreviousSibling( const std::string& _value ) { return PreviousSibling (_value.c_str … in PreviousSibling() argument
626 …const TiXmlNode* NextSibling( const std::string& _value) const { return NextSibling (_value.c_str… in NextSibling() argument
627 …TiXmlNode* NextSibling( const std::string& _value) { return NextSibling (_value.c_str ()); } … in NextSibling() argument
659 …iXmlElement* NextSiblingElement( const std::string& _value) const { return NextSiblingElement (_va… in NextSiblingElement() argument
660 …TiXmlElement* NextSiblingElement( const std::string& _value) { return NextSiblingElement (_valu… in NextSiblingElement() argument
670 const TiXmlElement* FirstChildElement( const char * _value ) const;
671 TiXmlElement* FirstChildElement( const char * _value ) { in FirstChildElement() argument
672 …const_cast< TiXmlElement* >( (const_cast< const TiXmlNode* >(this))->FirstChildElement( _value ) ); in FirstChildElement()
676 …TiXmlElement* FirstChildElement( const std::string& _value ) const { return FirstChildElement (_va… in FirstChildElement() argument
677 …TiXmlElement* FirstChildElement( const std::string& _value ) { return FirstChildElement (_value in FirstChildElement() argument
793 TiXmlAttribute( const std::string& _name, const std::string& _value ) in TiXmlAttribute() argument
796 value = _value; in TiXmlAttribute()
803 TiXmlAttribute( const char * _name, const char * _value ) in TiXmlAttribute() argument
806 value = _value; in TiXmlAttribute()
831 int QueryIntValue( int* _value ) const;
833 int QueryDoubleValue( double* _value ) const;
836 void SetValue( const char* _value ) { value = _value; } ///< Set the value. in SetValue() argument
838 void SetIntValue( int _value ); ///< Set the value from an integer.
839 void SetDoubleValue( double _value ); ///< Set the value from a double.
845 void SetValue( const std::string& _value ) { value = _value; } in SetValue() argument
948 TiXmlElement( const std::string& _value );
985 int QueryIntAttribute( const char* name, int* _value ) const;
987 int QueryUnsignedAttribute( const char* name, unsigned* _value ) const;
992 int QueryBoolAttribute( const char* name, bool* _value ) const;
994 int QueryDoubleAttribute( const char* name, double* _value ) const;
996 int QueryFloatAttribute( const char* name, float* _value ) const { in QueryFloatAttribute() argument
1000 *_value = (float)d; in QueryFloatAttribute()
1007 int QueryStringAttribute( const char* name, std::string* _value ) const { in QueryStringAttribute() argument
1010 *_value = std::string( cstr ); in QueryStringAttribute()
1050 void SetAttribute( const char* name, const char * _value );
1056 int QueryIntAttribute( const std::string& name, int* _value ) const;
1057 int QueryDoubleAttribute( const std::string& name, double* _value ) const;
1060 void SetAttribute( const std::string& name, const std::string& _value );
1062 void SetAttribute( const std::string& name, int _value );
1168 TiXmlComment( const char* _value ) : TiXmlNode( TiXmlNode::TINYXML_COMMENT ) { in TiXmlComment() argument
1169 SetValue( _value ); in TiXmlComment()
1676 …TiXmlHandle FirstChild( const std::string& _value ) const { return FirstChild( _value.c_str() )… in FirstChild() argument
1677 …TiXmlHandle FirstChildElement( const std::string& _value ) const { return FirstChildElement( _val… in FirstChildElement() argument
1679 …TiXmlHandle Child( const std::string& _value, int index ) const { return Child( _value.c_str(), … in Child() argument
1680 …TiXmlHandle ChildElement( const std::string& _value, int index ) const { return ChildElement( _val… in ChildElement() argument