Home
last modified time | relevance | path

Searched refs:appendHex (Results 1 – 4 of 4) sorted by relevance

/trunk/main/oox/source/dump/
H A Ddumperbase.cxx298 void StringHelper::appendHex( OUStringBuffer& rStr, sal_uInt8 nData, bool bPrefix ) in appendHex() function in oox::dump::StringHelper
306 void StringHelper::appendHex( OUStringBuffer& rStr, sal_Int8 nData, bool bPrefix ) in appendHex() function in oox::dump::StringHelper
308 appendHex( rStr, static_cast< sal_uInt8 >( nData ), bPrefix ); in appendHex()
311 void StringHelper::appendHex( OUStringBuffer& rStr, sal_uInt16 nData, bool bPrefix ) in appendHex() function in oox::dump::StringHelper
313 appendHex( rStr, static_cast< sal_uInt8 >( nData >> 8 ), bPrefix ); in appendHex()
314 appendHex( rStr, static_cast< sal_uInt8 >( nData ), false ); in appendHex()
317 void StringHelper::appendHex( OUStringBuffer& rStr, sal_Int16 nData, bool bPrefix ) in appendHex() function in oox::dump::StringHelper
319 appendHex( rStr, static_cast< sal_uInt16 >( nData ), bPrefix ); in appendHex()
322 void StringHelper::appendHex( OUStringBuffer& rStr, sal_uInt32 nData, bool bPrefix ) in appendHex() function in oox::dump::StringHelper
324 appendHex( rStr, static_cast< sal_uInt16 >( nData >> 16 ), bPrefix ); in appendHex()
[all …]
H A Dbiffdumper.cxx2699 StringHelper::appendHex( aColorName, dumpColorABGR( "#color" ) ); in implDumpRecordBody()
/trunk/main/oox/inc/oox/dump/
H A Ddumperbase.hxx327 …static void appendHex( ::rtl::OUStringBuffer& rStr, sal_uInt8 nData, bool bPrefix = true …
328 …static void appendHex( ::rtl::OUStringBuffer& rStr, sal_Int8 nData, bool bPrefix = true …
329 …static void appendHex( ::rtl::OUStringBuffer& rStr, sal_uInt16 nData, bool bPrefix = true …
330 …static void appendHex( ::rtl::OUStringBuffer& rStr, sal_Int16 nData, bool bPrefix = true …
331 …static void appendHex( ::rtl::OUStringBuffer& rStr, sal_uInt32 nData, bool bPrefix = true …
332 …static void appendHex( ::rtl::OUStringBuffer& rStr, sal_Int32 nData, bool bPrefix = true …
333 …static void appendHex( ::rtl::OUStringBuffer& rStr, sal_uInt64 nData, bool bPrefix = true …
334 …static void appendHex( ::rtl::OUStringBuffer& rStr, sal_Int64 nData, bool bPrefix = true …
335 …static void appendHex( ::rtl::OUStringBuffer& rStr, double fData, bool bPrefix = true …
446 case FORMATTYPE_HEX: appendHex( rStr, nData ); break; in appendValue()
[all …]
/trunk/main/vcl/source/gdi/
H A Dpdfwriter_impl.cxx511 static void appendHex( sal_Int8 nInt, OStringBuffer& rBuffer ) in appendHex() function
545 appendHex( (sal_Int8)pStr[i], rBuffer ); in appendName()
565 appendHex( (sal_Int8)*pStr, rBuffer ); in appendName()
649 appendHex( aValueHigh, rBuffer ); in appendDestinationName()
650 appendHex( (sal_Int8)(aChar & 255 ), rBuffer ); in appendDestinationName()
664 appendHex( (sal_Int8)(aChar >> 8), rBuffer ); in appendUnicodeTextString()
665 appendHex( (sal_Int8)(aChar & 255 ), rBuffer ); in appendUnicodeTextString()
692 appendHex( (sal_Int8)pStr[i], aBuffer ); in createWidgetFieldName()
2046 appendHex( m_pEncryptionBuffer[i], rOutBuffer ); in appendUnicodeTextStringEncrypt()
2091 appendHex( *pT, aBuf ); in appendLiteralStringEncrypt()
[all …]