HomeSort by relevance Sort by last modified time
    Searched refs:TypeOperations (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/wtf/
Deque.h 100 typedef VectorTypeOperations<T> TypeOperations;
217 TypeOperations::uninitializedCopy(otherBuffer + m_start, otherBuffer + m_end, m_buffer.buffer() + m_start);
219 TypeOperations::uninitializedCopy(otherBuffer, otherBuffer + m_end, m_buffer.buffer());
220 TypeOperations::uninitializedCopy(otherBuffer + m_start, otherBuffer + m_buffer.capacity(), m_buffer.buffer() + m_start);
247 TypeOperations::destruct(m_buffer.buffer() + m_start, m_buffer.buffer() + m_end);
249 TypeOperations::destruct(m_buffer.buffer(), m_buffer.buffer() + m_end);
250 TypeOperations::destruct(m_buffer.buffer() + m_start, m_buffer.buffer() + m_buffer.capacity());
313 TypeOperations::move(oldBuffer + m_start, oldBuffer + m_end, m_buffer.buffer() + m_start);
315 TypeOperations::move(oldBuffer, oldBuffer + m_end, m_buffer.buffer());
317 TypeOperations::move(oldBuffer + m_start, oldBuffer + oldCapacity, m_buffer.buffer() + newStart)
    [all...]
Vector.h 460 typedef VectorTypeOperations<T> TypeOperations;
479 TypeOperations::initialize(begin(), end());
583 TypeOperations::uninitializedFill(begin(), end(), val);
619 TypeOperations::uninitializedCopy(other.begin(), other.end(), begin());
628 TypeOperations::uninitializedCopy(other.begin(), other.end(), begin());
652 TypeOperations::uninitializedCopy(other.begin() + size(), other.end(), end());
684 TypeOperations::uninitializedCopy(other.begin() + size(), other.end(), end());
754 TypeOperations::uninitializedFill(end(), begin() + newSize, val);
811 TypeOperations::destruct(begin() + size, end());
815 TypeOperations::initialize(end(), begin() + size)
    [all...]

Completed in 61 milliseconds