Lines Matching defs:Text
144 Text (leaf)
265 /* Reads text. Returns a pointer past the given end tag.
269 TIXML_STRING* text, // the string read
271 const char* endTag, // what ends this text
311 // Not valid text.
405 the text needs to define an element or junk will result. This is
430 TEXT,
442 Comment: the comment text
444 Text: the text string
463 Comment: the comment text
465 Text: the text string
623 UNKNOWN, TEXT, and DECLARATION.
640 const TiXmlText* ToText() const { return ( this && type == TEXT ) ? (const TiXmlText*) this : 0; } ///< Cast to a more defined type. Will return null not of the requested type.
647 TiXmlText* ToText() { return ( this && type == TEXT ) ? (TiXmlText*) this : 0; } ///< Cast to a more defined type. Will return null not of the requested type.
841 and can contain other elements, text, comments, and unknowns.
953 /** Convenience function for easy access to the text inside an element. Although easy
958 returs the character string of the Text node, else null is returned.
960 This is a convenient method for getting the text of simple contained text:
962 <foo>This is text</foo>
966 'str' will be a pointer to "This is text".
971 <foo><b>This is text</b></foo>
974 then the value of str would be null. The first child node isn't a text node, it is
977 <foo>This is <b>text</b></foo>
982 similarly named TiXmlHandle::Text() and TiXmlNode::ToText() which are
1009 Reads the "value" of the element -- another element, or text.
1056 /** XML text. A text node can have 2 ways to output the next. "normal" output
1065 /** Constructor for text element. By default, it is treated as
1066 normal, encoded text. If you want it be output as a CDATA text
1069 TiXmlText (const char * initValue ) : TiXmlNode (TiXmlNode::TEXT)
1078 TiXmlText( const std::string& initValue ) : TiXmlNode (TiXmlNode::TEXT)
1085 TiXmlText( const TiXmlText& copy ) : TiXmlNode( TiXmlNode::TEXT ) { copy.CopyTo( this ); }
1088 /// Write this text object to a FILE stream.
1091 /// Queries whether this represents text using a CDATA section.
1093 /// Turns on or off a CDATA representation of text.
1111 bool cdata; // true if this should be input and output as a CDATA style text element
1182 unknown. It is a tag of text, but should not be modified.
1498 TiXmlText* Text() const { return ( ( node && node->ToText() ) ? node->ToText() : 0 ); }