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

1234567891011>>

/external/webkit/Source/JavaScriptGlue/ForwardingHeaders/wtf/
H A DRefPtr.h1 #include <JavaScriptCore/RefPtr.h>
/external/webkit/Source/WebKit/mac/ForwardingHeaders/wtf/
H A DRefPtr.h1 #import <JavaScriptCore/RefPtr.h>
/external/webkit/Tools/DumpRenderTree/ForwardingHeaders/wtf/
H A DRefPtr.h1 #include <JavaScriptCore/RefPtr.h>
/external/webkit/Source/WebCore/ForwardingHeaders/wtf/
H A DRefPtr.h3 #include <JavaScriptCore/RefPtr.h>
/external/clang/test/SemaTemplate/
H A Dinstantiate-default-assignment-operator.cpp3 template<typename T> struct RefPtr { struct
4 RefPtr& operator=(const RefPtr&) { int a[sizeof(T) ? -1 : -1];} // expected-error 2 {{array with a negative size}} argument
5 RefPtr& operator=(const PassRefPtr<T>&);
8 struct A { RefPtr<int> a; }; // expected-note {{instantiation of member function 'RefPtr<int>::operator=' requested here}}
9 struct B : RefPtr<float> { }; // expected-note {{in instantiation of member function 'RefPtr<float>::operator=' requested here}}
/external/webkit/Source/WebCore/css/
H A DFontValue.h26 #include <wtf/RefPtr.h>
42 RefPtr<CSSPrimitiveValue> style;
43 RefPtr<CSSPrimitiveValue> variant;
44 RefPtr<CSSPrimitiveValue> weight;
45 RefPtr<CSSPrimitiveValue> size;
46 RefPtr<CSSPrimitiveValue> lineHeight;
47 RefPtr<CSSValueList> family;
H A DCSSPrimitiveValueCache.h32 #include <wtf/RefPtr.h>
52 typedef HashMap<int, RefPtr<CSSPrimitiveValue> > IdentifierValueCache;
55 typedef HashMap<unsigned, RefPtr<CSSPrimitiveValue> > ColorValueCache;
57 RefPtr<CSSPrimitiveValue> m_colorTransparent;
58 RefPtr<CSSPrimitiveValue> m_colorWhite;
59 RefPtr<CSSPrimitiveValue> m_colorBlack;
61 typedef HashMap<int, RefPtr<CSSPrimitiveValue> > IntegerValueCache;
62 RefPtr<CSSPrimitiveValue> m_pixelZero;
63 RefPtr<CSSPrimitiveValue> m_percentZero;
64 RefPtr<CSSPrimitiveValu
[all...]
/external/webkit/Source/JavaScriptCore/wtf/
H A DRefPtr.h21 // RefPtr and PassRefPtr are documented at http://webkit.org/coding/RefPtr.html
39 template<typename T> class RefPtr { class in namespace:WTF
42 ALWAYS_INLINE RefPtr() : m_ptr(0) { } function in class:WTF::RefPtr
43 ALWAYS_INLINE RefPtr(T* ptr) : m_ptr(ptr) { refIfNotNull(ptr); } function in class:WTF::RefPtr
44 ALWAYS_INLINE RefPtr(const RefPtr& o) : m_ptr(o.m_ptr) { refIfNotNull(m_ptr); } function in class:WTF::RefPtr
45 template<typename U> RefPtr(const RefPtr<U>& o) : m_ptr(o.get()) { refIfNotNull(m_ptr); } function in class:WTF::RefPtr
48 template<typename U> RefPtr(cons
52 ALWAYS_INLINE RefPtr(PlacementNewAdoptType) { } function in class:WTF::RefPtr
55 RefPtr(HashTableDeletedValueType) : m_ptr(hashTableDeletedValue()) { } function in class:WTF::RefPtr
93 template<typename T> template<typename U> inline RefPtr<T>::RefPtr(const PassRefPtr<U>& o) function in class:WTF::RefPtr
98 template<typename T> template<typename U> inline RefPtr<T>::RefPtr(const NonNullPassRefPtr<U>& o) function in class:WTF::RefPtr
[all...]
H A DListRefPtr.h24 #include <wtf/RefPtr.h>
28 // Specialized version of RefPtr desgined for use in singly-linked lists.
30 template <typename T> class ListRefPtr : public RefPtr<T> {
32 ListRefPtr() : RefPtr<T>() {}
33 ListRefPtr(T* ptr) : RefPtr<T>(ptr) {}
34 ListRefPtr(const RefPtr<T>& o) : RefPtr<T>(o) {}
36 template <typename U> ListRefPtr(const PassRefPtr<U>& o) : RefPtr<T>(o) {}
40 ListRefPtr& operator=(T* optr) { RefPtr<T>::operator=(optr); return *this; }
41 ListRefPtr& operator=(const RefPtr<
[all...]
/external/webkit/Source/WebCore/bindings/js/
H A DScriptInstance.h35 #include <wtf/RefPtr.h>
39 typedef RefPtr<JSC::Bindings::Instance> ScriptInstance;
/external/webkit/Source/WebKit2/UIProcess/API/qt/
H A Dqwkcontext_p.h25 #include <wtf/RefPtr.h>
34 RefPtr<WebKit::WebContext> context;
/external/webkit/Source/WebCore/platform/chromium/
H A DPopupMenuPrivate.h34 #include "RefPtr.h"
41 RefPtr<PopupContainer> popup;
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
H A DInjectedBundlePageLoaderClient.h50 void didStartProvisionalLoadForFrame(WebPage*, WebFrame*, RefPtr<APIObject>& userData);
51 void didReceiveServerRedirectForProvisionalLoadForFrame(WebPage*, WebFrame*, RefPtr<APIObject>& userData);
52 void didFailProvisionalLoadWithErrorForFrame(WebPage*, WebFrame*, const WebCore::ResourceError&, RefPtr<APIObject>& userData);
53 void didCommitLoadForFrame(WebPage*, WebFrame*, RefPtr<APIObject>& userData);
54 void didFinishDocumentLoadForFrame(WebPage*, WebFrame*, RefPtr<APIObject>& userData);
55 void didFinishLoadForFrame(WebPage*, WebFrame*, RefPtr<APIObject>& userData);
56 void didFailLoadWithErrorForFrame(WebPage*, WebFrame*, const WebCore::ResourceError&, RefPtr<APIObject>& userData);
57 void didSameDocumentNavigationForFrame(WebPage*, WebFrame*, SameDocumentNavigationType, RefPtr<APIObject>& userData);
58 void didReceiveTitleForFrame(WebPage*, const String&, WebFrame*, RefPtr<APIObject>& userData);
59 void didFirstLayoutForFrame(WebPage*, WebFrame*, RefPtr<APIObjec
[all...]
/external/webkit/Source/WebCore/dom/
H A DStaticHashSetNodeList.h36 #include <wtf/RefPtr.h>
48 static PassRefPtr<StaticHashSetNodeList> adopt(const ListHashSet<RefPtr<Node> >& nodes)
50 return adopt(const_cast<ListHashSet<RefPtr<Node> >&>(nodes));
53 static PassRefPtr<StaticHashSetNodeList> adopt(ListHashSet<RefPtr<Node> >& nodes)
63 StaticHashSetNodeList(ListHashSet<RefPtr<Node> >& nodes);
65 ListHashSet<RefPtr<Node> > m_nodes;
H A DEventContext.h30 #include <wtf/RefPtr.h>
48 RefPtr<Node> m_node;
49 RefPtr<EventTarget> m_currentTarget;
50 RefPtr<EventTarget> m_target;
H A DStaticNodeList.h34 #include <wtf/RefPtr.h>
44 static PassRefPtr<StaticNodeList> adopt(Vector<RefPtr<Node> >& nodes)
54 StaticNodeList(Vector<RefPtr<Node> >& nodes)
58 Vector<RefPtr<Node> > m_nodes;
H A DUserTypingGestureIndicator.h30 #include <wtf/RefPtr.h>
48 RefPtr<Node> m_previousFocusedNode;
/external/webkit/Source/WebCore/loader/archive/
H A DArchive.h36 #include <wtf/RefPtr.h>
44 const Vector<RefPtr<ArchiveResource> >& subresources() const { return m_subresources; }
45 const Vector<RefPtr<Archive> >& subframeArchives() const { return m_subframeArchives; }
55 RefPtr<ArchiveResource> m_mainResource;
56 Vector<RefPtr<ArchiveResource> > m_subresources;
57 Vector<RefPtr<Archive> > m_subframeArchives;
/external/webkit/Source/WebCore/editing/
H A DRemoveNodeCommand.h46 RefPtr<Node> m_node;
47 RefPtr<ContainerNode> m_parent;
48 RefPtr<Node> m_refChild;
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DEditCommandQt.h34 EditCommandQt(WTF::RefPtr<WebCore::EditCommand> cmd, QUndoCommand *parent = 0);
36 EditCommandQt(WTF::RefPtr<WebCore::EditCommand> cmd);
44 WTF::RefPtr<WebCore::EditCommand> m_cmd;
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8NamedNodesCollection.h37 #include <wtf/RefPtr.h>
44 static PassRefPtr<NodeList> create(const Vector<RefPtr<Node> >& nodes)
54 explicit V8NamedNodesCollection(const Vector<RefPtr<Node> >& nodes)
57 Vector<RefPtr<Node> > m_nodes;
/external/webkit/Source/WebCore/page/
H A DPerformance.h41 #include <wtf/RefPtr.h>
59 mutable RefPtr<MemoryInfo> m_memory;
60 mutable RefPtr<PerformanceNavigation> m_navigation;
61 mutable RefPtr<PerformanceTiming> m_timing;
H A DWebKitAnimationList.h31 #include <wtf/RefPtr.h>
49 unsigned insertAnimation(RefPtr<WebKitAnimation>, unsigned index);
51 void append(RefPtr<WebKitAnimation>);
56 Vector<RefPtr<WebKitAnimation> > m_animations;
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DImageBufferDataWince.h29 RefPtr<SharedBitmap> m_bitmap;
/external/webkit/Source/WebCore/bindings/cpp/
H A DWebDOMEventListenerCustom.cpp25 #include <wtf/RefPtr.h>
37 RefPtr<WebNativeEventListener> listener = WebNativeEventListener::create(value);

Completed in 458 milliseconds

1234567891011>>