• Home
  • Raw
  • Download

Lines Matching refs:UXMLElement

55 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(UXMLElement)  in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
164 UXMLElement *
329 UXMLElement *
335 UXMLElement *root = NULL; in parse()
381 UXMLElement *el = root; in parse()
393 UXMLElement *t = createElement(mXMLElemStart, status); in parse()
441 el = (UXMLElement *)fElementStack.pop(); in parse()
447 UXMLElement *t = createElement(mXMLElemEmpty, status); in parse()
488 UXMLElement *
491 UXMLElement *el = new UXMLElement(this, intern(mEl.group(1, status), status), status); in createElement()
681 UXMLElement::UXMLElement(const UXMLParser *parser, const UnicodeString *name, UErrorCode &errorCode… in UXMLElement() function in UXMLElement
691 UXMLElement::~UXMLElement() { in ~UXMLElement()
703 UXMLElement::getTagName() const { in getTagName()
708 UXMLElement::getText(UBool recurse) const { in getText()
715 UXMLElement::appendText(UnicodeString &text, UBool recurse) const { in appendText()
724 ((const UXMLElement *)node)->appendText(text, recurse); in appendText()
730 UXMLElement::countAttributes() const { in countAttributes()
735 UXMLElement::getAttribute(int32_t i, UnicodeString &name, UnicodeString &value) const { in getAttribute()
746 UXMLElement::getAttribute(const UnicodeString &name) const { in getAttribute()
764 UXMLElement::countChildren() const { in countChildren()
769 UXMLElement::getChild(int32_t i, UXMLNodeType &type) const { in getChild()
772 if(dynamic_cast<const UXMLElement *>(node)!=NULL) { in getChild()
783 const UXMLElement *
784 UXMLElement::nextChildElement(int32_t &i) const { in nextChildElement()
793 const UXMLElement *elem=dynamic_cast<const UXMLElement *>(node); in nextChildElement()
801 const UXMLElement *
802 UXMLElement::getChildElement(const UnicodeString &name) const { in getChildElement()
814 const UXMLElement *elem=dynamic_cast<const UXMLElement *>(node); in getChildElement()