OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:markerend
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGResources.cpp
298
if (RenderSVGResourceMarker* marker = m_markerData->
markerEnd
)
340
if (m_markerData->
markerEnd
)
341
m_markerData->
markerEnd
->removeClientFromCache(object, markForInvalidation);
387
if (m_markerData->
markerEnd
== resource) {
388
m_markerData->
markerEnd
->removeAllClientsFromCache();
389
m_markerData->
markerEnd
= 0;
454
if (m_markerData->
markerEnd
)
455
set.add(m_markerData->
markerEnd
);
550
bool SVGResources::setMarkerEnd(RenderSVGResourceMarker*
markerEnd
)
552
if (!
markerEnd
)
[
all
...]
SVGResources.h
52
RenderSVGResourceMarker*
markerEnd
() const { return m_markerData ? m_markerData->
markerEnd
: 0; }
138
,
markerEnd
(0)
149
RenderSVGResourceMarker*
markerEnd
;
RenderSVGShape.cpp
211
return resources->markerStart() || resources->markerMid() || resources->
markerEnd
();
349
static inline RenderSVGResourceMarker* markerForType(SVGMarkerType type, RenderSVGResourceMarker* markerStart, RenderSVGResourceMarker* markerMid, RenderSVGResourceMarker*
markerEnd
)
357
return
markerEnd
;
373
RenderSVGResourceMarker*
markerEnd
= resources->
markerEnd
();
374
ASSERT(markerStart || markerMid ||
markerEnd
);
379
if (RenderSVGResourceMarker* marker = markerForType(m_markerPositions[i].type, markerStart, markerMid,
markerEnd
))
450
RenderSVGResourceMarker*
markerEnd
= resources->
markerEnd
();
451
if (!markerStart && !markerMid && !
markerEnd
)
[
all
...]
SVGInlineFlowBox.cpp
95
Vector<DocumentMarker*>::iterator
markerEnd
= markers.end();
96
for (Vector<DocumentMarker*>::iterator markerIt = markers.begin(); markerIt !=
markerEnd
; ++markerIt) {
SVGResourcesCycleSolver.cpp
177
ASSERT(resourceLeadingToCycle == m_resources->markerStart() || resourceLeadingToCycle == m_resources->markerMid() || resourceLeadingToCycle == m_resources->
markerEnd
());
182
if (m_resources->
markerEnd
() == resourceLeadingToCycle)
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
SVGRenderStyleDefs.cpp
201
,
markerEnd
(SVGRenderStyle::initialMarkerEndResource())
209
,
markerEnd
(other.
markerEnd
)
217
&&
markerEnd
== other.
markerEnd
;
SVGRenderStyle.h
299
if (!(inheritedResources->
markerEnd
== obj))
300
inheritedResources.access()->
markerEnd
= obj;
345
String markerEndResource() const { return inheritedResources->
markerEnd
; }
SVGRenderStyleDefs.h
261
String
markerEnd
;
Completed in 72 milliseconds