|
webkit
2cdf99a9e3038c7e01b3c37e8ad903ecbe5eecf1
https://github.com/WebKit/webkit
|
#include <Forward.h>
Public Types | |
| typedef T | ValueType |
| typedef T * | iterator |
| typedef const T * | const_iterator |
| typedef std::reverse_iterator< iterator > | reverse_iterator |
| typedef std::reverse_iterator< const_iterator > | const_reverse_iterator |
| typedef T | ValueType |
| typedef T * | iterator |
| typedef const T * | const_iterator |
| typedef std::reverse_iterator< iterator > | reverse_iterator |
| typedef std::reverse_iterator< const_iterator > | const_reverse_iterator |
| typedef T | ValueType |
| typedef T * | iterator |
| typedef const T * | const_iterator |
| typedef std::reverse_iterator< iterator > | reverse_iterator |
| typedef std::reverse_iterator< const_iterator > | const_reverse_iterator |
Public Member Functions | |
| Vector () | |
| Vector (size_t size) | |
| Vector (size_t size, const T &val) | |
| Vector (std::initializer_list< T > initializerList) | |
| ~Vector () | |
| Vector (const Vector &) | |
| template<size_t otherCapacity, typename otherOverflowBehaviour , size_t otherMinimumCapacity> | |
| Vector (const Vector< T, otherCapacity, otherOverflowBehaviour, otherMinimumCapacity > &) | |
| Vector & | operator= (const Vector &) |
| template<size_t otherCapacity, typename otherOverflowBehaviour , size_t otherMinimumCapacity> | |
| Vector & | operator= (const Vector< T, otherCapacity, otherOverflowBehaviour, otherMinimumCapacity > &) |
| Vector (Vector &&) | |
| Vector & | operator= (Vector &&) |
| size_t | size () const |
| size_t | capacity () const |
| bool | isEmpty () const |
| T & | at (size_t i) |
| const T & | at (size_t i) const |
| T & | at (Checked< size_t > i) |
| const T & | at (Checked< size_t > i) const |
| T & | operator[] (size_t i) |
| const T & | operator[] (size_t i) const |
| T & | operator[] (Checked< size_t > i) |
| const T & | operator[] (Checked< size_t > i) const |
| T * | data () |
| const T * | data () const |
| iterator | begin () |
| iterator | end () |
| const_iterator | begin () const |
| const_iterator | end () const |
| reverse_iterator | rbegin () |
| reverse_iterator | rend () |
| const_reverse_iterator | rbegin () const |
| const_reverse_iterator | rend () const |
| T & | first () |
| const T & | first () const |
| T & | last () |
| const T & | last () const |
| T | takeLast () |
| template<typename U > | |
| bool | contains (const U &) const |
| template<typename U > | |
| size_t | find (const U &) const |
| template<typename U > | |
| size_t | reverseFind (const U &) const |
| void | shrink (size_t size) |
| void | grow (size_t size) |
| void | resize (size_t size) |
| void | resizeToFit (size_t size) |
| void | reserveCapacity (size_t newCapacity) |
| bool | tryReserveCapacity (size_t newCapacity) |
| void | reserveInitialCapacity (size_t initialCapacity) |
| void | shrinkCapacity (size_t newCapacity) |
| void | shrinkToFit () |
| void | clear () |
| void | append (ValueType &&value) |
| template<typename U > | |
| void | append (U &&) |
| template<typename... Args> | |
| void | constructAndAppend (Args &&...) |
| template<typename... Args> | |
| bool | tryConstructAndAppend (Args &&...) |
| void | uncheckedAppend (ValueType &&value) |
| template<typename U > | |
| void | uncheckedAppend (U &&) |
| template<typename U > | |
| void | append (const U *, size_t) |
| template<typename U , size_t otherCapacity> | |
| void | appendVector (const Vector< U, otherCapacity > &) |
| template<typename U > | |
| bool | tryAppend (const U *, size_t) |
| template<typename U > | |
| void | insert (size_t position, const U *, size_t) |
| template<typename U > | |
| void | insert (size_t position, U &&) |
| template<typename U , size_t c> | |
| void | insertVector (size_t position, const Vector< U, c > &) |
| void | remove (size_t position) |
| void | remove (size_t position, size_t length) |
| template<typename U > | |
| bool | removeFirst (const U &) |
| template<typename MatchFunction > | |
| bool | removeFirstMatching (const MatchFunction &) |
| template<typename U > | |
| unsigned | removeAll (const U &) |
| template<typename MatchFunction > | |
| unsigned | removeAllMatching (const MatchFunction &) |
| void | removeLast () |
| void | fill (const T &, size_t) |
| void | fill (const T &val) |
| template<typename Iterator > | |
| void | appendRange (Iterator start, Iterator end) |
| MallocPtr< T > | releaseBuffer () |
| void | swap (Vector< T, inlineCapacity, OverflowHandler, minCapacity > &other) |
| void | reverse () |
| void | checkConsistency () |
| Vector () | |
| Vector (size_t size) | |
| Vector (size_t size, const T &val) | |
| Vector (std::initializer_list< T > initializerList) | |
| ~Vector () | |
| Vector (const Vector &) | |
| template<size_t otherCapacity, typename otherOverflowBehaviour , size_t otherMinimumCapacity> | |
| Vector (const Vector< T, otherCapacity, otherOverflowBehaviour, otherMinimumCapacity > &) | |
| Vector & | operator= (const Vector &) |
| template<size_t otherCapacity, typename otherOverflowBehaviour , size_t otherMinimumCapacity> | |
| Vector & | operator= (const Vector< T, otherCapacity, otherOverflowBehaviour, otherMinimumCapacity > &) |
| Vector (Vector &&) | |
| Vector & | operator= (Vector &&) |
| size_t | size () const |
| size_t | capacity () const |
| bool | isEmpty () const |
| T & | at (size_t i) |
| const T & | at (size_t i) const |
| T & | at (Checked< size_t > i) |
| const T & | at (Checked< size_t > i) const |
| T & | operator[] (size_t i) |
| const T & | operator[] (size_t i) const |
| T & | operator[] (Checked< size_t > i) |
| const T & | operator[] (Checked< size_t > i) const |
| T * | data () |
| const T * | data () const |
| iterator | begin () |
| iterator | end () |
| const_iterator | begin () const |
| const_iterator | end () const |
| reverse_iterator | rbegin () |
| reverse_iterator | rend () |
| const_reverse_iterator | rbegin () const |
| const_reverse_iterator | rend () const |
| T & | first () |
| const T & | first () const |
| T & | last () |
| const T & | last () const |
| T | takeLast () |
| template<typename U > | |
| bool | contains (const U &) const |
| template<typename U > | |
| size_t | find (const U &) const |
| template<typename U > | |
| size_t | reverseFind (const U &) const |
| void | shrink (size_t size) |
| void | grow (size_t size) |
| void | resize (size_t size) |
| void | resizeToFit (size_t size) |
| void | reserveCapacity (size_t newCapacity) |
| bool | tryReserveCapacity (size_t newCapacity) |
| void | reserveInitialCapacity (size_t initialCapacity) |
| void | shrinkCapacity (size_t newCapacity) |
| void | shrinkToFit () |
| void | clear () |
| void | append (ValueType &&value) |
| template<typename U > | |
| void | append (U &&) |
| template<typename... Args> | |
| void | constructAndAppend (Args &&...) |
| template<typename... Args> | |
| bool | tryConstructAndAppend (Args &&...) |
| void | uncheckedAppend (ValueType &&value) |
| template<typename U > | |
| void | uncheckedAppend (U &&) |
| template<typename U > | |
| void | append (const U *, size_t) |
| template<typename U , size_t otherCapacity> | |
| void | appendVector (const Vector< U, otherCapacity > &) |
| template<typename U > | |
| bool | tryAppend (const U *, size_t) |
| template<typename U > | |
| void | insert (size_t position, const U *, size_t) |
| template<typename U > | |
| void | insert (size_t position, U &&) |
| template<typename U , size_t c> | |
| void | insertVector (size_t position, const Vector< U, c > &) |
| void | remove (size_t position) |
| void | remove (size_t position, size_t length) |
| template<typename U > | |
| bool | removeFirst (const U &) |
| template<typename MatchFunction > | |
| bool | removeFirstMatching (const MatchFunction &) |
| template<typename U > | |
| unsigned | removeAll (const U &) |
| template<typename MatchFunction > | |
| unsigned | removeAllMatching (const MatchFunction &) |
| void | removeLast () |
| void | fill (const T &, size_t) |
| void | fill (const T &val) |
| template<typename Iterator > | |
| void | appendRange (Iterator start, Iterator end) |
| MallocPtr< T > | releaseBuffer () |
| void | swap (Vector< T, inlineCapacity, OverflowHandler, minCapacity > &other) |
| void | reverse () |
| void | checkConsistency () |
| Vector () | |
| Vector (size_t size) | |
| Vector (size_t size, const T &val) | |
| Vector (std::initializer_list< T > initializerList) | |
| ~Vector () | |
| Vector (const Vector &) | |
| template<size_t otherCapacity, typename otherOverflowBehaviour , size_t otherMinimumCapacity> | |
| Vector (const Vector< T, otherCapacity, otherOverflowBehaviour, otherMinimumCapacity > &) | |
| Vector & | operator= (const Vector &) |
| template<size_t otherCapacity, typename otherOverflowBehaviour , size_t otherMinimumCapacity> | |
| Vector & | operator= (const Vector< T, otherCapacity, otherOverflowBehaviour, otherMinimumCapacity > &) |
| Vector (Vector &&) | |
| Vector & | operator= (Vector &&) |
| size_t | size () const |
| size_t | capacity () const |
| bool | isEmpty () const |
| T & | at (size_t i) |
| const T & | at (size_t i) const |
| T & | at (Checked< size_t > i) |
| const T & | at (Checked< size_t > i) const |
| T & | operator[] (size_t i) |
| const T & | operator[] (size_t i) const |
| T & | operator[] (Checked< size_t > i) |
| const T & | operator[] (Checked< size_t > i) const |
| T * | data () |
| const T * | data () const |
| iterator | begin () |
| iterator | end () |
| const_iterator | begin () const |
| const_iterator | end () const |
| reverse_iterator | rbegin () |
| reverse_iterator | rend () |
| const_reverse_iterator | rbegin () const |
| const_reverse_iterator | rend () const |
| T & | first () |
| const T & | first () const |
| T & | last () |
| const T & | last () const |
| T | takeLast () |
| template<typename U > | |
| bool | contains (const U &) const |
| template<typename U > | |
| size_t | find (const U &) const |
| template<typename U > | |
| size_t | reverseFind (const U &) const |
| void | shrink (size_t size) |
| void | grow (size_t size) |
| void | resize (size_t size) |
| void | resizeToFit (size_t size) |
| void | reserveCapacity (size_t newCapacity) |
| bool | tryReserveCapacity (size_t newCapacity) |
| void | reserveInitialCapacity (size_t initialCapacity) |
| void | shrinkCapacity (size_t newCapacity) |
| void | shrinkToFit () |
| void | clear () |
| void | append (ValueType &&value) |
| template<typename U > | |
| void | append (U &&) |
| template<typename... Args> | |
| void | constructAndAppend (Args &&...) |
| template<typename... Args> | |
| bool | tryConstructAndAppend (Args &&...) |
| void | uncheckedAppend (ValueType &&value) |
| template<typename U > | |
| void | uncheckedAppend (U &&) |
| template<typename U > | |
| void | append (const U *, size_t) |
| template<typename U , size_t otherCapacity> | |
| void | appendVector (const Vector< U, otherCapacity > &) |
| template<typename U > | |
| bool | tryAppend (const U *, size_t) |
| template<typename U > | |
| void | insert (size_t position, const U *, size_t) |
| template<typename U > | |
| void | insert (size_t position, U &&) |
| template<typename U , size_t c> | |
| void | insertVector (size_t position, const Vector< U, c > &) |
| void | remove (size_t position) |
| void | remove (size_t position, size_t length) |
| template<typename U > | |
| bool | removeFirst (const U &) |
| template<typename MatchFunction > | |
| bool | removeFirstMatching (const MatchFunction &) |
| template<typename U > | |
| unsigned | removeAll (const U &) |
| template<typename MatchFunction > | |
| unsigned | removeAllMatching (const MatchFunction &) |
| void | removeLast () |
| void | fill (const T &, size_t) |
| void | fill (const T &val) |
| template<typename Iterator > | |
| void | appendRange (Iterator start, Iterator end) |
| MallocPtr< T > | releaseBuffer () |
| void | swap (Vector< T, inlineCapacity, OverflowHandler, minCapacity > &other) |
| void | reverse () |
| void | checkConsistency () |
| template<size_t otherCapacity, typename otherOverflowBehaviour , size_t otherMinimumCapacity> | |
| Vector< T, inlineCapacity, OverflowHandler, minCapacity > & | operator= (const Vector< T, otherCapacity, otherOverflowBehaviour, otherMinimumCapacity > &other) |
| template<typename U > | |
| ALWAYS_INLINE void | append (U &&value) |
| template<typename... Args> | |
| ALWAYS_INLINE void | constructAndAppend (Args &&... args) |
| template<typename... Args> | |
| ALWAYS_INLINE bool | tryConstructAndAppend (Args &&... args) |
| template<typename... Args> | |
| void | constructAndAppendSlowCase (Args &&... args) |
| template<typename... Args> | |
| bool | tryConstructAndAppendSlowCase (Args &&... args) |
Static Public Member Functions | |
| static ptrdiff_t | sizeMemoryOffset () |
| static ptrdiff_t | dataMemoryOffset () |
| static ptrdiff_t | sizeMemoryOffset () |
| static ptrdiff_t | dataMemoryOffset () |
| static ptrdiff_t | sizeMemoryOffset () |
| static ptrdiff_t | dataMemoryOffset () |
| typedef const T* WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::const_iterator |
| typedef const T* WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::const_iterator |
| typedef const T* WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::const_iterator |
| typedef std::reverse_iterator<const_iterator> WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::const_reverse_iterator |
| typedef std::reverse_iterator<const_iterator> WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::const_reverse_iterator |
| typedef std::reverse_iterator<const_iterator> WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::const_reverse_iterator |
| typedef T* WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::iterator |
| typedef T* WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::iterator |
| typedef T* WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::iterator |
| typedef std::reverse_iterator<iterator> WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::reverse_iterator |
| typedef std::reverse_iterator<iterator> WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::reverse_iterator |
| typedef std::reverse_iterator<iterator> WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::reverse_iterator |
| typedef T WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::ValueType |
| typedef T WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::ValueType |
| typedef T WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::ValueType |
|
inline |
|
inlineexplicit |
|
inline |
|
inline |
|
inline |
| WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::Vector | ( | const Vector< T, inlineCapacity, OverflowHandler, minCapacity > & | other | ) |
|
explicit |
| WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::Vector | ( | Vector< T, inlineCapacity, OverflowHandler, minCapacity > && | ) |
|
inline |
|
inlineexplicit |
|
inline |
|
inline |
|
inline |
| WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::Vector | ( | const Vector< T, inlineCapacity, OverflowHandler, minCapacity > & | ) |
|
explicit |
| WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::Vector | ( | Vector< T, inlineCapacity, OverflowHandler, minCapacity > && | ) |
|
inline |
|
inlineexplicit |
|
inline |
|
inline |
|
inline |
| WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::Vector | ( | const Vector< T, inlineCapacity, OverflowHandler, minCapacity > & | ) |
|
explicit |
| WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::Vector | ( | Vector< T, inlineCapacity, OverflowHandler, minCapacity > && | ) |
|
inline |
|
inline |
|
inline |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::append | ( | U && | ) |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::append | ( | U && | ) |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::append | ( | U && | ) |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::append | ( | const U * | , |
| size_t | |||
| ) |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::append | ( | const U * | data, |
| size_t | dataSize | ||
| ) |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::append | ( | const U * | , |
| size_t | |||
| ) |
| ALWAYS_INLINE void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::append | ( | U && | value | ) |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::appendRange | ( | Iterator | start, |
| Iterator | end | ||
| ) |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::appendRange | ( | Iterator | start, |
| Iterator | end | ||
| ) |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::appendRange | ( | Iterator | start, |
| Iterator | end | ||
| ) |
|
inline |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::appendVector | ( | const Vector< U, otherCapacity > & | ) |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::appendVector | ( | const Vector< U, otherCapacity > & | ) |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::checkConsistency | ( | ) |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::checkConsistency | ( | ) |
|
inline |
|
inline |
|
inline |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::constructAndAppend | ( | Args && | ... | ) |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::constructAndAppend | ( | Args && | ... | ) |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::constructAndAppend | ( | Args && | ... | ) |
| ALWAYS_INLINE void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::constructAndAppend | ( | Args &&... | args | ) |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::constructAndAppendSlowCase | ( | Args &&... | args | ) |
| bool WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::contains | ( | const U & | value | ) | const |
| bool WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::contains | ( | const U & | ) | const |
| bool WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::contains | ( | const U & | ) | const |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inlinestatic |
|
inlinestatic |
|
inlinestatic |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::fill | ( | const T & | val, |
| size_t | newSize | ||
| ) |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::fill | ( | const T & | , |
| size_t | |||
| ) |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::fill | ( | const T & | , |
| size_t | |||
| ) |
|
inline |
|
inline |
|
inline |
| size_t WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::find | ( | const U & | value | ) | const |
| size_t WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::find | ( | const U & | ) | const |
| size_t WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::find | ( | const U & | ) | const |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::grow | ( | size_t | size | ) |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::grow | ( | size_t | size | ) |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::grow | ( | size_t | size | ) |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::insert | ( | size_t | position, |
| const U * | , | ||
| size_t | |||
| ) |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::insert | ( | size_t | position, |
| const U * | data, | ||
| size_t | dataSize | ||
| ) |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::insert | ( | size_t | position, |
| const U * | , | ||
| size_t | |||
| ) |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::insert | ( | size_t | position, |
| U && | |||
| ) |
|
inline |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::insert | ( | size_t | position, |
| U && | |||
| ) |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::insertVector | ( | size_t | position, |
| const Vector< U, c > & | |||
| ) |
|
inline |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::insertVector | ( | size_t | position, |
| const Vector< U, c > & | |||
| ) |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
| Vector& WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::operator= | ( | const Vector< T, inlineCapacity, OverflowHandler, minCapacity > & | ) |
| Vector& WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::operator= | ( | const Vector< T, inlineCapacity, OverflowHandler, minCapacity > & | ) |
| Vector& WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::operator= | ( | const Vector< T, inlineCapacity, OverflowHandler, minCapacity > & | ) |
| Vector& WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::operator= | ( | const Vector< T, otherCapacity, otherOverflowBehaviour, otherMinimumCapacity > & | ) |
| Vector& WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::operator= | ( | const Vector< T, otherCapacity, otherOverflowBehaviour, otherMinimumCapacity > & | ) |
| Vector& WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::operator= | ( | const Vector< T, otherCapacity, otherOverflowBehaviour, otherMinimumCapacity > & | ) |
| Vector& WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::operator= | ( | Vector< T, inlineCapacity, OverflowHandler, minCapacity > && | ) |
| Vector& WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::operator= | ( | Vector< T, inlineCapacity, OverflowHandler, minCapacity > && | ) |
| Vector& WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::operator= | ( | Vector< T, inlineCapacity, OverflowHandler, minCapacity > && | ) |
| Vector< T, inlineCapacity, OverflowHandler, minCapacity > & WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::operator= | ( | const Vector< T, otherCapacity, otherOverflowBehaviour, otherMinimumCapacity > & | other | ) |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
| MallocPtr<T> WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::releaseBuffer | ( | ) |
| MallocPtr<T> WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::releaseBuffer | ( | ) |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::remove | ( | size_t | position | ) |
|
inline |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::remove | ( | size_t | position | ) |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::remove | ( | size_t | position, |
| size_t | length | ||
| ) |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::remove | ( | size_t | position, |
| size_t | length | ||
| ) |
|
inline |
| unsigned WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::removeAll | ( | const U & | ) |
| unsigned WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::removeAll | ( | const U & | ) |
|
inline |
| unsigned WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::removeAllMatching | ( | const MatchFunction & | ) |
| unsigned WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::removeAllMatching | ( | const MatchFunction & | ) |
|
inline |
| bool WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::removeFirst | ( | const U & | ) |
| bool WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::removeFirst | ( | const U & | ) |
|
inline |
| bool WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::removeFirstMatching | ( | const MatchFunction & | ) |
| bool WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::removeFirstMatching | ( | const MatchFunction & | ) |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::reserveCapacity | ( | size_t | newCapacity | ) |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::reserveCapacity | ( | size_t | newCapacity | ) |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::reserveCapacity | ( | size_t | newCapacity | ) |
|
inline |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::reserveInitialCapacity | ( | size_t | initialCapacity | ) |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::reserveInitialCapacity | ( | size_t | initialCapacity | ) |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::resize | ( | size_t | size | ) |
|
inline |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::resize | ( | size_t | size | ) |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::resizeToFit | ( | size_t | size | ) |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::resizeToFit | ( | size_t | size | ) |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::resizeToFit | ( | size_t | size | ) |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::reverse | ( | ) |
|
inline |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::reverse | ( | ) |
| size_t WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::reverseFind | ( | const U & | value | ) | const |
| size_t WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::reverseFind | ( | const U & | ) | const |
| size_t WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::reverseFind | ( | const U & | ) | const |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::shrink | ( | size_t | size | ) |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::shrink | ( | size_t | size | ) |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::shrink | ( | size_t | size | ) |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::shrinkCapacity | ( | size_t | newCapacity | ) |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::shrinkCapacity | ( | size_t | newCapacity | ) |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::shrinkCapacity | ( | size_t | newCapacity | ) |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inlinestatic |
|
inlinestatic |
|
inlinestatic |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
| bool WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::tryAppend | ( | const U * | , |
| size_t | |||
| ) |
| bool WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::tryAppend | ( | const U * | , |
| size_t | |||
| ) |
| bool WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::tryAppend | ( | const U * | data, |
| size_t | dataSize | ||
| ) |
| bool WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::tryConstructAndAppend | ( | Args && | ... | ) |
| bool WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::tryConstructAndAppend | ( | Args && | ... | ) |
| bool WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::tryConstructAndAppend | ( | Args && | ... | ) |
| ALWAYS_INLINE bool WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::tryConstructAndAppend | ( | Args &&... | args | ) |
| bool WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::tryConstructAndAppendSlowCase | ( | Args &&... | args | ) |
| bool WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::tryReserveCapacity | ( | size_t | newCapacity | ) |
| bool WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::tryReserveCapacity | ( | size_t | newCapacity | ) |
| bool WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::tryReserveCapacity | ( | size_t | newCapacity | ) |
|
inline |
|
inline |
|
inline |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::uncheckedAppend | ( | U && | ) |
|
inline |
| void WTF::Vector< T, inlineCapacity, OverflowHandler, minCapacity >::uncheckedAppend | ( | U && | ) |
1.8.13