Lines Matching refs:aRefPtr

39   DrawTarget* LookupDrawTarget(ReferencePtr aRefPtr) final {  in LookupDrawTarget()  argument
40 DrawTarget* result = mDrawTargets.GetWeak(aRefPtr); in LookupDrawTarget()
45 Path* LookupPath(ReferencePtr aRefPtr) final { in LookupPath() argument
46 Path* result = mPaths.GetWeak(aRefPtr); in LookupPath()
51 SourceSurface* LookupSourceSurface(ReferencePtr aRefPtr) final { in LookupSourceSurface() argument
52 SourceSurface* result = mSourceSurfaces.GetWeak(aRefPtr); in LookupSourceSurface()
57 FilterNode* LookupFilterNode(ReferencePtr aRefPtr) final { in LookupFilterNode() argument
58 FilterNode* result = mFilterNodes.GetWeak(aRefPtr); in LookupFilterNode()
63 GradientStops* LookupGradientStops(ReferencePtr aRefPtr) final { in LookupGradientStops() argument
64 GradientStops* result = mGradientStops.GetWeak(aRefPtr); in LookupGradientStops()
69 ScaledFont* LookupScaledFont(ReferencePtr aRefPtr) final { in LookupScaledFont() argument
70 ScaledFont* result = mScaledFonts.GetWeak(aRefPtr); in LookupScaledFont()
75 UnscaledFont* LookupUnscaledFont(ReferencePtr aRefPtr) final { in LookupUnscaledFont() argument
76 UnscaledFont* result = mUnscaledFonts.GetWeak(aRefPtr); in LookupUnscaledFont()
87 void AddDrawTarget(ReferencePtr aRefPtr, DrawTarget* aDT) final { in AddDrawTarget() argument
88 mDrawTargets.Put(aRefPtr, aDT); in AddDrawTarget()
91 void AddPath(ReferencePtr aRefPtr, Path* aPath) final { in AddPath() argument
92 mPaths.Put(aRefPtr, aPath); in AddPath()
95 void AddSourceSurface(ReferencePtr aRefPtr, SourceSurface* aSurface) final { in AddSourceSurface() argument
96 mSourceSurfaces.Put(aRefPtr, aSurface); in AddSourceSurface()
99 void AddFilterNode(ReferencePtr aRefPtr, FilterNode* aFilter) final { in AddFilterNode() argument
100 mFilterNodes.Put(aRefPtr, aFilter); in AddFilterNode()
103 void AddGradientStops(ReferencePtr aRefPtr, GradientStops* aStops) final { in AddGradientStops() argument
104 mGradientStops.Put(aRefPtr, aStops); in AddGradientStops()
107 void AddScaledFont(ReferencePtr aRefPtr, ScaledFont* aScaledFont) final { in AddScaledFont() argument
108 mScaledFonts.Put(aRefPtr, aScaledFont); in AddScaledFont()
111 void AddUnscaledFont(ReferencePtr aRefPtr, in AddUnscaledFont() argument
113 mUnscaledFonts.Put(aRefPtr, aUnscaledFont); in AddUnscaledFont()
121 void RemoveDrawTarget(ReferencePtr aRefPtr) final { in RemoveDrawTarget() argument
122 mDrawTargets.Remove(aRefPtr); in RemoveDrawTarget()
125 void RemovePath(ReferencePtr aRefPtr) final { mPaths.Remove(aRefPtr); } in RemovePath() argument
127 void RemoveSourceSurface(ReferencePtr aRefPtr) final { in RemoveSourceSurface() argument
128 mSourceSurfaces.Remove(aRefPtr); in RemoveSourceSurface()
131 void RemoveFilterNode(ReferencePtr aRefPtr) final { in RemoveFilterNode() argument
132 mFilterNodes.Remove(aRefPtr); in RemoveFilterNode()
135 void RemoveGradientStops(ReferencePtr aRefPtr) final { in RemoveGradientStops() argument
136 mGradientStops.Remove(aRefPtr); in RemoveGradientStops()
139 void RemoveScaledFont(ReferencePtr aRefPtr) final { in RemoveScaledFont() argument
140 mScaledFonts.Remove(aRefPtr); in RemoveScaledFont()
143 void RemoveUnscaledFont(ReferencePtr aRefPtr) final { in RemoveUnscaledFont() argument
144 mUnscaledFonts.Remove(aRefPtr); in RemoveUnscaledFont()
148 ReferencePtr aRefPtr, const gfx::IntSize& aSize,