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

/external/chromium_org/third_party/WebKit/Source/wtf/
H A DVector.h489 typedef VectorTypeOperations<T> TypeOperations; typedef in class:WTF::Vector
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
[all...]
H A DDeque.h98 typedef VectorTypeOperations<T> TypeOperations; typedef in class:WTF::Deque
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
[all...]

Completed in 65 milliseconds