Lines Matching refs:name

120 	/*	Reads an XML name into the string provided. Returns
121 a pointer just past the last character of the name,
124 static const char* ReadName( const char*, std::string* name );
268 Element: name of the element
281 Element: name of the element
422 /** An attribute is a name-value pair. Elements have an arbitrary
423 number of attributes, each with a unique name.
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 ) {}
442 const std::string& Name() const { return name; } ///< Return the name of this attribute.
448 void SetName( const std::string& _name ) { name = _name; } ///< Set the name of this attribute.
458 bool operator==( const TiXmlAttribute& rhs ) const { return rhs.name == name; }
459 bool operator<( const TiXmlAttribute& rhs ) const { return name < rhs.name; }
460 bool operator>( const TiXmlAttribute& rhs ) const { return name > rhs.name; }
463 Attribtue parsing starts: first letter of the name
480 std::string name;
512 TiXmlAttribute* Find( const std::string& name ) const;
519 /** The element is a container class. It has a value, the element name,
531 /** Given an attribute name, attribute returns the value
532 for the attribute of that name, or null if none exists.
534 const std::string* Attribute( const std::string& name ) const;
536 /** Given an attribute name, attribute returns the value
537 for the attribute of that name, or null if none exists.
539 const std::string* Attribute( const std::string& name, int* i ) const;
541 /** Sets an attribute of name to a given value. The attribute
544 void SetAttribute( const std::string& name,
547 /** Sets an attribute of name to a given value. The attribute
550 void SetAttribute( const std::string& name,
553 /** Deletes an attribute with the given name.
555 void RemoveAttribute( const std::string& name );
729 The 'value' of a document node is the xml file name.
734 /// Create an empty document, that has no name.
736 /// Create a document with a name. The name of the document is also the filename of the xml.