Home
last modified time | relevance | path

Searched refs:ARR (Results 1 – 2 of 2) sorted by relevance

/AOO41X/main/sfx2/inc/sfx2/
H A Dminstack.hxx29 #define DECL_OBJSTACK( ARR, T, nI, nG ) \ argument
30 DECL_OBJARRAY( ARR##arr_, T, nI, nG ); \
31 class ARR: private ARR##arr_ \
34 ARR( sal_uInt8 nInitSize = nI, sal_uInt8 nGrowSize = nG ): \
35 ARR##arr_( nInitSize, nGrowSize ) \
38 ARR( const ARR& rOrig ): \
39 ARR##arr_( rOrig ) \
42 sal_uInt16 Count() const { return ARR##arr_::Count(); } \
48 void Clear() { ARR##arr_::Clear(); } \
50 { return ARR##arr_::Contains( rItem ); } \
[all …]
H A Dminarray.hxx41 #define DECL_OBJARRAY( ARR, T, nI, nG ) \ argument
42 class ARR\
50 ARR( sal_uInt8 nInitSize = nI, sal_uInt8 nGrowSize = nG );\
51 ARR( const ARR& rOrig );\
52 ~ARR();\
54 ARR& operator= ( const ARR& rOrig );\
59 void Insert( sal_uInt16 nPos, ARR& rIns, sal_uInt16 nStart = 0, sal_uInt16 nEnd = USHRT_MAX );\
76 inline void ARR::Insert( sal_uInt16 nPos, ARR& rIns, sal_uInt16 nStart, sal_uInt16 nEnd )\
81 inline void ARR::Insert( sal_uInt16 nPos, const T& rElem )\
86 inline T* ARR::operator*()\
[all …]