Lines Matching refs:rStream
42 CntByteItem::CntByteItem(sal_uInt16 which, SvStream & rStream): in CntByteItem() argument
46 rStream >> m_nValue; in CntByteItem()
110 SfxPoolItem * CntByteItem::Create(SvStream & rStream, sal_uInt16) const in Create() argument
114 rStream >> nTheValue; in Create()
120 SvStream & CntByteItem::Store(SvStream & rStream, sal_uInt16) const in Store() argument
123 rStream << short(m_nValue); in Store()
124 return rStream; in Store()
171 CntUInt16Item::CntUInt16Item(sal_uInt16 which, SvStream & rStream) : in CntUInt16Item() argument
176 rStream >> nTheValue; in CntUInt16Item()
246 SfxPoolItem * CntUInt16Item::Create(SvStream & rStream, sal_uInt16) const in Create() argument
249 return new CntUInt16Item(Which(), rStream); in Create()
254 SvStream & CntUInt16Item::Store(SvStream &rStream, sal_uInt16) const in Store() argument
257 rStream << sal_uInt16(m_nValue); in Store()
258 return rStream; in Store()
305 CntInt32Item::CntInt32Item(sal_uInt16 which, SvStream & rStream) : in CntInt32Item() argument
310 rStream >> nTheValue; in CntInt32Item()
377 SfxPoolItem * CntInt32Item::Create(SvStream & rStream, sal_uInt16) const in Create() argument
380 return new CntInt32Item(Which(), rStream); in Create()
385 SvStream & CntInt32Item::Store(SvStream &rStream, sal_uInt16) const in Store() argument
388 rStream << long(m_nValue); in Store()
389 return rStream; in Store()
436 CntUInt32Item::CntUInt32Item(sal_uInt16 which, SvStream & rStream) : in CntUInt32Item() argument
441 rStream >> nTheValue; in CntUInt32Item()
512 SfxPoolItem * CntUInt32Item::Create(SvStream & rStream, sal_uInt16) const in Create() argument
515 return new CntUInt32Item(Which(), rStream); in Create()
520 SvStream & CntUInt32Item::Store(SvStream &rStream, sal_uInt16) const in Store() argument
523 rStream << static_cast<sal_uInt32>(m_nValue); in Store()
524 return rStream; in Store()