• Home
  • Raw
  • Download

Lines Matching refs:ArrayBuffer

48 class ArrayBuffer  class
53 ArrayBuffer (void) throw();
54 ArrayBuffer (size_t numElements);
55 ArrayBuffer (const T* ptr, size_t numElements);
56 ArrayBuffer (const ArrayBuffer& other);
57 ~ArrayBuffer (void) throw();
58 ArrayBuffer& operator= (const ArrayBuffer& other);
62 void swap (ArrayBuffer& other) throw();
77 ArrayBuffer<T,Alignment,Stride>::ArrayBuffer (void) throw() in ArrayBuffer() function in de::ArrayBuffer
84 ArrayBuffer<T,Alignment,Stride>::ArrayBuffer (size_t numElements) in ArrayBuffer() function in de::ArrayBuffer
103 ArrayBuffer<T,Alignment,Stride>::ArrayBuffer (const T* ptr, size_t numElements) in ArrayBuffer() function in de::ArrayBuffer
110 ArrayBuffer<T,Alignment,Stride> tmp(numElements); in ArrayBuffer()
130 ArrayBuffer<T,Alignment,Stride>::ArrayBuffer (const ArrayBuffer<T,Alignment,Stride>& other) in ArrayBuffer() function in de::ArrayBuffer
139 ArrayBuffer tmp (other.m_cap); in ArrayBuffer()
147 ArrayBuffer<T,Alignment,Stride>::~ArrayBuffer (void) throw() in ~ArrayBuffer()
153 ArrayBuffer<T,Alignment,Stride>& ArrayBuffer<T,Alignment,Stride>::operator= (const ArrayBuffer& oth… in operator =()
155 ArrayBuffer copied(other); in operator =()
161 void ArrayBuffer<T,Alignment,Stride>::clear (void) throw() in clear()
170 void ArrayBuffer<T,Alignment,Stride>::setStorage (size_t numElements) in setStorage()
173 ArrayBuffer<T,Alignment,Stride> newBuffer(numElements); in setStorage()
178 void ArrayBuffer<T,Alignment,Stride>::swap (ArrayBuffer& other) throw() in swap()
190 size_t ArrayBuffer<T,Alignment,Stride>::size (void) const throw() in size()
196 bool ArrayBuffer<T,Alignment,Stride>::empty (void) const throw() in empty()
202 T* ArrayBuffer<T,Alignment,Stride>::getElementPtr (size_t elementNdx) throw() in getElementPtr()
208 const T* ArrayBuffer<T,Alignment,Stride>::getElementPtr (size_t elementNdx) const throw() in getElementPtr()
214 void* ArrayBuffer<T,Alignment,Stride>::getPtr (void) throw() in getPtr()
220 const void* ArrayBuffer<T,Alignment,Stride>::getPtr (void) const throw() in getPtr()