Lines Matching refs:OUString

59         OUString type = OUString::createFromAscii("");  in saxify()
63 OUString prefix(reinterpret_cast<const sal_Char*>(pPrefix), in saxify()
66 OUString name = (prefix.equalsAscii("")) in saxify()
67 ? OUString::createFromAscii("xmlns") in saxify()
68 : OUString::createFromAscii("xmlns:") + prefix; in saxify()
70 OUString val(reinterpret_cast<const sal_Char*>(pHref), in saxify()
81 OUString prefix = pNode->getPrefix(); in saxify()
82 OUString name = (prefix.getLength() == 0) in saxify()
84 : prefix + OUString(static_cast<sal_Unicode>(':')) + pNode->getLocalName(); in saxify()
85 OUString val = pNode->getNodeValue(); in saxify()
88 OUString prefix = getPrefix(); in saxify()
89 OUString name = (prefix.getLength() == 0) in saxify()
91 : prefix + OUString(static_cast<sal_Unicode>(':')) + getLocalName(); in saxify()
149 const OUString aNamespace; in fastSaxify()
150 const OUString aElementName( (sal_Char*)xPrefix, in fastSaxify()
191 const OUString aNamespace; in fastSaxify()
192 const OUString aElementName( (sal_Char*)xPrefix, in fastSaxify()
233 OUString SAL_CALL CElement::getAttribute(OUString const& name) in getAttribute()
239 return ::rtl::OUString(); in getAttribute()
245 OUString const ret( (pValue) in getAttribute()
246 ? OUString(reinterpret_cast<sal_Char const*>(pValue.get()), in getAttribute()
249 : OUString() ); in getAttribute()
256 Reference< XAttr > SAL_CALL CElement::getAttributeNode(OUString const& name) in getAttributeNode()
282 const OUString& namespaceURI, const OUString& localName) in getAttributeNodeNS()
311 OUString SAL_CALL
313 OUString const& namespaceURI, OUString const& localName) in getAttributeNS()
319 return ::rtl::OUString(); in getAttributeNS()
330 return ::rtl::OUString(); in getAttributeNS()
332 OUString const ret(reinterpret_cast<sal_Char const*>(pValue.get()), in getAttributeNS()
344 CElement::getElementsByTagName(OUString const& rLocalName) in getElementsByTagName()
361 OUString const& rNamespaceURI, OUString const& rLocalName) in getElementsByTagNameNS()
374 OUString SAL_CALL CElement::getTagName() in getTagName()
380 return ::rtl::OUString(); in getTagName()
382 OUString const ret((sal_Char*)m_aNodePtr->name, in getTagName()
392 sal_Bool SAL_CALL CElement::hasAttribute(OUString const& name) in hasAttribute()
407 OUString const& namespaceURI, OUString const& localName) in hasAttributeNS()
422 void SAL_CALL CElement::removeAttribute(OUString const& name) in removeAttribute()
447 OUString const& namespaceURI, OUString const& localName) in removeAttributeNS()
581 OUString::createFromAscii("DOMAttrModified")), UNO_QUERY); in setAttributeNode_Impl_Lock()
582 event->initMutationEvent(OUString::createFromAscii("DOMAttrModified"), in setAttributeNode_Impl_Lock()
584 OUString(), xAttr->getValue(), xAttr->getName(), in setAttributeNode_Impl_Lock()
616 CElement::setAttribute(OUString const& name, OUString const& value) in setAttribute()
629 OUString oldValue; in setAttribute()
637 oldValue = OUString(reinterpret_cast<sal_Char const*>(pOld.get()), in setAttribute()
646 OUString::createFromAscii("DOMAttrModified")), UNO_QUERY); in setAttribute()
647 event->initMutationEvent(OUString::createFromAscii("DOMAttrModified"), in setAttribute()
661 CElement::setAttributeNS(OUString const& namespaceURI, in setAttributeNS()
662 OUString const& qualifiedName, OUString const& value) in setAttributeNS()
712 OUString oldValue; in setAttributeNS()
720 oldValue = OUString(reinterpret_cast<sal_Char const*>(pOld.get()), in setAttributeNS()
728 OUString::createFromAscii("DOMAttrModified")), UNO_QUERY); in setAttributeNS()
730 OUString::createFromAscii("DOMAttrModified"), in setAttributeNS()
732 …Reference< XNode >(getAttributeNodeNS(namespaceURI, OUString((char*)xLName, strlen((char*)xLName),… in setAttributeNS()
750 OUString SAL_CALL CElement::getNodeName()throw (RuntimeException) in getNodeName()
755 OUString SAL_CALL CElement::getLocalName()throw (RuntimeException) in getLocalName()
759 OUString aName; in getLocalName()
763 … aName = OUString((const sal_Char*)xName, strlen((const char*)xName), RTL_TEXTENCODING_UTF8); in getLocalName()
768 OUString SAL_CALL CElement::getNodeValue() throw (RuntimeException) in getNodeValue()
770 return OUString(); in getNodeValue()
773 void SAL_CALL CElement::setElementName(const OUString& aName) in setElementName()
777 (0 <= aName.indexOf(OUString::createFromAscii(":")))) in setElementName()