Lines Matching refs:ArrayBuffer
48 class ArrayBuffer class
51 ArrayBuffer (void) throw();
52 ArrayBuffer (size_t numElements);
53 ArrayBuffer (const ArrayBuffer& other);
54 ~ArrayBuffer (void) throw();
55 ArrayBuffer& operator= (const ArrayBuffer& other);
59 void swap (ArrayBuffer& other) throw();
74 ArrayBuffer<T,Alignment,Stride>::ArrayBuffer (void) throw() in ArrayBuffer() function in de::ArrayBuffer
81 ArrayBuffer<T,Alignment,Stride>::ArrayBuffer (size_t numElements) in ArrayBuffer() function in de::ArrayBuffer
100 ArrayBuffer<T,Alignment,Stride>::ArrayBuffer (const ArrayBuffer<T,Alignment,Stride>& other) in ArrayBuffer() function in de::ArrayBuffer
109 ArrayBuffer tmp (other.m_cap); in ArrayBuffer()
117 ArrayBuffer<T,Alignment,Stride>::~ArrayBuffer (void) throw() in ~ArrayBuffer()
123 ArrayBuffer<T,Alignment,Stride>& ArrayBuffer<T,Alignment,Stride>::operator= (const ArrayBuffer& oth… in operator =()
125 ArrayBuffer copied(other); in operator =()
131 void ArrayBuffer<T,Alignment,Stride>::clear (void) throw() in clear()
140 void ArrayBuffer<T,Alignment,Stride>::setStorage (size_t numElements) in setStorage()
143 ArrayBuffer<T,Alignment,Stride> newBuffer(numElements); in setStorage()
148 void ArrayBuffer<T,Alignment,Stride>::swap (ArrayBuffer& other) throw() in swap()
160 size_t ArrayBuffer<T,Alignment,Stride>::size (void) const throw() in size()
166 bool ArrayBuffer<T,Alignment,Stride>::empty (void) const throw() in empty()
172 T* ArrayBuffer<T,Alignment,Stride>::getElementPtr (size_t elementNdx) throw() in getElementPtr()
178 const T* ArrayBuffer<T,Alignment,Stride>::getElementPtr (size_t elementNdx) const throw() in getElementPtr()
184 void* ArrayBuffer<T,Alignment,Stride>::getPtr (void) throw() in getPtr()
190 const void* ArrayBuffer<T,Alignment,Stride>::getPtr (void) const throw() in getPtr()