OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SVGElement
(Results
151 - 175
of
279
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFETurbulenceElement.idl
28
] interface SVGFETurbulenceElement :
SVGElement
{
SVGFilterElement.idl
27
interface SVGFilterElement :
SVGElement
{
SVGFontFaceSrcElement.cpp
37
:
SVGElement
(font_face_srcTag, document)
65
SVGElement
::childrenChanged(changedByParser, beforeChange, afterChange, childCountDelta);
SVGMarkerElement.idl
26
interface SVGMarkerElement :
SVGElement
{
SVGPatternElement.h
31
#include "core/svg/
SVGElement
.h"
42
class SVGPatternElement FINAL : public
SVGElement
,
52
virtual AffineTransform localCoordinateSpaceTransform(
SVGElement
::CTMScope) const;
SVGMaskElement.cpp
50
REGISTER_PARENT_ANIMATED_PROPERTIES(
SVGElement
)
55
:
SVGElement
(SVGNames::maskTag, document)
95
SVGElement
::parseAttribute(name, value);
125
SVGElement
::svgAttributeChanged(attrName);
144
SVGElement
::childrenChanged(changedByParser, beforeChange, afterChange, childCountDelta);
SVGLengthContext.cpp
39
SVGLengthContext::SVGLengthContext(const
SVGElement
* context)
44
SVGLengthContext::SVGLengthContext(const
SVGElement
* context, const FloatRect& viewport)
50
FloatRect SVGLengthContext::resolveRectangle(const
SVGElement
* context, SVGUnitTypes::SVGUnitType type, const FloatRect& viewport, const SVGLength& x, const SVGLength& y, const SVGLength& width, const SVGLength& height)
65
FloatPoint SVGLengthContext::resolvePoint(const
SVGElement
* context, SVGUnitTypes::SVGUnitType type, const SVGLength& x, const SVGLength& y)
77
float SVGLengthContext::resolveLength(const
SVGElement
* context, SVGUnitTypes::SVGUnitType type, const SVGLength& x)
203
static inline RenderStyle* renderStyleForLengthResolving(const
SVGElement
* context)
298
SVGElement
* viewportElement = m_context->viewportElement();
SVGMarkerElement.cpp
69
REGISTER_PARENT_ANIMATED_PROPERTIES(
SVGElement
)
73
:
SVGElement
(SVGNames::markerTag, document)
129
SVGElement
::parseAttribute(name, value);
160
SVGElement
::svgAttributeChanged(attrName);
179
SVGElement
::childrenChanged(changedByParser, beforeChange, afterChange, childCountDelta);
225
void SVGMarkerElement::synchronizeOrientType(
SVGElement
* contextElement)
240
PassRefPtr<SVGAnimatedProperty> SVGMarkerElement::lookupOrCreateOrientTypeWrapper(
SVGElement
* contextElement)
SVGMarkerElement.h
31
#include "core/svg/
SVGElement
.h"
97
class SVGMarkerElement FINAL : public
SVGElement
,
124
static void synchronizeOrientType(
SVGElement
* contextElement);
125
static PassRefPtr<SVGAnimatedProperty> lookupOrCreateOrientTypeWrapper(
SVGElement
* contextElement);
SVGAltGlyphDefElement.cpp
32
:
SVGElement
(SVGNames::altGlyphDefTag, document)
SVGAnimateMotionElement.h
48
virtual void clearAnimatedType(
SVGElement
* targetElement);
SVGAnimateTransformElement.cpp
46
SVGElement
* targetElement = this->targetElement();
SVGAnimatedAngle.h
43
SVGAnimatedAngleAnimator(SVGAnimationElement*,
SVGElement
*);
SVGAnimatedBoolean.h
41
SVGAnimatedBooleanAnimator(SVGAnimationElement*,
SVGElement
*);
SVGAnimatedEnumeration.h
40
SVGAnimatedEnumerationAnimator(SVGAnimationElement*,
SVGElement
*);
SVGAnimatedLength.h
42
SVGAnimatedLengthAnimator(SVGAnimationElement*,
SVGElement
*);
SVGAnimatedLengthList.h
42
SVGAnimatedLengthListAnimator(SVGAnimationElement*,
SVGElement
*);
SVGAnimatedNumber.h
45
SVGAnimatedNumberAnimator(SVGAnimationElement*,
SVGElement
*);
SVGAnimatedNumberList.h
42
SVGAnimatedNumberListAnimator(SVGAnimationElement*,
SVGElement
*);
SVGAnimatedPreserveAspectRatio.h
42
SVGAnimatedPreserveAspectRatioAnimator(SVGAnimationElement*,
SVGElement
*);
/external/chromium_org/third_party/WebKit/Source/core/svg/properties/
SVGAnimatedProperty.cpp
24
#include "core/svg/
SVGElement
.h"
28
SVGAnimatedProperty::SVGAnimatedProperty(
SVGElement
* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType)
44
void SVGAnimatedProperty::detachAnimatedPropertiesForElement(
SVGElement
* element)
SVGAnimatedStaticPropertyTearOff.h
52
static PassRefPtr<SVGAnimatedStaticPropertyTearOff<PropertyType> > create(
SVGElement
* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, PropertyType& property)
102
SVGAnimatedStaticPropertyTearOff(
SVGElement
* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, PropertyType& property)
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
CustomElementWrapper.cpp
44
#include "core/svg/
SVGElement
.h"
58
v8::Handle<v8::Object> createDirectWrapper<
SVGElement
>(
SVGElement
* element, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
73
v8::Handle<v8::Object> createFallbackWrapper<
SVGElement
>(
SVGElement
* element, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
120
class CustomElementWrapper<
SVGElement
, V8SVGElement>;
/external/chromium_org/third_party/WebKit/Source/core/css/
CSSCursorImageValue.cpp
64
HashSet<
SVGElement
*>::const_iterator it = m_referencedElements.begin();
65
HashSet<
SVGElement
*>::const_iterator end = m_referencedElements.end();
69
SVGElement
* referencedElement = *it;
111
SVGElement
*
svgElement
= toSVGElement(element);
112
m_referencedElements.add(
svgElement
);
113
svgElement
->setCursorImageValue(this);
114
cursorElement->addClient(
svgElement
);
187
void CSSCursorImageValue::removeReferencedElement(
SVGElement
* element)
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGTransformableContainer.cpp
51
SVGElement
* correspondingElement = element->correspondingElement();
Completed in 554 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>