Lines Matching refs:rtl

78 …virtual ::rtl::OUString SAL_CALL formatMultiColumn(const Sequence< ::rtl::OUString>& column_data) …
81 static ::rtl::OUString SAL_CALL getImplementationName_static();
82 static Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames_static();
94 virtual Sequence< ::rtl::OUString > SAL_CALL getColumnnames() throw (RuntimeException);
100 …virtual void SAL_CALL setColumnnames( const Sequence< ::rtl::OUString>& column_names) throw (Runti…
103 virtual ::rtl::OUString SAL_CALL getHead( ) throw (RuntimeException);
104 virtual ::rtl::OUString SAL_CALL format( const LogRecord& Record ) throw (RuntimeException);
105 virtual ::rtl::OUString SAL_CALL getTail( ) throw (RuntimeException);
108 virtual ::rtl::OUString SAL_CALL getImplementationName() throw(RuntimeException);
109 …virtual ::sal_Bool SAL_CALL supportsService( const ::rtl::OUString& service_name ) throw(RuntimeEx…
110 … virtual Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames() throw(RuntimeException);
119 ::com::sun::star::uno::Sequence< ::rtl::OUString > m_Columnnames;
126 const sal_Unicode quote_char = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("\"")).toChar();
127 const sal_Unicode comma_char = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(",")).toChar();
128 const ::rtl::OUString dos_newline = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("\r\n"));
130 inline bool needsQuoting(const ::rtl::OUString& str) in needsQuoting()
132 …static const ::rtl::OUString quote_trigger_chars = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("\… in needsQuoting()
140 inline void appendEncodedString(::rtl::OUStringBuffer& buf, const ::rtl::OUString& str) in appendEncodedString()
166 ::com::sun::star::uno::Sequence< ::rtl::OUString> initialColumns() in initialColumns()
168 …com::sun::star::uno::Sequence< ::rtl::OUString> result = ::com::sun::star::uno::Sequence< ::rtl::O… in initialColumns()
169 result[0] = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("message")); in initialColumns()
210 Sequence< ::rtl::OUString > CsvFormatter::getColumnnames() throw (RuntimeException) in getColumnnames()
235 …void CsvFormatter::setColumnnames(const Sequence< ::rtl::OUString >& columnnames) throw (RuntimeEx… in setColumnnames()
237 m_Columnnames = Sequence< ::rtl::OUString>(columnnames); in setColumnnames()
241 ::rtl::OUString SAL_CALL CsvFormatter::getHead( ) throw (RuntimeException) in getHead()
243 ::rtl::OUStringBuffer buf; in getHead()
263 … ::rtl::OUString SAL_CALL CsvFormatter::format( const LogRecord& record ) throw (RuntimeException) in format()
265 ::rtl::OUStringBuffer aLogEntry; in format()
318 ::rtl::OUString SAL_CALL CsvFormatter::getTail( ) throw (RuntimeException) in getTail()
320 return ::rtl::OUString(); in getTail()
323 …::rtl::OUString SAL_CALL CsvFormatter::formatMultiColumn(const Sequence< ::rtl::OUString>& column_… in formatMultiColumn()
326 ::rtl::OUStringBuffer buf; in formatMultiColumn()
336 …::sal_Bool SAL_CALL CsvFormatter::supportsService( const ::rtl::OUString& service_name ) throw(Run… in supportsService()
338 const Sequence< ::rtl::OUString > aServiceNames( getSupportedServiceNames() ); in supportsService()
339 for ( const ::rtl::OUString* pServiceNames = aServiceNames.getConstArray(); in supportsService()
348 ::rtl::OUString SAL_CALL CsvFormatter::getImplementationName() throw(RuntimeException) in getImplementationName()
353 …Sequence< ::rtl::OUString > SAL_CALL CsvFormatter::getSupportedServiceNames() throw(RuntimeExcepti… in getSupportedServiceNames()
358 ::rtl::OUString SAL_CALL CsvFormatter::getImplementationName_static() in getImplementationName_static()
360 …return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.comp.extensions.CsvFormatter" )… in getImplementationName_static()
363 Sequence< ::rtl::OUString > SAL_CALL CsvFormatter::getSupportedServiceNames_static() in getSupportedServiceNames_static()
365 Sequence< ::rtl::OUString > aServiceNames(1); in getSupportedServiceNames_static()
366 …aServiceNames[0] = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.logging.CsvFormatte… in getSupportedServiceNames_static()