Home
last modified time | relevance | path

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

/external/webkit/Source/JavaScriptCore/wtf/
DDeque.h93 typedef VectorTypeOperations<T> TypeOperations; typedef
322TypeOperations::uninitializedCopy(otherBuffer + m_start, otherBuffer + m_end, m_buffer.buffer() + … in Deque()
324 TypeOperations::uninitializedCopy(otherBuffer, otherBuffer + m_end, m_buffer.buffer()); in Deque()
325TypeOperations::uninitializedCopy(otherBuffer + m_start, otherBuffer + m_buffer.capacity(), m_buff… in Deque()
352 TypeOperations::destruct(m_buffer.buffer() + m_start, m_buffer.buffer() + m_end); in destroyAll()
354 TypeOperations::destruct(m_buffer.buffer(), m_buffer.buffer() + m_end); in destroyAll()
355TypeOperations::destruct(m_buffer.buffer() + m_start, m_buffer.buffer() + m_buffer.capacity()); in destroyAll()
427TypeOperations::move(oldBuffer + m_start, oldBuffer + m_end, m_buffer.buffer() + m_start); in expandCapacity()
429 TypeOperations::move(oldBuffer, oldBuffer + m_end, m_buffer.buffer()); in expandCapacity()
431TypeOperations::move(oldBuffer + m_start, oldBuffer + oldCapacity, m_buffer.buffer() + newStart); in expandCapacity()
[all …]
DVector.h497 typedef VectorTypeOperations<T> TypeOperations;
515 TypeOperations::initialize(begin(), end());
606 TypeOperations::uninitializedFill(begin(), end(), val);
667 TypeOperations::uninitializedCopy(other.begin(), other.end(), begin());
677 TypeOperations::uninitializedCopy(other.begin(), other.end(), begin());
702 TypeOperations::uninitializedCopy(other.begin() + size(), other.end(), end());
735 TypeOperations::uninitializedCopy(other.begin() + size(), other.end(), end());
784 TypeOperations::uninitializedFill(end(), begin() + newSize, val);
845 TypeOperations::destruct(begin() + size, end());
850 TypeOperations::initialize(end(), begin() + size);
[all …]