HomeSort by relevance Sort by last modified time
    Searched refs:RefPtr (Results 1 - 25 of 1730) 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...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSFontValue.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;
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;
CSSValuePool.h 35 #include "wtf/RefPtr.h"
62 RefPtr<CSSInheritedValue> m_inheritedValue;
63 RefPtr<CSSInitialValue> m_implicitInitialValue;
64 RefPtr<CSSInitialValue> m_explicitInitialValue;
66 RefPtr<CSSPrimitiveValue> m_identifierValueCache[numCSSValueKeywords];
68 typedef HashMap<unsigned, RefPtr<CSSPrimitiveValue> > ColorValueCache;
70 RefPtr<CSSPrimitiveValue> m_colorTransparent;
71 RefPtr<CSSPrimitiveValue> m_colorWhite;
72 RefPtr<CSSPrimitiveValue> m_colorBlack;
76 RefPtr<CSSPrimitiveValue> m_pixelValueCache[maximumCacheableIntegerValue + 1]
    [all...]
CSSShadowValue.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
34 template<typename T> class RefPtr {
36 ALWAYS_INLINE RefPtr() : m_ptr(0) { }
37 ALWAYS_INLINE RefPtr(T* ptr) : m_ptr(ptr) { refIfNotNull(ptr); }
38 ALWAYS_INLINE explicit RefPtr(T& ref) : m_ptr(&ref) { m_ptr->ref(); }
39 ALWAYS_INLINE RefPtr(const RefPtr& o) : m_ptr(o.m_ptr) { refIfNotNull(m_ptr); }
40 template<typename U> RefPtr(const RefPtr<U>& o, EnsurePtrConvertibleArgDecl(U, T)) : m_ptr(o.get()) { refIfNotNull(m_ptr);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/css/
CSSPendingAnimations.h 50 Vector<std::pair<RefPtr<Player>, double> > m_pending;
51 Vector<RefPtr<Player> > m_waitingForCompositorAnimationStart;
  /external/chromium_org/third_party/WebKit/Source/core/page/
DragState.h 31 #include "wtf/RefPtr.h"
43 RefPtr<Node> m_dragSrc; // element that may be a drag source, for the current mouse gesture
45 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/core/fetch/
ResourceLoaderSet.h 41 typedef HashSet<RefPtr<ResourceLoader> > SetType;
43 void add(const RefPtr<ResourceLoader>& loader) { m_set.add(loader); }
44 void remove(const RefPtr<ResourceLoader>& loader) { m_set.remove(loader); }
46 bool contains(const RefPtr<ResourceLoader>& loader) const { return m_set.contains(loader); }
  /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/core/animation/
AnimatableRepeatable.h 46 static PassRefPtr<AnimatableRepeatable> create(Vector<RefPtr<AnimatableValue> >& values)
51 const Vector<RefPtr<AnimatableValue> >& values() const { return m_values; }
57 AnimatableRepeatable(Vector<RefPtr<AnimatableValue> >& values)
63 static bool interpolateLists(const Vector<RefPtr<AnimatableValue> >& fromValues, const Vector<RefPtr<AnimatableValue> >& toValues, double fraction, Vector<RefPtr<AnimatableValue> >& interpolatedValues);
65 Vector<RefPtr<AnimatableValue> > m_values;
  /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/dom/
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;
MutationCallback.h 34 #include "wtf/RefPtr.h"
46 virtual void call(const Vector<RefPtr<MutationRecord> >&, MutationObserver*) = 0;
  /external/chromium_org/third_party/WebKit/Source/core/editing/
MergeIdenticalElementsCommand.h 46 RefPtr<Element> m_element1;
47 RefPtr<Element> m_element2;
48 RefPtr<Node> m_atChild;
RemoveNodeCommand.h 46 RefPtr<Node> m_node;
47 RefPtr<ContainerNode> m_parent;
48 RefPtr<Node> m_refChild;
SimplifyMarkupCommand.h 44 int pruneSubsequentAncestorsToRemove(Vector<RefPtr<Node> >& nodesToRemove, size_t startNodeIndex);
46 RefPtr<Node> m_firstNode;
47 RefPtr<Node> m_nodeAfterLast;
SplitElementCommand.h 48 RefPtr<Element> m_element1;
49 RefPtr<Element> m_element2;
50 RefPtr<Node> m_atChild;
  /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 39 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/text/
StringImplTest.cpp 36 RefPtr<StringImpl> testStringImpl = StringImpl::create("1224");

Completed in 362 milliseconds

1 2 3 4 5 6 7 8 91011>>