HomeSort by relevance Sort by last modified time
    Searched refs:RefPtr (Results 1 - 25 of 1067) 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/wtf/
RefPtr.h 21 // RefPtr and PassRefPtr are documented at http://webkit.org/coding/RefPtr.html
35 template<typename T> class RefPtr {
36 WTF_DISALLOW_CONSTRUCTION_FROM_ZERO(RefPtr);
37 WTF_DISALLOW_ZERO_ASSIGNMENT(RefPtr);
39 ALWAYS_INLINE RefPtr() : m_ptr(0) { }
40 ALWAYS_INLINE RefPtr(std::nullptr_t) : m_ptr(0) { }
41 ALWAYS_INLINE RefPtr(T* ptr) : m_ptr(ptr) { refIfNotNull(ptr); }
42 template<typename U> RefPtr(const RawPtr<U>& ptr, EnsurePtrConvertibleArgDecl(U, T)) : m_ptr(ptr.get()) { refIfNotNull(m_ptr); }
43 ALWAYS_INLINE explicit RefPtr(T& ref) : m_ptr(&ref) { m_ptr->ref();
    [all...]
RefPtrTest.cpp 6 #include "wtf/RefPtr.h"
15 RefPtr<StringImpl> string;
26 RefPtr<StringImpl> a = StringImpl::create("a");
27 RefPtr<StringImpl> b = StringImpl::create("b");
28 // FIXME: Instead of explicitly casting to RefPtr<StringImpl>&& here, we should use std::move, but that
30 b = static_cast<RefPtr<StringImpl>&&>(a);
  /external/chromium_org/cc/resources/
raster_buffer.h 9 #include "skia/ext/refptr.h"
20 virtual skia::RefPtr<SkCanvas> AcquireSkCanvas() = 0;
21 virtual void ReleaseSkCanvas(const skia::RefPtr<SkCanvas>& canvas) = 0;
  /external/chromium_org/tools/clang/blink_gc_plugin/tests/
ref_ptr_to_gc_managed_class.h 17 RefPtr<HeapObject> m_obj;
25 Vector<RefPtr<HeapObject> > m_objs;
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
TextBlob.h 10 #include "wtf/RefPtr.h"
16 typedef RefPtr<const SkTextBlob> TextBlobPtr;
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGComponentTransferFunctionElement.h 57 RefPtr<SVGAnimatedNumberList> m_tableValues;
58 RefPtr<SVGAnimatedNumber> m_slope;
59 RefPtr<SVGAnimatedNumber> m_intercept;
60 RefPtr<SVGAnimatedNumber> m_amplitude;
61 RefPtr<SVGAnimatedNumber> m_exponent;
62 RefPtr<SVGAnimatedNumber> m_offset;
63 RefPtr<SVGAnimatedEnumeration<ComponentTransferType> > m_type;
SVGFEConvolveMatrixElement.h 64 RefPtr<SVGAnimatedNumber> m_bias;
65 RefPtr<SVGAnimatedNumber> m_divisor;
66 RefPtr<SVGAnimatedString> m_in1;
67 RefPtr<SVGAnimatedEnumeration<EdgeModeType> > m_edgeMode;
68 RefPtr<SVGAnimatedNumberList> m_kernelMatrix;
69 RefPtr<SVGAnimatedNumberOptionalNumber> m_kernelUnitLength;
70 RefPtr<SVGAnimatedIntegerOptionalInteger> m_order;
71 RefPtr<SVGAnimatedBoolean> m_preserveAlpha;
72 RefPtr<SVGAnimatedInteger> m_targetX;
73 RefPtr<SVGAnimatedInteger> m_targetY
    [all...]
SVGRadialGradientElement.h 57 RefPtr<SVGAnimatedLength> m_cx;
58 RefPtr<SVGAnimatedLength> m_cy;
59 RefPtr<SVGAnimatedLength> m_r;
60 RefPtr<SVGAnimatedLength> m_fx;
61 RefPtr<SVGAnimatedLength> m_fy;
62 RefPtr<SVGAnimatedLength> m_fr;
SVGRectElement.h 54 RefPtr<SVGAnimatedLength> m_x;
55 RefPtr<SVGAnimatedLength> m_y;
56 RefPtr<SVGAnimatedLength> m_width;
57 RefPtr<SVGAnimatedLength> m_height;
58 RefPtr<SVGAnimatedLength> m_rx;
59 RefPtr<SVGAnimatedLength> m_ry;
SVGTests.h 51 RefPtr<SVGStaticStringList> m_requiredFeatures;
52 RefPtr<SVGStaticStringList> m_requiredExtensions;
53 RefPtr<SVGStaticStringList> m_systemLanguage;
SVGEllipseElement.h 52 RefPtr<SVGAnimatedLength> m_cx;
53 RefPtr<SVGAnimatedLength> m_cy;
54 RefPtr<SVGAnimatedLength> m_rx;
55 RefPtr<SVGAnimatedLength> m_ry;
SVGLineElement.h 50 RefPtr<SVGAnimatedLength> m_x1;
51 RefPtr<SVGAnimatedLength> m_y1;
52 RefPtr<SVGAnimatedLength> m_x2;
53 RefPtr<SVGAnimatedLength> m_y2;
SVGFEDisplacementMapElement.h 54 RefPtr<SVGAnimatedNumber> m_scale;
55 RefPtr<SVGAnimatedString> m_in1;
56 RefPtr<SVGAnimatedString> m_in2;
57 RefPtr<SVGAnimatedEnumeration<ChannelSelectorType> > m_xChannelSelector;
58 RefPtr<SVGAnimatedEnumeration<ChannelSelectorType> > m_yChannelSelector;
SVGFESpecularLightingElement.h 58 RefPtr<SVGAnimatedNumber> m_specularConstant;
59 RefPtr<SVGAnimatedNumber> m_specularExponent;
60 RefPtr<SVGAnimatedNumber> m_surfaceScale;
61 RefPtr<SVGAnimatedNumberOptionalNumber> m_kernelUnitLength;
62 RefPtr<SVGAnimatedString> m_in1;
SVGTextPositioningElement.h 50 RefPtr<SVGAnimatedLengthList> m_x;
51 RefPtr<SVGAnimatedLengthList> m_y;
52 RefPtr<SVGAnimatedLengthList> m_dx;
53 RefPtr<SVGAnimatedLengthList> m_dy;
54 RefPtr<SVGAnimatedNumberList> m_rotate;
SVGFELightElement.h 74 RefPtr<SVGAnimatedNumber> m_azimuth;
75 RefPtr<SVGAnimatedNumber> m_elevation;
76 RefPtr<SVGAnimatedNumber> m_x;
77 RefPtr<SVGAnimatedNumber> m_y;
78 RefPtr<SVGAnimatedNumber> m_z;
79 RefPtr<SVGAnimatedNumber> m_pointsAtX;
80 RefPtr<SVGAnimatedNumber> m_pointsAtY;
81 RefPtr<SVGAnimatedNumber> m_pointsAtZ;
82 RefPtr<SVGAnimatedNumber> m_specularExponent;
83 RefPtr<SVGAnimatedNumber> m_limitingConeAngle
    [all...]
SVGFECompositeElement.h 55 RefPtr<SVGAnimatedNumber> m_k1;
56 RefPtr<SVGAnimatedNumber> m_k2;
57 RefPtr<SVGAnimatedNumber> m_k3;
58 RefPtr<SVGAnimatedNumber> m_k4;
59 RefPtr<SVGAnimatedString> m_in1;
60 RefPtr<SVGAnimatedString> m_in2;
61 RefPtr<SVGAnimatedEnumeration<CompositeOperationType> > m_svgOperator;
SVGFilterElement.h 72 RefPtr<SVGAnimatedLength> m_x;
73 RefPtr<SVGAnimatedLength> m_y;
74 RefPtr<SVGAnimatedLength> m_width;
75 RefPtr<SVGAnimatedLength> m_height;
76 RefPtr<SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType> > m_filterUnits;
77 RefPtr<SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType> > m_primitiveUnits;
78 RefPtr<SVGAnimatedIntegerOptionalInteger> m_filterRes;
SVGPatternElement.h 77 RefPtr<SVGAnimatedLength> m_x;
78 RefPtr<SVGAnimatedLength> m_y;
79 RefPtr<SVGAnimatedLength> m_width;
80 RefPtr<SVGAnimatedLength> m_height;
81 RefPtr<SVGAnimatedTransformList> m_patternTransform;
82 RefPtr<SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType> > m_patternUnits;
83 RefPtr<SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType> > m_patternContentUnits;
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
StringImplTest.cpp 36 RefPtr<StringImpl> testStringImpl = StringImpl::create("1224");
  /external/chromium_org/third_party/WebKit/Source/platform/
OverscrollTheme.h 49 RefPtr<Image> m_overhangShadow;
50 RefPtr<Image> m_overhangPattern;
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
ThreadSafeDataTransport.h 32 #include "wtf/RefPtr.h"
65 Vector<RefPtr<SharedBuffer> > m_newBufferQueue;
66 RefPtr<SharedBuffer> m_readBuffer;

Completed in 1424 milliseconds

1 2 3 4 5 6 7 8 91011>>