Searched refs:XMLText (Results 1 – 5 of 5) sorted by relevance
/external/tinyxml2/ |
D | tinyxml2.h | 122 class XMLText; variable 508 virtual bool Visit( const XMLText& /*text*/ ) { in Visit() argument 689 virtual XMLText* ToText() { in ToText() 712 virtual const XMLText* ToText() const { in ToText() 984 class TINYXML2_LIB XMLText : public XMLNode 990 virtual XMLText* ToText() { in ToText() 993 virtual const XMLText* ToText() const { in ToText() 1010 explicit XMLText( XMLDocument* doc ) : XMLNode( doc ), _isCData( false ) {} in XMLText() function 1011 virtual ~XMLText() {} in ~XMLText() 1018 XMLText( const XMLText& ); // not supported [all …]
|
D | tinyxml2.cpp | 696 XMLText* text = CreateUnlinkedNode<XMLText>( _textPool ); in Identify() 713 returnNode = CreateUnlinkedNode<XMLText>( _textPool ); in Identify() 1147 char* XMLText::ParseDeep( char* p, StrPair*, int* curLineNumPtr ) in ParseDeep() 1174 XMLNode* XMLText::ShallowClone( XMLDocument* doc ) const in ShallowClone() 1179 XMLText* text = doc->NewText( Value() ); // fixme: this will always allocate memory. Intern? in ShallowClone() 1185 bool XMLText::ShallowEqual( const XMLNode* compare ) const in ShallowEqual() 1188 const XMLText* text = compare->ToText(); in ShallowEqual() 1193 bool XMLText::Accept( XMLVisitor* visitor ) const in Accept() 1594 XMLText* theText = GetDocument()->NewText( inText ); in SetText() 2110 XMLText* XMLDocument::NewText( const char* str ) in NewText() [all …]
|
D | readme.md | 93 However, any sub-node of the Document, XMLElement, XMLText, etc, can only 175 will have the Value() of "Far & Away" when queried from the XMLText object, 250 // general way to get to the XMLText: 251 …XMLText* textNode = doc.FirstChildElement( "PLAY" )->FirstChildElement( "TITLE" )->FirstChild()->T…
|
D | xmltest.cpp | 168 XMLText* textNode = titleElement->FirstChild()->ToText(); in example_3() 682 …XMLText* text = doc.FirstChildElement( "document" )->FirstChildElement( (const char*) russianEleme… in main() 1113 XMLText* text = doc.FirstChildElement()->FirstChildElement()->FirstChild()->ToText(); in main() 2196 bool Visit(const XMLText& text) in main()
|
/external/gflags/src/ |
D | gflags_reporting.cc | 186 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()
|