• Home
  • Raw
  • Download

Lines Matching refs:_value

322 const TiXmlNode* TiXmlNode::FirstChild( const char * _value ) const  in FirstChild()
327 if ( strcmp( node->Value(), _value ) == 0 ) in FirstChild()
334 TiXmlNode* TiXmlNode::FirstChild( const char * _value ) in FirstChild() argument
339 if ( strcmp( node->Value(), _value ) == 0 ) in FirstChild()
346 const TiXmlNode* TiXmlNode::LastChild( const char * _value ) const in LastChild()
351 if ( strcmp( node->Value(), _value ) == 0 ) in LastChild()
357 TiXmlNode* TiXmlNode::LastChild( const char * _value ) in LastChild() argument
362 if ( strcmp( node->Value(), _value ) == 0 ) in LastChild()
420 const TiXmlNode* TiXmlNode::NextSibling( const char * _value ) const in NextSibling()
425 if ( strcmp( node->Value(), _value ) == 0 ) in NextSibling()
431 TiXmlNode* TiXmlNode::NextSibling( const char * _value ) in NextSibling() argument
436 if ( strcmp( node->Value(), _value ) == 0 ) in NextSibling()
442 const TiXmlNode* TiXmlNode::PreviousSibling( const char * _value ) const in PreviousSibling()
447 if ( strcmp( node->Value(), _value ) == 0 ) in PreviousSibling()
453 TiXmlNode* TiXmlNode::PreviousSibling( const char * _value ) in PreviousSibling() argument
458 if ( strcmp( node->Value(), _value ) == 0 ) in PreviousSibling()
502 const TiXmlElement* TiXmlNode::FirstChildElement( const char * _value ) const in FirstChildElement()
506 for ( node = FirstChild( _value ); in FirstChildElement()
508 node = node->NextSibling( _value ) ) in FirstChildElement()
516 TiXmlElement* TiXmlNode::FirstChildElement( const char * _value ) in FirstChildElement() argument
520 for ( node = FirstChild( _value ); in FirstChildElement()
522 node = node->NextSibling( _value ) ) in FirstChildElement()
558 const TiXmlElement* TiXmlNode::NextSiblingElement( const char * _value ) const in NextSiblingElement()
562 for ( node = NextSibling( _value ); in NextSiblingElement()
564 node = node->NextSibling( _value ) ) in NextSiblingElement()
572 TiXmlElement* TiXmlNode::NextSiblingElement( const char * _value ) in NextSiblingElement() argument
576 for ( node = NextSibling( _value ); in NextSiblingElement()
578 node = node->NextSibling( _value ) ) in NextSiblingElement()
611 TiXmlElement::TiXmlElement (const char * _value) in TiXmlElement() argument
615 value = _value; in TiXmlElement()
620 TiXmlElement::TiXmlElement( const std::string& _value ) in TiXmlElement() argument
624 value = _value; in TiXmlElement()
745 void TiXmlElement::SetAttribute( const char * name, const char * _value ) in SetAttribute() argument
750 node->SetValue( _value ); in SetAttribute()
754 TiXmlAttribute* attrib = new TiXmlAttribute( name, _value ); in SetAttribute()
1244 void TiXmlAttribute::SetIntValue( int _value ) in SetIntValue() argument
1248 TIXML_SNPRINTF(buf, sizeof(buf), "%d", _value); in SetIntValue()
1250 sprintf (buf, "%d", _value); in SetIntValue()
1255 void TiXmlAttribute::SetDoubleValue( double _value ) in SetDoubleValue() argument
1259 TIXML_SNPRINTF( buf, sizeof(buf), "%lf", _value); in SetDoubleValue()
1261 sprintf (buf, "%lf", _value); in SetDoubleValue()