HomeSort by relevance Sort by last modified time
    Searched refs:RefPtr (Results 1 - 25 of 1970) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/JavaScriptGlue/ForwardingHeaders/wtf/
RefPtr.h 1 #include <JavaScriptCore/RefPtr.h>
  /external/webkit/Source/WebKit/mac/ForwardingHeaders/wtf/
RefPtr.h 1 #import <JavaScriptCore/RefPtr.h>
  /external/webkit/Tools/DumpRenderTree/ForwardingHeaders/wtf/
RefPtr.h 1 #include <JavaScriptCore/RefPtr.h>
  /external/webkit/Source/WebCore/ForwardingHeaders/wtf/
RefPtr.h 3 #include <JavaScriptCore/RefPtr.h>
  /external/clang/test/SemaTemplate/
instantiate-default-assignment-operator.cpp 3 template<typename T> struct RefPtr {
4 RefPtr& operator=(const RefPtr&) { int a[sizeof(T) ? -1 : -1];} // expected-error 2 {{array with a negative size}}
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/
FontValue.h 26 #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;
ShadowValue.h 26 #include <wtf/RefPtr.h>
47 RefPtr<CSSPrimitiveValue> x;
48 RefPtr<CSSPrimitiveValue> y;
49 RefPtr<CSSPrimitiveValue> blur;
50 RefPtr<CSSPrimitiveValue> spread;
51 RefPtr<CSSPrimitiveValue> style;
52 RefPtr<CSSPrimitiveValue> color;
CSSPrimitiveValueCache.h 32 #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<CSSPrimitiveValue> m_numberZero
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
RefPtr.h 21 // RefPtr and PassRefPtr are documented at http://webkit.org/coding/RefPtr.html
39 template<typename T> class RefPtr {
42 ALWAYS_INLINE RefPtr() : m_ptr(0) { }
43 ALWAYS_INLINE RefPtr(T* ptr) : m_ptr(ptr) { refIfNotNull(ptr); }
44 ALWAYS_INLINE RefPtr(const RefPtr& o) : m_ptr(o.m_ptr) { refIfNotNull(m_ptr); }
45 template<typename U> RefPtr(const RefPtr<U>& o) : m_ptr(o.get()) { refIfNotNull(m_ptr); }
48 template<typename U> RefPtr(const PassRefPtr<U>&)
    [all...]
ListRefPtr.h 24 #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<T>& o) { RefPtr<T>::operator=(o); return *this;
    [all...]
  /external/webkit/Source/WebCore/platform/chromium/
PopupMenuPrivate.h 34 #include "RefPtr.h"
41 RefPtr<PopupContainer> popup;
  /external/webkit/Source/WebCore/platform/graphics/wince/
ImageBufferDataWince.h 29 RefPtr<SharedBitmap> m_bitmap;
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundlePageLoaderClient.h 50 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<APIObject>& userData)
    [all...]
  /external/webkit/Source/WebCore/dom/
StaticHashSetNodeList.h 36 #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;
Traversal.h 29 #include <wtf/RefPtr.h>
48 RefPtr<Node> m_root;
50 RefPtr<NodeFilter> m_filter;
WindowEventContext.h 30 #include <wtf/RefPtr.h>
49 RefPtr<DOMWindow> m_window;
50 RefPtr<EventTarget> m_target;
  /external/webkit/Source/WebCore/bindings/js/
ScriptInstance.h 35 #include <wtf/RefPtr.h>
39 typedef RefPtr<JSC::Bindings::Instance> ScriptInstance;
  /external/webkit/Source/WebCore/platform/graphics/qt/
ImageBufferDataQt.h 31 #include <wtf/RefPtr.h>
45 RefPtr<Image> m_image;
  /external/webkit/Source/WebCore/storage/
IDBEventDispatcher.h 34 #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.
  /external/webkit/Source/WebKit2/UIProcess/API/qt/
qwkcontext_p.h 25 #include <wtf/RefPtr.h>
34 RefPtr<WebKit::WebContext> context;
  /external/webkit/Source/WebCore/editing/
RemoveNodeCommand.h 46 RefPtr<Node> m_node;
47 RefPtr<ContainerNode> m_parent;
48 RefPtr<Node> m_refChild;
MergeIdenticalElementsCommand.h 46 RefPtr<Element> m_element1;
47 RefPtr<Element> m_element2;
48 RefPtr<Node> m_atChild;
SplitElementCommand.h 48 RefPtr<Element> m_element1;
49 RefPtr<Element> m_element2;
50 RefPtr<Node> m_atChild;
  /external/webkit/Source/WebCore/inspector/
InspectorCSSAgent.h 35 #include <wtf/RefPtr.h>
64 void getStylesForNode(ErrorString*, int nodeId, RefPtr<InspectorObject>* result);
65 void getInlineStyleForNode(ErrorString*, int nodeId, RefPtr<InspectorObject>* style);
66 void getComputedStyleForNode(ErrorString*, int nodeId, RefPtr<InspectorObject>* style);
67 void getAllStyleSheets(ErrorString*, RefPtr<InspectorArray>* styleSheetInfos);
68 void getStyleSheet(ErrorString*, const String& styleSheetId, RefPtr<InspectorObject>* result);
71 void setPropertyText(ErrorString*, const RefPtr<InspectorObject>& styleId, int propertyIndex, const String& text, bool overwrite, RefPtr<InspectorObject>* result);
72 void toggleProperty(ErrorString*, const RefPtr<InspectorObject>& styleId, int propertyIndex, bool disable, RefPtr<InspectorObject>* result)
    [all...]
  /external/webkit/Source/WebCore/loader/archive/
Archive.h 36 #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;

Completed in 554 milliseconds

1 2 3 4 5 6 7 8 91011>>