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

  /external/webkit/WebCore/svg/
SVGList.h 51 typedef SVGListTypeOperations<Item> TypeOperations;
63 if (TypeOperations::isNull(newItem)) {
65 return TypeOperations::nullItem();
87 return TypeOperations::nullItem();
97 return TypeOperations::nullItem();
105 if (TypeOperations::isNull(newItem)) {
107 return TypeOperations::nullItem();
122 return TypeOperations::nullItem();
125 if (TypeOperations::isNull(newItem)) {
127 return TypeOperations::nullItem()
    [all...]
  /external/webkit/JavaScriptCore/wtf/
Deque.h 91 typedef VectorTypeOperations<T> TypeOperations;
316 TypeOperations::uninitializedCopy(otherBuffer + m_start, otherBuffer + m_end, m_buffer.buffer() + m_start);
318 TypeOperations::uninitializedCopy(otherBuffer, otherBuffer + m_end, m_buffer.buffer());
319 TypeOperations::uninitializedCopy(otherBuffer + m_start, otherBuffer + m_buffer.capacity(), m_buffer.buffer() + m_start);
344 TypeOperations::destruct(m_buffer.buffer() + m_start, m_buffer.buffer() + m_end);
346 TypeOperations::destruct(m_buffer.buffer(), m_buffer.buffer() + m_end);
347 TypeOperations::destruct(m_buffer.buffer() + m_start, m_buffer.buffer() + m_buffer.capacity());
419 TypeOperations::move(oldBuffer + m_start, oldBuffer + m_end, m_buffer.buffer() + m_start);
421 TypeOperations::move(oldBuffer, oldBuffer + m_end, m_buffer.buffer());
423 TypeOperations::move(oldBuffer + m_start, oldBuffer + oldCapacity, m_buffer.buffer() + newStart)
    [all...]
Vector.h 469 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...]

Completed in 583 milliseconds