CArrayFixFlat< TUid > Class Template Reference

template <>
class CArrayFixFlat< TUid > : public CArrayFix< TUid >

Template specialisation base class for arrays of TUid types implemented in a flat dynamic buffer.

TUid

Inherits from

Public Member Functions
CArrayFixFlat ( TInt )
~CArrayFixFlat ()
void SetReserveL ( TInt )
Inherited Functions
CArrayFix< TUid >::AppendL(const TUid &)
CArrayFix< TUid >::AppendL(const TUid &,TInt)
CArrayFix< TUid >::AppendL(const TUid *,TInt)
CArrayFix< TUid >::Array()const
CArrayFix< TUid >::At(TInt)
CArrayFix< TUid >::At(TInt)const
CArrayFix< TUid >::Back(TInt)
CArrayFix< TUid >::Back(TInt)const
CArrayFix< TUid >::CArrayFix(TBufRep,TInt)
CArrayFix< TUid >::End(TInt)
CArrayFix< TUid >::End(TInt)const
CArrayFix< TUid >::ExpandL(TInt)
CArrayFix< TUid >::ExtendL()
CArrayFix< TUid >::Find(const TUid &,TKeyArrayFix &,TInt &)const
CArrayFix< TUid >::FindIsq(const TUid &,TKeyArrayFix &,TInt &)const
CArrayFix< TUid >::InsertIsqAllowDuplicatesL(const TUid &,TKeyArrayFix &)
CArrayFix< TUid >::InsertIsqL(const TUid &,TKeyArrayFix &)
CArrayFix< TUid >::InsertL(TInt,const TUid &)
CArrayFix< TUid >::InsertL(TInt,const TUid &,TInt)
CArrayFix< TUid >::InsertL(TInt,const TUid *,TInt)
CArrayFix< TUid >::ResizeL(TInt)
CArrayFix< TUid >::ResizeL(TInt,const TUid &)
CArrayFix< TUid >::operator[](TInt)
CArrayFix< TUid >::operator[](TInt)const
CArrayFixBase::AtR(const CBase *,TInt)
CArrayFixBase::CArrayFixBase(TBufRep,TInt,TInt)
CArrayFixBase::Compress()
CArrayFixBase::Count()const
CArrayFixBase::CountR(const CBase *)
CArrayFixBase::Delete(TInt)
CArrayFixBase::Delete(TInt,TInt)
CArrayFixBase::Find(const TAny *,TKeyArrayFix &,TInt &)const
CArrayFixBase::FindIsq(const TAny *,TKeyArrayFix &,TInt &)const
CArrayFixBase::InsertIsqAllowDuplicatesL(const TAny *,TKeyArrayFix &)
CArrayFixBase::InsertIsqL(const TAny *,TKeyArrayFix &)
CArrayFixBase::InsertL(TInt,const TAny *)
CArrayFixBase::InsertL(TInt,const TAny *,TInt)
CArrayFixBase::InsertRepL(TInt,const TAny *,TInt)
CArrayFixBase::Length()const
CArrayFixBase::Reset()
CArrayFixBase::ResizeL(TInt,const TAny *)
CArrayFixBase::SetKey(TKeyArrayFix &)const
CArrayFixBase::SetReserveFlatL(TInt)
CArrayFixBase::Sort(TKeyArrayFix &)
CArrayFixBase::~CArrayFixBase()
CBase::CBase()
CBase::Delete(CBase *)
CBase::Extension_(TUint,TAny *&,TAny *)
CBase::operator new(TUint)
CBase::operator new(TUint,TAny *)
CBase::operator new(TUint,TLeave)
CBase::operator new(TUint,TLeave,TUint)
CBase::operator new(TUint,TUint)
CBase::~CBase()

Constructor & Destructor Documentation

CArrayFixFlat(TInt)

IMPORT_C CArrayFixFlat ( TInt aGranularity ) [explicit]

Constructs the array, with the specified granularity, to contain elements of TUid type.

Note that no memory is allocated to the array buffer by this C++ constructor.

panic
E32USER-CBase 18 if aGranularity is not positive.

Parameters

TInt aGranularity The granularity of the array.

~CArrayFixFlat()

IMPORT_C ~CArrayFixFlat ( )

Destructor.

Member Functions Documentation

SetReserveL(TInt)

void SetReserveL ( TInt aCount ) [inline]

Reserves space in the array buffer.

If necessary, the array buffer is allocated or re-allocated so that it can accommodate the specified number of TUid elements.

After a successful call to this function, elements can be added to the array and the process is guaranteed not to fail for lack of memory - provided the total number of elements does not exceed the specified number.

This function does not increase the number of elements in the array; i.e. the member function CArrayFixBase::Count() returns the same value both before and after a call to this function.

panic
E32USER-CBase 27, if aCount is less than the current number of elements in the array.

Parameters

TInt aCount The total number of elements for which space is to be reserved.