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/
Vector.h 489 typedef VectorTypeOperations<T> TypeOperations;
509 TypeOperations::initialize(begin(), end());
609 TypeOperations::uninitializedFill(begin(), end(), val);
651 TypeOperations::uninitializedCopy(other.begin(), other.end(), begin());
661 TypeOperations::uninitializedCopy(other.begin(), other.end(), begin());
685 TypeOperations::uninitializedCopy(other.begin() + size(), other.end(), end());
717 TypeOperations::uninitializedCopy(other.begin() + size(), other.end(), end());
787 TypeOperations::uninitializedFill(end(), begin() + newSize, val);
828 TypeOperations::destruct(begin() + size, end());
833 TypeOperations::initialize(end(), begin() + size)
    [all...]
Deque.h 98 typedef VectorTypeOperations<T> TypeOperations;
285 TypeOperations::uninitializedCopy(otherBuffer + m_start, otherBuffer + m_end, m_buffer.buffer() + m_start);
287 TypeOperations::uninitializedCopy(otherBuffer, otherBuffer + m_end, m_buffer.buffer());
288 TypeOperations::uninitializedCopy(otherBuffer + m_start, otherBuffer + m_buffer.capacity(), m_buffer.buffer() + m_start);
315 TypeOperations::destruct(m_buffer.buffer() + m_start, m_buffer.buffer() + m_end);
317 TypeOperations::destruct(m_buffer.buffer(), m_buffer.buffer() + m_end);
318 TypeOperations::destruct(m_buffer.buffer() + m_start, m_buffer.buffer() + m_buffer.capacity());
390 TypeOperations::move(oldBuffer + m_start, oldBuffer + m_end, m_buffer.buffer() + m_start);
392 TypeOperations::move(oldBuffer, oldBuffer + m_end, m_buffer.buffer());
394 TypeOperations::move(oldBuffer + m_start, oldBuffer + oldCapacity, m_buffer.buffer() + newStart)
    [all...]

Completed in 350 milliseconds