#include "BALBase.h"
#include <algorithm>
#include <wtf/Assertions.h>
#include <wtf/Noncopyable.h>
Namespaces | |
| namespace | WTF |
Classes | |
| struct | WTF::WTF::OwnPtrRemovePointer< T * > |
| class | WTF::OwnPtr< T > |
Functions | |
| template<typename T> | |
| void | WTF::deleteOwnedPtr (T *ptr) |
| deleteOwnedPtr description | |
| template<typename T> | |
| void | WTF::swap (OwnPtr< T > &a, OwnPtr< T > &b) |
| swap description | |
| template<typename T, typename U> | |
| bool | WTF::operator== (const OwnPtr< T > &a, U *b) |
| operator== description | |
| template<typename T, typename U> | |
| bool | WTF::operator== (T *a, const OwnPtr< U > &b) |
| operator== description | |
| template<typename T, typename U> | |
| bool | WTF::operator!= (const OwnPtr< T > &a, U *b) |
| operator!= description | |
| template<typename T, typename U> | |
| bool | WTF::operator!= (T *a, const OwnPtr< U > &b) |
| operator!= description | |
| template<typename T> | |
| OwnPtr< T >::PtrType | WTF::getPtr (const OwnPtr< T > &p) |
| getPtr description | |