Lines Matching refs:OUString

49 using ::rtl::OUString;
68 …virtual void SAL_CALL startElement(const OUString& aName, const Reference< XAttributeList > & xAtt…
69 virtual void SAL_CALL endElement(const OUString& aName) throw( SAXException, RuntimeException );
70 virtual void SAL_CALL characters(const OUString& aChars) throw( SAXException, RuntimeException );
71 …virtual void SAL_CALL ignorableWhitespace(const OUString& aWhitespaces) throw( SAXException, Runti…
72 …virtual void SAL_CALL processingInstruction(const OUString& aTarget, const OUString& aData) throw(…
76 void errorThrow( const OUString& rErrorMessage ) throw (SAXException );
77 ElementConfigType parseType( const OUString& rErrorMessage ) throw ( SAXException );
79OUString getAttribute( const Reference< XAttributeList > & xAttribs, const sal_Char* pName ) throw…
90 void ConfigHandler::errorThrow( const OUString& rErrorMessage ) throw (SAXException ) in errorThrow()
97 ElementConfigType ConfigHandler::parseType( const OUString& sType ) throw (SAXException ) in parseType()
120 OUString aMessage( RTL_CONSTASCII_USTRINGPARAM( "unknown type: " ) ); in parseType()
133 errorThrow( OUString( RTL_CONSTASCII_USTRINGPARAM( "illegal parent for element" ) ) ); in addElement()
139 OUString ConfigHandler::getAttribute( const Reference< XAttributeList > & xAttribs, const sal_Char*… in getAttribute()
141 OUString aName( OUString::createFromAscii( pName ) ); in getAttribute()
151 OUString aMessage( RTL_CONSTASCII_USTRINGPARAM( "missing required attribute: ") ); in getAttribute()
155 return OUString(); in getAttribute()
166 void SAL_CALL ConfigHandler::startElement(const OUString& aName, const Reference< XAttributeList > … in startElement()
202 OUString aMessage( OUString( RTL_CONSTASCII_USTRINGPARAM("unknown config element: ")) ); in startElement()
210 sal_Int32 toInt( const OUString& rText ) in toInt()
247 errorThrow( OUString( RTL_CONSTASCII_USTRINGPARAM("atom elements must be root" ) ) ); in importAtomConfig()
284 void SAL_CALL ConfigHandler::endElement(const OUString& aName) throw( SAXException, RuntimeExceptio… in endElement()
294 void SAL_CALL ConfigHandler::characters(const OUString& aChars) throw( SAXException, RuntimeExcepti… in characters()
298 void SAL_CALL ConfigHandler::ignorableWhitespace(const OUString& aWhitespaces) throw( SAXException,… in ignorableWhitespace()
302 void SAL_CALL ConfigHandler::processingInstruction(const OUString& aTarget, const OUString& aData) … in processingInstruction()
310 void load_config( const OUString& rPath ) in load_config()
326 OUString::createFromAscii("com.sun.star.xml.sax.Parser") ), in load_config()
354 rtl::OUString ElementConfig::format( SvStream& rStream, sal_Size& nLength ) const in format()
356 OUString aRet; in format()
360 aRet += OUString( RTL_CONSTASCII_USTRINGPARAM( " = " ) ); in format()
376 rtl::OUString ElementConfig::dump_hex( SvStream& rStream, sal_Size& nLength ) in dump_hex()
379 OUString aOut, aEmpty; in dump_hex()
380 OUString aHex, aAscii; in dump_hex()
391 aHex += OUString::createFromAscii( buffer ); in dump_hex()
396 aAscii += OUString( (sal_Unicode) c ); in dump_hex()
402 aHex += OUString( RTL_CONSTASCII_USTRINGPARAM(" ") ); in dump_hex()
405 aOut += OUString( RTL_CONSTASCII_USTRINGPARAM( "\n\r" ) ); in dump_hex()
418 rtl::OUString ElementConfig::dump_byte( SvStream& rStream, sal_Size& nLength ) in dump_byte()
420 OUString aRet; in dump_byte()
428 aRet += OUString::createFromAscii( buffer ); in dump_byte()
435 rtl::OUString ElementConfig::dump_uint( SvStream& rStream, sal_Size& nLength ) in dump_uint()
437 OUString aRet; in dump_uint()
445 aRet += OUString::createFromAscii( buffer ); in dump_uint()
452 rtl::OUString ElementConfig::dump_unistring( SvStream& rStream, sal_Size& nLength ) in dump_unistring()
460 rtl::OUString ElementConfig::dump_float( SvStream& rStream, sal_Size& nLength ) in dump_float()
462 OUString aRet; in dump_float()
470 aRet += OUString::createFromAscii( buffer ); in dump_float()
479 rtl::OUString ElementConfigContainer::format( SvStream& rStream, sal_Size& nLength ) const in format()
481 OUString aRet; in format()
492 aRet += OUString( RTL_CONSTASCII_USTRINGPARAM( "\n\r" ) ); in format()
502 aRet += OUString( RTL_CONSTASCII_USTRINGPARAM( " = " ) ); in format()
504 OUString aValue; in format()
534 aValue = OUString( RTL_CONSTASCII_USTRINGPARAM("<empty!?>") ); in format()
545 rtl::OUString SwitchElementConfig::format( SvStream& rStream, sal_Size& nLength ) const in format()
547 OUString aValue; in format()