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 167 static void uninitializedCopy(const U* src, const U* srcEnd, T* dst)
180 static void uninitializedCopy(const T* src, const T* srcEnd, T* dst)
185 static void uninitializedCopy(const U* src, const U* srcEnd, T* dst)
187 VectorCopier<false, T>::uninitializedCopy(src, srcEnd, dst);
270 static void uninitializedCopy(const T* src, const T* srcEnd, T* dst)
272 VectorCopier<VectorTraits<T>::canCopyWithMemcpy, T>::uninitializedCopy(src, srcEnd, dst);
740 TypeOperations::uninitializedCopy(other.begin(), other.end(), begin());
749 TypeOperations::uninitializedCopy(other.begin(), other.end(), begin());
773 TypeOperations::uninitializedCopy(other.begin() + size(), other.end(), end());
805 TypeOperations::uninitializedCopy(other.begin() + size(), other.end(), end())
    [all...]
Deque.h 222 TypeOperations::uninitializedCopy(otherBuffer + m_start, otherBuffer + m_end, m_buffer.buffer() + m_start);
224 TypeOperations::uninitializedCopy(otherBuffer, otherBuffer + m_end, m_buffer.buffer());
225 TypeOperations::uninitializedCopy(otherBuffer + m_start, otherBuffer + m_buffer.capacity(), m_buffer.buffer() + m_start);

Completed in 46 milliseconds