Lines Matching refs:rItemFmt

1411             const ExtItemFormat& rItemFmt = aIt->second;  in implGetName()  local
1415 if( rItemFmt.mbShiftValue ) in implGetName()
1423 OUStringBuffer aItem( rItemFmt.maItemName ); in implGetName()
1425 switch( rItemFmt.meDataType ) in implGetName()
1427 … StringHelper::appendValue( aValue, static_cast< sal_Int8 >( nSValue ), rItemFmt.meFmtType ); b… in implGetName()
1428 …StringHelper::appendValue( aValue, static_cast< sal_uInt8 >( nUValue ), rItemFmt.meFmtType ); br… in implGetName()
1429 …StringHelper::appendValue( aValue, static_cast< sal_Int16 >( nSValue ), rItemFmt.meFmtType ); br… in implGetName()
1430 …tringHelper::appendValue( aValue, static_cast< sal_uInt16 >( nUValue ), rItemFmt.meFmtType ); bre… in implGetName()
1431 …StringHelper::appendValue( aValue, static_cast< sal_Int32 >( nSValue ), rItemFmt.meFmtType ); br… in implGetName()
1432 …tringHelper::appendValue( aValue, static_cast< sal_uInt32 >( nUValue ), rItemFmt.meFmtType ); bre… in implGetName()
1433 …case DATATYPE_INT64: StringHelper::appendValue( aValue, nSValue, rItemFmt.meFmtType ); … in implGetName()
1434 …case DATATYPE_UINT64: StringHelper::appendValue( aValue, nUValue, rItemFmt.meFmtType ); … in implGetName()
1435 … StringHelper::appendValue( aValue, static_cast< float >( nSValue ), rItemFmt.meFmtType ); … in implGetName()
1436 … StringHelper::appendValue( aValue, static_cast< double >( nSValue ), rItemFmt.meFmtType ); … in implGetName()
1440 if( rItemFmt.maListName.getLength() > 0 ) in implGetName()
1442 … OUString aValueName = rCfg.getName( rItemFmt.maListName, static_cast< sal_Int64 >( nUValue ) ); in implGetName()
2809 void InputObjectBase::dumpItem( const ItemFormat& rItemFmt ) in dumpItem() argument
2811 switch( rItemFmt.meDataType ) in dumpItem()
2814 case DATATYPE_INT8: dumpValue< sal_Int8 >( rItemFmt ); break; in dumpItem()
2815 case DATATYPE_UINT8: dumpValue< sal_uInt8 >( rItemFmt ); break; in dumpItem()
2816 case DATATYPE_INT16: dumpValue< sal_Int16 >( rItemFmt ); break; in dumpItem()
2817 case DATATYPE_UINT16: dumpValue< sal_uInt16 >( rItemFmt ); break; in dumpItem()
2818 case DATATYPE_INT32: dumpValue< sal_Int32 >( rItemFmt ); break; in dumpItem()
2819 case DATATYPE_UINT32: dumpValue< sal_uInt32 >( rItemFmt ); break; in dumpItem()
2820 case DATATYPE_INT64: dumpValue< sal_Int64 >( rItemFmt ); break; in dumpItem()
2821 case DATATYPE_UINT64: dumpValue< sal_uInt64 >( rItemFmt ); break; in dumpItem()
2822 case DATATYPE_FLOAT: dumpValue< float >( rItemFmt ); break; in dumpItem()
2823 case DATATYPE_DOUBLE: dumpValue< double >( rItemFmt ); break; in dumpItem()