Searched refs:OwnPtr (Results 1 - 25 of 280) sorted by relevance

1234567891011>>

/macosx-10.10/WTF-7600.1.24/wtf/
H A DOwnPtr.h36 template<typename T> class OwnPtr { class in namespace:WTF
41 OwnPtr() : m_ptr(0) { } function in class:WTF::OwnPtr
42 OwnPtr(std::nullptr_t) : m_ptr(0) { } function in class:WTF::OwnPtr
45 template<typename U> OwnPtr(const PassOwnPtr<U>& o);
47 ~OwnPtr() { deleteOwnedPtr(m_ptr); }
61 typedef PtrType OwnPtr::*UnspecifiedBoolType;
62 operator UnspecifiedBoolType() const { return m_ptr ? &OwnPtr::m_ptr : 0; }
64 OwnPtr& operator=(const PassOwnPtr<T>&);
65 OwnPtr& operator=(std::nullptr_t) { clear(); return *this; }
66 template<typename U> OwnPtr
77 explicit OwnPtr(PtrType ptr) : m_ptr(ptr) { } function in class:WTF::OwnPtr
81 operator ==(const OwnPtr<U>&) argument
82 operator !=(const OwnPtr<U>&) argument
89 template<typename T> template<typename U> inline OwnPtr<T>::OwnPtr(const PassOwnPtr<U>& o) function in class:WTF::OwnPtr
133 template<typename T> inline OwnPtr<T>::OwnPtr(OwnPtr<T>&& o) function in class:WTF::OwnPtr
138 template<typename T> template<typename U> inline OwnPtr<T>::OwnPtr(OwnPtr<U>&& o) function in class:WTF::OwnPtr
[all...]
H A DSizeLimits.cpp36 #include <wtf/OwnPtr.h>
73 static_assert(sizeof(OwnPtr<int>) == sizeof(int*), "OwnPtr should stay small!");
/macosx-10.10/JavaScriptCore-7600.1.17/ftl/
H A DFTLJITFinalizer.h51 OwnPtr<LinkBuffer> exitThunksLinkBuffer;
52 OwnPtr<LinkBuffer> entrypointLinkBuffer;
53 OwnPtr<LinkBuffer> sideCodeLinkBuffer;
54 OwnPtr<LinkBuffer> handleExceptionsLinkBuffer;
/macosx-10.10/JavaScriptCore-7600.1.17/heap/
H A DGCThread.h31 #include <wtf/OwnPtr.h>
57 OwnPtr<SlotVisitor> m_slotVisitor;
58 OwnPtr<CopyVisitor> m_copyVisitor;
/macosx-10.10/WebCore-7600.1.25/bindings/generic/
H A DActiveDOMCallback.h35 #include <wtf/OwnPtr.h>
/macosx-10.10/WebCore-7600.1.25/platform/graphics/ca/mac/
H A DWebTiledBackingLayer.h30 #import <wtf/OwnPtr.h>
40 OwnPtr<WebCore::TileController> _tileController;
/macosx-10.10/WebCore-7600.1.25/platform/graphics/win/
H A DFullScreenController.h31 #include <wtf/OwnPtr.h>
57 OwnPtr<FullScreenController::Private> m_private;
/macosx-10.10/WebKit-7600.1.25/mac/WebView/
H A DWebDeviceOrientationProviderMockInternal.h29 #import <wtf/OwnPtr.h>
32 OwnPtr<WebCore::DeviceOrientationClientMock> m_core;
/macosx-10.10/WebCore-7600.1.25/platform/
H A DThreadGlobalData.h33 #include <wtf/OwnPtr.h>
75 OwnPtr<CachedResourceRequestInitiators> m_cachedResourceRequestInitiators;
76 OwnPtr<EventNames> m_eventNames;
77 OwnPtr<ThreadTimers> m_threadTimers;
87 OwnPtr<ICUConverterWrapper> m_cachedConverterICU;
90 OwnPtr<TECConverterWrapper> m_cachedConverterTEC;
/macosx-10.10/WebKit2-7600.1.25/Shared/Scrolling/
H A DRemoteScrollingCoordinatorTransaction.h30 #include <wtf/OwnPtr.h>
45 OwnPtr<WebCore::ScrollingStateTree>& scrollingStateTree() { return m_scrollingStateTree; }
60 OwnPtr<WebCore::ScrollingStateTree> m_scrollingStateTree;
/macosx-10.10/WebCore-7600.1.25/bridge/c/
H A Dc_class.h51 mutable HashMap<RefPtr<StringImpl>, OwnPtr<Method>> m_methods;
52 mutable HashMap<RefPtr<StringImpl>, OwnPtr<Field>> m_fields;
/macosx-10.10/WebCore-7600.1.25/bridge/objc/
H A Dobjc_class.h53 mutable HashMap<String, OwnPtr<Method>> m_methodCache;
54 mutable HashMap<String, OwnPtr<Field>> m_fieldCache;
/macosx-10.10/WebCore-7600.1.25/platform/image-decoders/bmp/
H A DBMPImageDecoder.h35 #include <wtf/OwnPtr.h>
80 OwnPtr<BMPImageReader> m_reader;
/macosx-10.10/JavaScriptCore-7600.1.17/bytecode/
H A DStructureStubClearingWatchpoint.h35 #include <wtf/OwnPtr.h>
68 OwnPtr<StructureStubClearingWatchpoint>& head);
75 OwnPtr<StructureStubClearingWatchpoint> m_next;
100 OwnPtr<StructureStubClearingWatchpoint> m_head;
/macosx-10.10/WebCore-7600.1.25/platform/graphics/cairo/
H A DOwnPtrCairo.h23 #include <wtf/OwnPtr.h>
/macosx-10.10/JavaScriptCore-7600.1.17/runtime/
H A DVM.h227 OwnPtr<DFG::LongLivedState> dfgState;
235 const OwnPtr<const HashTable> arrayConstructorTable;
236 const OwnPtr<const HashTable> arrayPrototypeTable;
237 const OwnPtr<const HashTable> booleanPrototypeTable;
238 const OwnPtr<const HashTable> dataViewTable;
239 const OwnPtr<const HashTable> dateTable;
240 const OwnPtr<const HashTable> dateConstructorTable;
241 const OwnPtr<const HashTable> errorPrototypeTable;
242 const OwnPtr<const HashTable> globalObjectTable;
243 const OwnPtr<cons
[all...]
/macosx-10.10/WebCore-7600.1.25/loader/icon/
H A DIconDatabase.h234 OwnPtr<SQLiteStatement> m_setIconIDForPageURLStatement;
235 OwnPtr<SQLiteStatement> m_removePageURLStatement;
236 OwnPtr<SQLiteStatement> m_getIconIDForIconURLStatement;
237 OwnPtr<SQLiteStatement> m_getImageDataForIconURLStatement;
238 OwnPtr<SQLiteStatement> m_addIconToIconInfoStatement;
239 OwnPtr<SQLiteStatement> m_addIconToIconDataStatement;
240 OwnPtr<SQLiteStatement> m_getImageDataStatement;
241 OwnPtr<SQLiteStatement> m_deletePageURLsForIconURLStatement;
242 OwnPtr<SQLiteStatement> m_deleteIconFromIconInfoStatement;
243 OwnPtr<SQLiteStatemen
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/jit/
H A DJITThunks.h39 #include <wtf/OwnPtr.h>
72 OwnPtr<HostFunctionStubMap> m_hostFunctionStubMap;
/macosx-10.10/WebCore-7600.1.25/Modules/websockets/
H A DWebSocketExtensionDispatcher.h37 #include <wtf/OwnPtr.h>
61 Vector<OwnPtr<WebSocketExtensionProcessor>> m_processors;
/macosx-10.10/WebCore-7600.1.25/platform/graphics/gpu/
H A DTexture.h35 #include <wtf/OwnPtr.h>
61 OwnPtr<Vector<unsigned int>> m_tileTextureIds;
/macosx-10.10/WebCore-7600.1.25/platform/image-decoders/jpeg/
H A DJPEGImageDecoder.h32 #include <wtf/OwnPtr.h>
91 OwnPtr<JPEGImageReader> m_reader;
/macosx-10.10/WebCore-7600.1.25/platform/image-decoders/png/
H A DPNGImageDecoder.h30 #include <wtf/OwnPtr.h>
68 OwnPtr<PNGImageReader> m_reader;
/macosx-10.10/WebKit-7600.1.25/win/
H A DWebElementPropertyBag.h30 #include <wtf/OwnPtr.h>
62 OwnPtr<WebCore::HitTestResult> m_result;
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/gtk/
H A DWebKitTextChecker.h27 #include <wtf/OwnPtr.h>
57 OwnPtr<WebCore::TextCheckerEnchant> m_textChecker;
/macosx-10.10/WebKit2-7600.1.25/UIProcess/
H A DBackingStore.h35 #include <wtf/OwnPtr.h>
70 OwnPtr<WebCore::WidgetBackingStore> m_backingStore;

Completed in 521 milliseconds

1234567891011>>