Searched refs:RefPtr (Results 1 - 25 of 2497) sorted by relevance

1234567891011>>

/macosx-10.10/WebCore-7600.1.25/page/
H A DDragState.h37 RefPtr<Element> source; // Element that may be a drag source, for the current mouse gesture.
40 RefPtr<DataTransfer> dataTransfer; // Used on only the source side of dragging.
H A DUserMessageHandlerDescriptorTypes.h32 #include <wtf/RefPtr.h>
41 typedef HashMap<std::pair<AtomicString, RefPtr<DOMWrapperWorld>>, RefPtr<UserMessageHandlerDescriptor>> UserMessageHandlerDescriptorMap;
H A DPageGroupLoadDeferrer.h23 #include <wtf/RefPtr.h>
38 Vector<RefPtr<Frame>, 16> m_deferredFrames;
/macosx-10.10/WebCore-7600.1.25/css/
H A DCSSFontValue.h26 #include <wtf/RefPtr.h>
44 RefPtr<CSSPrimitiveValue> style;
45 RefPtr<CSSPrimitiveValue> variant;
46 RefPtr<CSSPrimitiveValue> weight;
47 RefPtr<CSSPrimitiveValue> size;
48 RefPtr<CSSPrimitiveValue> lineHeight;
49 RefPtr<CSSValueList> family;
H A DInspectorCSSOMWrappers.h29 #include <wtf/RefPtr.h>
51 void collectFromStyleSheetContents(HashSet<RefPtr<CSSStyleSheet>>& sheetWrapperSet, StyleSheetContents*);
52 void collectFromStyleSheets(const Vector<RefPtr<CSSStyleSheet>>&);
55 HashMap<StyleRule*, RefPtr<CSSStyleRule>> m_styleRuleToCSSOMWrapperMap;
56 HashSet<RefPtr<CSSStyleSheet>> m_styleSheetCSSOMWrapperSet;
H A DCSSShadowValue.h26 #include <wtf/RefPtr.h>
49 RefPtr<CSSPrimitiveValue> x;
50 RefPtr<CSSPrimitiveValue> y;
51 RefPtr<CSSPrimitiveValue> blur;
52 RefPtr<CSSPrimitiveValue> spread;
53 RefPtr<CSSPrimitiveValue> style;
54 RefPtr<CSSPrimitiveValue> color;
/macosx-10.10/WTF-7600.1.24/wtf/
H A DRefPtr.h21 // RefPtr and PassRefPtr are documented at http://webkit.org/coding/RefPtr.html
35 template<typename T> class RefPtr { class in namespace:WTF
38 ALWAYS_INLINE RefPtr() : m_ptr(nullptr) { } function in class:WTF::RefPtr
39 ALWAYS_INLINE RefPtr(T* ptr) : m_ptr(ptr) { refIfNotNull(ptr); } function in class:WTF::RefPtr
40 ALWAYS_INLINE RefPtr(const RefPtr& o) : m_ptr(o.m_ptr) { refIfNotNull(m_ptr); } function in class:WTF::RefPtr
41 template<typename U> RefPtr(const RefPtr<U>& o) : m_ptr(o.get()) { refIfNotNull(m_ptr); } function in class:WTF::RefPtr
43 ALWAYS_INLINE RefPtr(RefPt function in class:WTF::RefPtr
44 template<typename U> RefPtr(RefPtr<U>&& o) : m_ptr(o.release().leakRef()) { } function in class:WTF::RefPtr
52 RefPtr(HashTableDeletedValueType) : m_ptr(hashTableDeletedValue()) { } function in class:WTF::RefPtr
89 template<typename T> template<typename U> inline RefPtr<T>::RefPtr(const PassRefPtr<U>& o) function in class:WTF::RefPtr
94 template<typename T> template<typename U> inline RefPtr<T>::RefPtr(PassRef<U>&& reference) function in class:WTF::RefPtr
[all...]
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/Cocoa/
H A DWKPreferencesInternal.h30 #import <wtf/RefPtr.h>
38 RefPtr<WebKit::WebPreferences> _preferences;
H A DWKUserContentControllerInternal.h30 #import <wtf/RefPtr.h>
38 RefPtr<WebKit::WebUserContentControllerProxy> _userContentControllerProxy;
H A D_WKVisitedLinkProviderInternal.h30 #import <wtf/RefPtr.h>
38 RefPtr<WebKit::VisitedLinkProvider> _visitedLinkProvider;
/macosx-10.10/WebCore-7600.1.25/Modules/mediastream/
H A DMediaStreamCapabilities.h45 static RefPtr<MediaStreamCapabilities> create(PassRefPtr<MediaStreamSourceCapabilities>);
50 virtual RefPtr<CapabilityRange> width() const;
51 virtual RefPtr<CapabilityRange> height() const;
52 virtual RefPtr<CapabilityRange> frameRate() const;
53 virtual RefPtr<CapabilityRange> aspectRatio() const;
55 virtual RefPtr<CapabilityRange> volume() const;
62 RefPtr<MediaStreamSourceCapabilities> m_SourceCapabilities;
H A DMediaStreamTrackSourcesRequest.h34 #include <wtf/RefPtr.h>
52 virtual void didCompleteRequest(const Vector<RefPtr<TrackSourceInfo>>&) override;
57 RefPtr<MediaStreamTrackSourcesCallback> m_callback;
58 Vector<RefPtr<SourceInfo>> m_sourceInfos;
/macosx-10.10/WebCore-7600.1.25/Modules/speech/
H A DSpeechRecognitionResultList.h39 static PassRefPtr<SpeechRecognitionResultList> create(const Vector<RefPtr<SpeechRecognitionResult> >&);
45 explicit SpeechRecognitionResultList(const Vector<RefPtr<SpeechRecognitionResult> >&);
47 Vector<RefPtr<SpeechRecognitionResult> > m_results;
H A DSpeechRecognitionResultList.cpp34 PassRefPtr<SpeechRecognitionResultList> SpeechRecognitionResultList::create(const Vector<RefPtr<SpeechRecognitionResult> >& results)
47 SpeechRecognitionResultList::SpeechRecognitionResultList(const Vector<RefPtr<SpeechRecognitionResult> >& results)
/macosx-10.10/WebCore-7600.1.25/loader/archive/
H A DArchive.cpp40 Vector<RefPtr<Archive>> clearedArchives;
44 void Archive::clearAllSubframeArchivesImpl(Vector<RefPtr<Archive>>* clearedArchives)
46 for (Vector<RefPtr<Archive>>::iterator it = m_subframeArchives.begin(); it != m_subframeArchives.end(); ++it) {
/macosx-10.10/WebCore-7600.1.25/platform/cairo/
H A DWidgetBackingStoreCairo.h23 #include <wtf/RefPtr.h>
37 RefPtr<cairo_surface_t> m_surface;
38 RefPtr<cairo_surface_t> m_scrollSurface;
/macosx-10.10/WebCore-7600.1.25/platform/graphics/wince/
H A DImageBufferDataWince.h29 RefPtr<SharedBitmap> m_bitmap;
/macosx-10.10/WebCore-7600.1.25/Modules/indexeddb/
H A DIDBEventDispatcher.h34 #include <wtf/RefPtr.h>
44 static bool dispatch(Event*, Vector<RefPtr<EventTarget>>&); // The target first and then its ancestors in order of how the event bubbles.
H A DIDBPendingDeleteCall.h30 #include <wtf/RefPtr.h>
46 RefPtr<IDBCallbacks> m_callbacks;
/macosx-10.10/WebCore-7600.1.25/dom/
H A DUserTypingGestureIndicator.h30 #include <wtf/RefPtr.h>
48 RefPtr<Node> m_previousFocusedNode;
/macosx-10.10/WebKit-7600.1.25/mac/WebCoreSupport/
H A DWebKitFullScreenListener.h30 #import <wtf/RefPtr.h>
39 RefPtr<WebCore::Element> _element;
/macosx-10.10/WebKit2-7600.1.25/Shared/
H A DAPIPageHandle.h30 #include <wtf/RefPtr.h>
36 static RefPtr<PageHandle> create(uint64_t pageID);
H A DUserData.h30 #include <wtf/RefPtr.h>
48 static RefPtr<API::Object> transform(API::Object*, const std::function<RefPtr<API::Object> (const API::Object&)> transformer);
59 static bool decode(IPC::ArgumentDecoder&, RefPtr<API::Object>&);
61 RefPtr<API::Object> m_object;
/macosx-10.10/WebKit2-7600.1.25/Shared/mac/
H A DObjCObjectGraphCoders.h32 #include <wtf/RefPtr.h>
51 explicit WebContextObjCObjectGraphDecoder(RefPtr<ObjCObjectGraph>&, WebProcessProxy&);
55 RefPtr<ObjCObjectGraph>& m_objectGraph;
72 explicit InjectedBundleObjCObjectGraphDecoder(RefPtr<ObjCObjectGraph>&, WebProcess&);
76 RefPtr<ObjCObjectGraph>& m_objectGraph;
/macosx-10.10/WebCore-7600.1.25/platform/mediastream/
H A DMediaStreamPrivate.h61 static PassRefPtr<MediaStreamPrivate> create(const Vector<RefPtr<MediaStreamSource>>& audioSources, const Vector<RefPtr<MediaStreamSource>>& videoSources);
62 static PassRefPtr<MediaStreamPrivate> create(const Vector<RefPtr<MediaStreamTrackPrivate>>& audioPrivateTracks, const Vector<RefPtr<MediaStreamTrackPrivate>>& videoPrivateTracks);
99 MediaStreamPrivate(const String& id, const Vector<RefPtr<MediaStreamSource>>& audioSources, const Vector<RefPtr<MediaStreamSource>>& videoSources);
100 MediaStreamPrivate(const String& id, const Vector<RefPtr<MediaStreamTrackPrivate>>& audioPrivateTracks, const Vector<RefPtr<MediaStreamTrackPrivate>>& videoPrivateTracks);
104 Vector<RefPtr<MediaStreamSource>> m_audioStreamSources;
105 Vector<RefPtr<MediaStreamSourc
[all...]

Completed in 180 milliseconds

1234567891011>>