Home
last modified time | relevance | path

Searched refs:TypeOperations (Results 1 – 3 of 3) sorted by relevance

/external/webkit/WebCore/svg/
DSVGList.h51 typedef SVGListTypeOperations<Item> TypeOperations; typedef
63 if (TypeOperations::isNull(newItem)) { in initialize()
65 return TypeOperations::nullItem(); in initialize()
87 return TypeOperations::nullItem(); in getItem()
97 return TypeOperations::nullItem(); in getItem()
105 if (TypeOperations::isNull(newItem)) { in insertItemBefore()
107 return TypeOperations::nullItem(); in insertItemBefore()
122 return TypeOperations::nullItem(); in replaceItem()
125 if (TypeOperations::isNull(newItem)) { in replaceItem()
127 return TypeOperations::nullItem(); in replaceItem()
[all …]
/external/webkit/JavaScriptCore/wtf/
DDeque.h91 typedef VectorTypeOperations<T> TypeOperations; typedef
316TypeOperations::uninitializedCopy(otherBuffer + m_start, otherBuffer + m_end, m_buffer.buffer() + … in Deque()
318 TypeOperations::uninitializedCopy(otherBuffer, otherBuffer + m_end, m_buffer.buffer()); in Deque()
319TypeOperations::uninitializedCopy(otherBuffer + m_start, otherBuffer + m_buffer.capacity(), m_buff… in Deque()
344 TypeOperations::destruct(m_buffer.buffer() + m_start, m_buffer.buffer() + m_end); in destroyAll()
346 TypeOperations::destruct(m_buffer.buffer(), m_buffer.buffer() + m_end); in destroyAll()
347TypeOperations::destruct(m_buffer.buffer() + m_start, m_buffer.buffer() + m_buffer.capacity()); in destroyAll()
419TypeOperations::move(oldBuffer + m_start, oldBuffer + m_end, m_buffer.buffer() + m_start); in expandCapacity()
421 TypeOperations::move(oldBuffer, oldBuffer + m_end, m_buffer.buffer()); in expandCapacity()
423TypeOperations::move(oldBuffer + m_start, oldBuffer + oldCapacity, m_buffer.buffer() + newStart); in expandCapacity()
[all …]
DVector.h469 typedef VectorTypeOperations<T> TypeOperations;
487 TypeOperations::initialize(begin(), end());
574 TypeOperations::uninitializedFill(begin(), end(), val);
633 TypeOperations::uninitializedCopy(other.begin(), other.end(), begin());
643 TypeOperations::uninitializedCopy(other.begin(), other.end(), begin());
662 TypeOperations::uninitializedCopy(other.begin() + size(), other.end(), end());
685 TypeOperations::uninitializedCopy(other.begin() + size(), other.end(), end());
715 TypeOperations::uninitializedFill(end(), begin() + newSize, val);
756 TypeOperations::destruct(begin() + size, end());
761 TypeOperations::initialize(end(), begin() + size);
[all …]