Lines Matching refs:UXMLElement
53 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(UXMLElement) in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
162 UXMLElement *
327 UXMLElement *
333 UXMLElement *root = NULL; in parse()
379 UXMLElement *el = root; in parse()
391 UXMLElement *t = createElement(mXMLElemStart, status); in parse()
439 el = (UXMLElement *)fElementStack.pop(); in parse()
445 UXMLElement *t = createElement(mXMLElemEmpty, status); in parse()
486 UXMLElement *
489 UXMLElement *el = new UXMLElement(this, intern(mEl.group(1, status), status), status); in createElement()
679 UXMLElement::UXMLElement(const UXMLParser *parser, const UnicodeString *name, UErrorCode &errorCode… in UXMLElement() function in UXMLElement
689 UXMLElement::~UXMLElement() { in ~UXMLElement()
701 UXMLElement::getTagName() const { in getTagName()
706 UXMLElement::getText(UBool recurse) const { in getText()
713 UXMLElement::appendText(UnicodeString &text, UBool recurse) const { in appendText()
722 ((const UXMLElement *)node)->appendText(text, recurse); in appendText()
728 UXMLElement::countAttributes() const { in countAttributes()
733 UXMLElement::getAttribute(int32_t i, UnicodeString &name, UnicodeString &value) const { in getAttribute()
744 UXMLElement::getAttribute(const UnicodeString &name) const { in getAttribute()
762 UXMLElement::countChildren() const { in countChildren()
767 UXMLElement::getChild(int32_t i, UXMLNodeType &type) const { in getChild()
770 if(dynamic_cast<const UXMLElement *>(node)!=NULL) { in getChild()
781 const UXMLElement *
782 UXMLElement::nextChildElement(int32_t &i) const { in nextChildElement()
791 const UXMLElement *elem=dynamic_cast<const UXMLElement *>(node); in nextChildElement()
799 const UXMLElement *
800 UXMLElement::getChildElement(const UnicodeString &name) const { in getChildElement()
812 const UXMLElement *elem=dynamic_cast<const UXMLElement *>(node); in getChildElement()