OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TypeOperations
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/JavaScriptCore/wtf/
Vector.h
497
typedef VectorTypeOperations<T>
TypeOperations
;
515
TypeOperations
::initialize(begin(), end());
606
TypeOperations
::uninitializedFill(begin(), end(), val);
667
TypeOperations
::uninitializedCopy(other.begin(), other.end(), begin());
677
TypeOperations
::uninitializedCopy(other.begin(), other.end(), begin());
702
TypeOperations
::uninitializedCopy(other.begin() + size(), other.end(), end());
735
TypeOperations
::uninitializedCopy(other.begin() + size(), other.end(), end());
784
TypeOperations
::uninitializedFill(end(), begin() + newSize, val);
845
TypeOperations
::destruct(begin() + size, end());
850
TypeOperations
::initialize(end(), begin() + size)
[
all
...]
Deque.h
93
typedef VectorTypeOperations<T>
TypeOperations
;
322
TypeOperations
::uninitializedCopy(otherBuffer + m_start, otherBuffer + m_end, m_buffer.buffer() + m_start);
324
TypeOperations
::uninitializedCopy(otherBuffer, otherBuffer + m_end, m_buffer.buffer());
325
TypeOperations
::uninitializedCopy(otherBuffer + m_start, otherBuffer + m_buffer.capacity(), m_buffer.buffer() + m_start);
352
TypeOperations
::destruct(m_buffer.buffer() + m_start, m_buffer.buffer() + m_end);
354
TypeOperations
::destruct(m_buffer.buffer(), m_buffer.buffer() + m_end);
355
TypeOperations
::destruct(m_buffer.buffer() + m_start, m_buffer.buffer() + m_buffer.capacity());
427
TypeOperations
::move(oldBuffer + m_start, oldBuffer + m_end, m_buffer.buffer() + m_start);
429
TypeOperations
::move(oldBuffer, oldBuffer + m_end, m_buffer.buffer());
431
TypeOperations
::move(oldBuffer + m_start, oldBuffer + oldCapacity, m_buffer.buffer() + newStart)
[
all
...]
Completed in 2433 milliseconds