Lines Matching defs:value

138 	static const char* GetEntity( const char* in, char* value );
141 inline static const char* GetChar( const char* p, char* value )
146 return GetEntity( p, value );
150 *value = *p;
264 /** The meaning of 'value' changes for the specific type of
276 const std::string& Value() const { return value; }
278 /** Changes the value of the node. Defined as:
287 void SetValue( const std::string& _value ) { value = _value; }
296 TiXmlNode* FirstChild( const std::string& value ) const; ///< The first child of this node with the matching 'value'. Will be null if none found.
299 TiXmlNode* LastChild( const std::string& value ) const; /// The last child of this node matching 'value'. Will be null if there are no children.
319 /// This flavor of IterateChildren searches for children with a particular 'value'
320 TiXmlNode* IterateChildren( const std::string& value, TiXmlNode* previous ) const;
354 /// Navigate to a sibling node with the given 'value'.
373 TiXmlElement* FirstChildElement( const std::string& value ) const;
375 /// Query the type (as an enumerated value, above) of this node.
407 void CopyToClone( TiXmlNode* target ) const { target->value = value; }
415 std::string value;
422 /** An attribute is a name-value pair. Elements have an arbitrary
439 /// Construct an attribute with a name and value.
440 TiXmlAttribute( const std::string& _name, const std::string& _value ) : name( _name ), value( _value ), prev( 0 ), next( 0 ) {}
444 const std::string& Value() const { return value; } ///< Return the value of this attribute.
445 const int IntValue() const; ///< Return the value of this attribute, converted to an integer.
446 const double DoubleValue() const; ///< Return the value of this attribute, converted to a double.
449 void SetValue( const std::string& _value ) { value = _value; } ///< Set the value.
450 void SetIntValue( int value ); ///< Set the value from an integer.
451 void SetDoubleValue( double value ); ///< Set the value from a double.
464 returns: the next char after the value end quote
481 std::string value;
519 /** The element is a container class. It has a value, the element name,
527 TiXmlElement( const std::string& value );
531 /** Given an attribute name, attribute returns the value
536 /** Given an attribute name, attribute returns the value
541 /** Sets an attribute of name to a given value. The attribute
545 const std::string& value );
547 /** Sets an attribute of name to a given value. The attribute
551 int value );
577 Reads the "value" of the element -- another element, or text.
729 The 'value' of a document node is the xml file name.
741 /** Load a file using the current document value.
746 /// Save a file using the current document value. Returns true if successful.