Lines Matching refs:XMLText
718 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()
1979 XMLText* node = _document->NewText(text); in InsertNewText()
2213 XMLText* XMLDocument::NewText( const char* str ) in NewText()
2215 XMLText* text = CreateUnlinkedNode<XMLText>( _textPool ); in NewText()
2930 bool XMLPrinter::Visit( const XMLText& text ) in Visit()