| H A D | dumperbase.cxx | 298 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 …]
|