Home | History | Annotate | Download | only in tinyxml

Lines Matching defs:Text

145 	/// Visit a text node
146 virtual bool Visit( const TiXmlText& /*text*/ ) { return true; }
186 Text (leaf)
312 /* Reads text. Returns a pointer past the given end tag.
316 TIXML_STRING* text, // the string read
318 const char* endTag, // what ends this text
358 // Not valid text.
446 the text needs to define an element or junk will result. This is
480 Comment: the comment text
482 Text: the text string
503 Comment: the comment text
505 Text: the text string
937 and can contain other elements, text, comments, and unknowns.
1089 /** Convenience function for easy access to the text inside an element. Although easy
1094 returns the character string of the Text node, else null is returned.
1096 This is a convenient method for getting the text of simple contained text:
1098 <foo>This is text</foo>
1102 'str' will be a pointer to "This is text".
1107 <foo><b>This is text</b></foo>
1110 then the value of str would be null. The first child node isn't a text node, it is
1113 <foo>This is <b>text</b></foo>
1118 similarly named TiXmlHandle::Text() and TiXmlNode::ToText() which are
1150 Reads the "value" of the element -- another element, or text.
1167 /// Construct a comment from text.
1207 /** XML text. A text node can have 2 ways to output the next. "normal" output
1216 /** Constructor for text element. By default, it is treated as
1217 normal, encoded text. If you want it be output as a CDATA text
1239 // Write this text object to a FILE stream.
1242 /// Queries whether this represents text using a CDATA section.
1244 /// Turns on or off a CDATA representation of text.
1268 bool cdata; // true if this should be input and output as a CDATA style text element
1348 unknown. It is a tag of text, but should not be modified.
1707 TiXmlText* Text() const { return ToText(); }
1750 virtual bool Visit( const TiXmlText& text );