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

1 2 3 4 5 6 7 8 91011>>

  /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/chromium_org/skia/ext/
refptr.h 17 // skia::RefPtr<SkShader> shader = skia::AdoptRef(SkGradientShader::Create());
21 // pass around the skia::RefPtr instead of the raw pointer. An example method
23 // void AMethodThatSavesAShader(const skia::RefPtr<SkShader>& shader) {
26 // skia::RefPtr<SkShader> member_refptr_;
28 // When returning a ref-counted pointer, also return the skia::RefPtr instead.
30 // skia::RefPtr<SkShader> MakeAShader() {
38 // skia::RefPtr<SkShader> shader = skia::SharePtr(paint.getShader());
41 // AdoptRef() the raw pointer immediately into a skia::RefPtr and always work
42 // with skia::RefPtr instances instead, the ref-counting will be taken care of
45 class RefPtr {
    [all...]
benchmarking_canvas.h 9 #include "skia/ext/refptr.h"
45 skia::RefPtr<SkDebugCanvas> debug_canvas_;
46 skia::RefPtr<TimingCanvas> timing_canvas_;
  /external/chromium_org/third_party/WebKit/Source/core/css/
FontValue.h 26 #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;
CSSValuePool.h 35 #include "wtf/RefPtr.h"
60 RefPtr<CSSInheritedValue> m_inheritedValue;
61 RefPtr<CSSInitialValue> m_implicitInitialValue;
62 RefPtr<CSSInitialValue> m_explicitInitialValue;
64 RefPtr<CSSPrimitiveValue> m_identifierValueCache[numCSSValueKeywords];
66 typedef HashMap<unsigned, RefPtr<CSSPrimitiveValue> > ColorValueCache;
68 RefPtr<CSSPrimitiveValue> m_colorTransparent;
69 RefPtr<CSSPrimitiveValue> m_colorWhite;
70 RefPtr<CSSPrimitiveValue> m_colorBlack;
74 RefPtr<CSSPrimitiveValue> m_pixelValueCache[maximumCacheableIntegerValue + 1]
    [all...]
InspectorCSSOMWrappers.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;
ShadowValue.h 26 #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;
  /external/chromium_org/third_party/WebKit/Source/wtf/
RefPtr.h 21 // RefPtr and PassRefPtr are documented at http://webkit.org/coding/RefPtr.html
35 template<typename T> class RefPtr {
38 ALWAYS_INLINE RefPtr() : m_ptr(0) { }
39 ALWAYS_INLINE RefPtr(T* ptr) : m_ptr(ptr) { refIfNotNull(ptr); }
40 ALWAYS_INLINE RefPtr(const RefPtr& o) : m_ptr(o.m_ptr) { refIfNotNull(m_ptr); }
41 template<typename U> RefPtr(const RefPtr<U>& o, EnsurePtrConvertibleArgDecl(U, T)) : m_ptr(o.get()) { refIfNotNull(m_ptr); }
44 template<typename U> RefPtr(const PassRefPtr<U>&, EnsurePtrConvertibleArgDecl(U, T))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
StyleSheetCollection.h 38 #include "wtf/RefPtr.h"
60 Vector<RefPtr<CSSStyleSheet> >& activeAuthorStyleSheets() { return m_activeAuthorStyleSheets; }
61 Vector<RefPtr<StyleSheet> >& styleSheetsForStyleSheetList() { return m_styleSheetsForStyleSheetList; }
62 const Vector<RefPtr<CSSStyleSheet> >& activeAuthorStyleSheets() const { return m_activeAuthorStyleSheets; }
63 const Vector<RefPtr<StyleSheet> >& styleSheetsForStyleSheetList() const { return m_styleSheetsForStyleSheetList; }
79 void collectStyleSheets(DocumentStyleSheetCollection* collections, Vector<RefPtr<StyleSheet> >& styleSheets, Vector<RefPtr<CSSStyleSheet> >& activeSheets);
81 StyleResolverUpdateType compareStyleSheets(const Vector<RefPtr<CSSStyleSheet> >& oldStyleSheets, const Vector<RefPtr<CSSStyleSheet> >& newStylesheets, Vector<StyleSheetContents*>& addedSheets);
82 bool activeLoadingStyleSheetLoaded(const Vector<RefPtr<CSSStyleSheet> >& newStyleSheets)
    [all...]
NamedNodesCollection.h 37 #include "wtf/RefPtr.h"
44 static PassRefPtr<NodeList> create(const Vector<RefPtr<Node> >& nodes)
54 explicit NamedNodesCollection(const Vector<RefPtr<Node> >& nodes)
57 Vector<RefPtr<Node> > m_nodes;
  /external/chromium_org/third_party/WebKit/Source/core/page/
DragState.h 34 #include "wtf/RefPtr.h"
46 RefPtr<Node> m_dragSrc; // element that may be a drag source, for the current mouse gesture
48 RefPtr<Clipboard> m_dragClipboard; // used on only the source side of dragging
TouchAdjustment.h 25 #include "wtf/RefPtr.h"
32 bool findBestClickableCandidate(Node*& targetNode, IntPoint& targetPoint, const IntPoint& touchHotspot, const IntRect& touchArea, const Vector<RefPtr<Node> >&);
33 bool findBestContextMenuCandidate(Node*& targetNode, IntPoint& targetPoint, const IntPoint& touchHotspot, const IntRect& touchArea, const Vector<RefPtr<Node> >&);
34 bool findBestZoomableArea(Node*& targetNode, IntRect& targetArea, const IntPoint& touchHotspot, const IntRect& touchArea, const Vector<RefPtr<Node> >&);
  /external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechRecognitionResultList.h 38 static PassRefPtr<SpeechRecognitionResultList> create(const Vector<RefPtr<SpeechRecognitionResult> >&);
44 explicit SpeechRecognitionResultList(const Vector<RefPtr<SpeechRecognitionResult> >&);
46 Vector<RefPtr<SpeechRecognitionResult> > m_results;
SpeechRecognitionResult.h 39 static PassRefPtr<SpeechRecognitionResult> create(const Vector<RefPtr<SpeechRecognitionAlternative> >&, bool final);
46 SpeechRecognitionResult(const Vector<RefPtr<SpeechRecognitionAlternative> >&, bool final);
48 Vector<RefPtr<SpeechRecognitionAlternative> > m_alternatives;
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
DynamicsCompressorNode.h 68 RefPtr<AudioParam> m_threshold;
69 RefPtr<AudioParam> m_knee;
70 RefPtr<AudioParam> m_ratio;
71 RefPtr<AudioParam> m_reduction;
72 RefPtr<AudioParam> m_attack;
73 RefPtr<AudioParam> m_release;
  /external/chromium_org/third_party/WebKit/Source/core/editing/
MergeIdenticalElementsCommand.h 50 RefPtr<Element> m_element1;
51 RefPtr<Element> m_element2;
52 RefPtr<Node> m_atChild;
SimplifyMarkupCommand.h 44 int pruneSubsequentAncestorsToRemove(Vector<RefPtr<Node> >& nodesToRemove, size_t startNodeIndex);
46 RefPtr<Node> m_firstNode;
47 RefPtr<Node> m_nodeAfterLast;
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
SQLTransactionCoordinator.h 38 #include "wtf/RefPtr.h"
53 typedef Deque<RefPtr<SQLTransactionBackend> > TransactionsQueue;
56 HashSet<RefPtr<SQLTransactionBackend> > activeReadTransactions;
57 RefPtr<SQLTransactionBackend> activeWriteTransaction;
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
EntriesCallback.h 40 typedef Vector<RefPtr<Entry> > EntryVector;
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBEventDispatcher.h 32 #include "wtf/RefPtr.h"
42 static bool dispatch(Event*, Vector<RefPtr<EventTarget> >&); // The target first and then its ancestors in order of how the event bubbles.
  /external/chromium_org/third_party/WebKit/Source/wtf/tests/
StringImpl.cpp 36 RefPtr<StringImpl> testStringImpl = StringImpl::create("1224");
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
Dictionary.h 77 bool get(const String&, RefPtr<DOMWindow>&) const;
78 bool get(const String&, RefPtr<Storage>&) const;
80 bool get(const String&, RefPtr<Uint8Array>&) const;
81 bool get(const String&, RefPtr<ArrayBufferView>&) const;
82 bool get(const String&, RefPtr<MIDIPort>&) const;
83 bool get(const String&, RefPtr<MediaKeyError>&) const;
84 bool get(const String&, RefPtr<TrackBase>&) const;
85 bool get(const String&, RefPtr<SpeechRecognitionError>&) const;
86 bool get(const String&, RefPtr<SpeechRecognitionResult>&) const;
87 bool get(const String&, RefPtr<SpeechRecognitionResultList>&) const
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLAllCollection.h 39 void anonymousNamedGetter(const AtomicString& name, bool&, RefPtr<NodeList>&, bool&, RefPtr<Node>&);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/
ThreadSafeDataTransport.h 31 #include "wtf/RefPtr.h"
64 Vector<RefPtr<SharedBuffer> > m_newBufferQueue;
65 RefPtr<SharedBuffer> m_readBuffer;
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathSegList.h 33 class SVGPathSegList : public Vector<RefPtr<SVGPathSeg> > {
52 typedef RefPtr<SVGPathSeg> ListItemType;

Completed in 1049 milliseconds

1 2 3 4 5 6 7 8 91011>>