Lines Matching defs:const

171     bool IsEmpty(void) const { return (mLength == 0); }  in IsEmpty()
179 bool IsFull(void) const { return (mLength == GetMaxSize()); } in IsFull()
186 IndexType GetMaxSize(void) const { return static_cast<IndexType>(kMaxSize); } in GetMaxSize()
193 IndexType GetLength(void) const { return mLength; } in GetLength()
214 const Type *GetArrayBuffer(void) const { return mElements; } in GetArrayBuffer()
236 const Type &operator[](IndexType aIndex) const { return mElements[aIndex]; } in operator []()
258 …const Type *At(IndexType aIndex) const { return (aIndex < mLength) ? &mElements[aIndex] : nullptr;… in At()
272 const Type *Front(void) const { return At(0); } in Front()
286 const Type *Back(void) const { return At(mLength - 1); } in Back()
326 …IndexType IndexOf(const Type &aElement) const { return static_cast<IndexType>(&aElement - &mElemen… in IndexOf() argument
368 const Type *Find(const Type &aEntry) const in Find() argument
394 bool Contains(const Type &aEntry) const { return Find(aEntry) != nullptr; } in Contains() argument
427 template <typename Indicator> const Type *FindMatching(const Indicator &aIndicator) const in FindMatching() argument
457 template <typename Indicator> bool ContainsMatching(const Indicator &aIndicator) const in ContainsMatching() argument
553 bool IsInArrayBuffer(const Type *aEntry) const in IsInArrayBuffer() argument
564 const Type *begin(void) const { return &mElements[0]; } in begin()
565 const Type *end(void) const { return &mElements[mLength]; } in end()