Home
last modified time | relevance | path

Searched refs:XMLText (Results 1 – 5 of 5) sorted by relevance

/external/tinyxml2/
Dtinyxml2.h122 class XMLText; variable
508 virtual bool Visit( const XMLText& /*text*/ ) { in Visit() argument
690 virtual XMLText* ToText() { in ToText()
713 virtual const XMLText* ToText() const { in ToText()
985 class TINYXML2_LIB XMLText : public XMLNode
991 virtual XMLText* ToText() { in ToText()
994 virtual const XMLText* ToText() const { in ToText()
1011 explicit XMLText( XMLDocument* doc ) : XMLNode( doc ), _isCData( false ) {} in XMLText() function
1012 virtual ~XMLText() {} in ~XMLText()
1019 XMLText( const XMLText& ); // not supported
[all …]
Dtinyxml2.cpp718 XMLText* text = CreateUnlinkedNode<XMLText>( _textPool ); in Identify()
735 returnNode = CreateUnlinkedNode<XMLText>( _textPool ); in Identify()
1169 char* XMLText::ParseDeep( char* p, StrPair*, int* curLineNumPtr ) in ParseDeep()
1196 XMLNode* XMLText::ShallowClone( XMLDocument* doc ) const in ShallowClone()
1201 XMLText* text = doc->NewText( Value() ); // fixme: this will always allocate memory. Intern? in ShallowClone()
1207 bool XMLText::ShallowEqual( const XMLNode* compare ) const in ShallowEqual()
1210 const XMLText* text = compare->ToText(); in ShallowEqual()
1215 bool XMLText::Accept( XMLVisitor* visitor ) const in Accept()
1638 XMLText* theText = GetDocument()->NewText( inText ); in SetText()
1977 XMLText* XMLElement::InsertNewText(const char* text) in InsertNewText()
[all …]
Dreadme.md92 However, any sub-node of the Document, XMLElement, XMLText, etc, can only
174 will have the Value() of "Far & Away" when queried from the XMLText object,
249 // general way to get to the XMLText:
250XMLText* textNode = doc.FirstChildElement( "PLAY" )->FirstChildElement( "TITLE" )->FirstChild()->T…
Dxmltest.cpp168 XMLText* textNode = titleElement->FirstChild()->ToText(); in example_3()
682XMLText* text = doc.FirstChildElement( "document" )->FirstChildElement( (const char*) russianEleme… in main()
1237 XMLText* text = doc.FirstChildElement()->FirstChildElement()->FirstChild()->ToText(); in main()
2384 bool Visit(const XMLText& text) in main()
/external/gflags/src/
Dgflags_reporting.cc186 static string XMLText(const string& txt) { in XMLText() function
196 StringAppendF(r, "<%s>%s</%s>", tag, XMLText(txt).c_str(), tag); in AddXMLTag()
322 XMLText(Basename(prog_name)).c_str()); in ShowXMLOfFlags()
324 XMLText(ProgramUsage()).c_str()); in ShowXMLOfFlags()