Home
last modified time | relevance | path

Searched refs:NUMTYPE (Results 1 – 7 of 7) sorted by relevance

/AOO41X/main/svl/source/items/
H A Dnranges.cxx33 #define DBG_CHECK_RANGES(NUMTYPE, pArr) \ argument
34 for ( const NUMTYPE *pRange = pArr; *pRange; pRange += 2 ) \
43 #define DBG_CHECK_RANGES(NUMTYPE,pArr) argument
48 inline void Swap_Impl(const NUMTYPE *& rp1, const NUMTYPE *& rp2) in Swap_Impl()
50 const NUMTYPE * pTemp = rp1; in Swap_Impl()
57 NUMTYPE InitializeRanges_Impl( NUMTYPE *&rpRanges, va_list pArgs, in InitializeRanges_Impl()
58 NUMTYPE nWh1, NUMTYPE nWh2, NUMTYPE nNull ) in InitializeRanges_Impl()
71 NUMTYPE nSize = 0, nIns = 0; in InitializeRanges_Impl()
81 sal::static_int_cast< NUMTYPE >( in InitializeRanges_Impl()
96 rpRanges = new NUMTYPE[ nCnt+1 ]; in InitializeRanges_Impl()
[all …]
H A Drngitem_inc.cxx27 static inline NUMTYPE Count_Impl(const NUMTYPE * pRanges) in Count_Impl()
29 NUMTYPE nCount = 0; in Count_Impl()
39 NUMTYPE Count_Impl( const NUMTYPE *pRanges );
51 SfxXRangeItem::SfxXRangeItem( sal_uInt16 which, NUMTYPE from, NUMTYPE to ): in SfxXRangeItem()
116 NUMTYPE nVon, nBis; in Create()
140 SfxXRangesItem::SfxXRangesItem( sal_uInt16 nWID, const NUMTYPE *pRanges ) in SfxXRangesItem()
143 NUMTYPE nCount = Count_Impl(pRanges) + 1; in SfxXRangesItem()
144 _pRanges = new NUMTYPE[nCount]; in SfxXRangesItem()
145 memcpy( _pRanges, pRanges, sizeof(NUMTYPE) * nCount ); in SfxXRangesItem()
153 NUMTYPE nCount; in SfxXRangesItem()
[all …]
H A Drngitem.cxx28 #ifndef NUMTYPE
30 #define NUMTYPE sal_uInt16 macro
36 #define NUMTYPE sal_uInt32 macro
H A Ditemset.cxx55 #define NUMTYPE sal_uInt16 in DBG_NAME() macro
59 #undef NUMTYPE in DBG_NAME()
63 #define NUMTYPE sal_uLong in DBG_NAME() macro
67 #undef NUMTYPE in DBG_NAME()
/AOO41X/main/svl/inc/svl/
H A Drngitem.hxx26 #ifndef NUMTYPE
28 #define NUMTYPE sal_uInt16 macro
32 #undef NUMTYPE
37 #define NUMTYPE sal_uLong macro
41 #undef NUMTYPE
59 NUMTYPE nFrom;
60 NUMTYPE nTo;
64 SfxXRangeItem( sal_uInt16 nWID, NUMTYPE nFrom, NUMTYPE nTo );
74 inline NUMTYPE& From() { return nFrom; } in From()
75 inline NUMTYPE From() const { return nFrom; } in From()
[all …]
H A Dnranges.hxx32 #ifndef NUMTYPE
34 #define NUMTYPE sal_uInt16 macro
38 #undef NUMTYPE
39 #define NUMTYPE sal_uLong macro
54 NUMTYPE* _pRanges; // 0-terminated array of NUMTYPE-pairs
59 SfxNumRanges( NUMTYPE nWhich1, NUMTYPE nWhich2 );
61 SfxNumRanges( const NUMTYPE* nNumTable );
75 NUMTYPE Count() const;
78 sal_Bool Contains( NUMTYPE n ) const;
81 operator const NUMTYPE* () const in operator const NUMTYPE*()
[all …]
/AOO41X/main/cosv/inc/cosv/
H A Dcomfunc.hxx53 template <class NUMTYPE>
55 NUMTYPE & o_rNumber,
56 const NUMTYPE & i_rNumber );
95 template <class NUMTYPE>
97 switch_endian( NUMTYPE & o_rNumber, in switch_endian()
98 const NUMTYPE & i_rNumber ) in switch_endian()
101 const char * pBack = reinterpret_cast< const char* >(&i_rNumber) + sizeof(NUMTYPE); in switch_endian()
103 for ( size_t p = 0; p < sizeof(NUMTYPE); --p ) in switch_endian()