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

  /external/chromium_org/third_party/WebKit/Source/wtf/
Vector.h 140 static void uninitializedCopy(const T* src, const T* srcEnd, T* dst)
153 static void uninitializedCopy(const T* src, const T* srcEnd, T* dst)
234 static void uninitializedCopy(const T* src, const T* srcEnd, T* dst)
236 VectorCopier<VectorTraits<T>::canCopyWithMemcpy, T>::uninitializedCopy(src, srcEnd, dst);
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());
    [all...]
Deque.h 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);

Completed in 1536 milliseconds