Searched refs:appendShortHex (Results 1 – 2 of 2) sorted by relevance
/aoo42x/main/oox/inc/oox/dump/ |
H A D | dumperbase.hxx | 339 …static void appendShortHex( ::rtl::OUStringBuffer& rStr, sal_uInt8 nData, bool bPrefix = … 340 …static void appendShortHex( ::rtl::OUStringBuffer& rStr, sal_Int8 nData, bool bPrefix = … 341 …static void appendShortHex( ::rtl::OUStringBuffer& rStr, sal_uInt16 nData, bool bPrefix = … 342 …static void appendShortHex( ::rtl::OUStringBuffer& rStr, sal_Int16 nData, bool bPrefix = … 343 …static void appendShortHex( ::rtl::OUStringBuffer& rStr, sal_uInt32 nData, bool bPrefix = … 344 …static void appendShortHex( ::rtl::OUStringBuffer& rStr, sal_Int32 nData, bool bPrefix = … 345 …static void appendShortHex( ::rtl::OUStringBuffer& rStr, sal_uInt64 nData, bool bPrefix = … 346 …static void appendShortHex( ::rtl::OUStringBuffer& rStr, sal_Int64 nData, bool bPrefix = … 347 …static void appendShortHex( ::rtl::OUStringBuffer& rStr, double fData, bool bPrefix = … 447 case FORMATTYPE_SHORTHEX: appendShortHex( rStr, nData ); break; in appendValue() [all …]
|
/aoo42x/main/oox/source/dump/ |
H A D | dumperbase.cxx | 351 void StringHelper::appendShortHex( OUStringBuffer& rStr, sal_uInt8 nData, bool bPrefix ) in appendShortHex() function in oox::dump::StringHelper 356 void StringHelper::appendShortHex( OUStringBuffer& rStr, sal_Int8 nData, bool bPrefix ) in appendShortHex() function in oox::dump::StringHelper 369 void StringHelper::appendShortHex( OUStringBuffer& rStr, sal_Int16 nData, bool bPrefix ) in appendShortHex() function in oox::dump::StringHelper 371 appendShortHex( rStr, static_cast< sal_uInt16 >( nData ), bPrefix ); in appendShortHex() 379 appendShortHex( rStr, static_cast< sal_uInt16 >( nData ), bPrefix ); in appendShortHex() 382 void StringHelper::appendShortHex( OUStringBuffer& rStr, sal_Int32 nData, bool bPrefix ) in appendShortHex() function in oox::dump::StringHelper 384 appendShortHex( rStr, static_cast< sal_uInt32 >( nData ), bPrefix ); in appendShortHex() 392 appendShortHex( rStr, static_cast< sal_uInt32 >( nData ), bPrefix ); in appendShortHex() 397 appendShortHex( rStr, static_cast< sal_uInt64 >( nData ), bPrefix ); in appendShortHex() 400 void StringHelper::appendShortHex( OUStringBuffer& rStr, double fData, bool bPrefix ) in appendShortHex() function in oox::dump::StringHelper [all …]
|
Completed in 34 milliseconds