OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SVGPropertyTearOff
(Results
1 - 14
of
14
) sorted by null
/external/webkit/Source/WebCore/svg/properties/
SVGTransformListPropertyTearOff.h
41
PassRefPtr<
SVGPropertyTearOff
<SVGTransform> > createSVGTransformFromMatrix(
SVGPropertyTearOff
<SVGMatrix>* matrix, ExceptionCode& ec)
48
return
SVGPropertyTearOff
<SVGTransform>::create(values.createSVGTransformFromMatrix(matrix->propertyReference()));
51
PassRefPtr<
SVGPropertyTearOff
<SVGTransform> > consolidate(ExceptionCode& ec)
65
RefPtr<
SVGPropertyTearOff
<SVGTransform> > wrapper =
SVGPropertyTearOff
<SVGTransform>::create(values.consolidate());
SVGPropertyTearOff.h
31
class
SVGPropertyTearOff
: public SVGProperty {
33
typedef
SVGPropertyTearOff
<PropertyType> Self;
97
SVGPropertyTearOff
(SVGAnimatedProperty* animatedProperty, SVGPropertyRole role, PropertyType& value)
107
SVGPropertyTearOff
(const PropertyType& initialValue)
115
virtual ~
SVGPropertyTearOff
()
SVGStaticPropertyWithParentTearOff.h
24
#include "
SVGPropertyTearOff
.h"
34
class SVGStaticPropertyWithParentTearOff : public
SVGPropertyTearOff
<PropertyType> {
50
(static_cast<
SVGPropertyTearOff
<ParentType>*>(m_parent.get())->propertyReference().*m_update)();
56
:
SVGPropertyTearOff
<PropertyType>(0, UndefinedRole, value)
SVGAnimatedPropertyTearOff.h
25
#include "
SVGPropertyTearOff
.h"
35
m_baseVal =
SVGPropertyTearOff
<PropertyType>::create(this, BaseValRole, m_property);
42
m_animVal =
SVGPropertyTearOff
<PropertyType>::create(this, AnimValRole, m_property);
SVGStaticPropertyTearOff.h
24
#include "
SVGPropertyTearOff
.h"
34
class SVGStaticPropertyTearOff : public
SVGPropertyTearOff
<PropertyType> {
51
:
SVGPropertyTearOff
<PropertyType>(0, UndefinedRole, value)
SVGAnimatedListPropertyTearOff.h
31
class
SVGPropertyTearOff
;
37
typedef
SVGPropertyTearOff
<ListItemType> ListItemTearOff;
59
typedef
SVGPropertyTearOff
<typename SVGPropertyTraits<PropertyType>::ListItemType> ListItemTearOff;
65
// See
SVGPropertyTearOff
::detachWrapper() for an explaination what's happening here.
SVGStaticListPropertyTearOff.h
34
typedef
SVGPropertyTearOff
<ListItemType> ListItemTearOff;
SVGListPropertyTearOff.h
34
typedef
SVGPropertyTearOff
<ListItemType> ListItemTearOff;
156
// Otherwhise we'll end up having two SVGAnimatedPropertys that operate on the same
SVGPropertyTearOff
. Consider the example above:
SVGListProperty.h
26
#include "
SVGPropertyTearOff
.h"
40
typedef
SVGPropertyTearOff
<ListItemType> ListItemTearOff;
/external/webkit/Source/WebCore/bindings/v8/custom/
V8SVGLengthCustom.cpp
36
#include "
SVGPropertyTearOff
.h"
45
SVGPropertyTearOff
<SVGLength>* wrapper = V8SVGLength::toNative(info.Holder());
59
SVGPropertyTearOff
<SVGLength>* wrapper = V8SVGLength::toNative(info.Holder());
82
SVGPropertyTearOff
<SVGLength>* wrapper = V8SVGLength::toNative(args.Holder());
/external/webkit/Source/WebCore/bindings/scripts/
CodeGenerator.pm
72
"SVGAngle" => "
SVGPropertyTearOff
<SVGAngle>",
73
"SVGLength" => "
SVGPropertyTearOff
<SVGLength>",
75
"SVGMatrix" => "
SVGPropertyTearOff
<SVGMatrix>",
76
"SVGNumber" => "
SVGPropertyTearOff
<float>",
79
"SVGPoint" => "
SVGPropertyTearOff
<FloatPoint>",
81
"SVGPreserveAspectRatio" => "
SVGPropertyTearOff
<SVGPreserveAspectRatio>",
82
"SVGRect" => "
SVGPropertyTearOff
<FloatRect>",
84
"SVGTransform" => "
SVGPropertyTearOff
<SVGTransform>",
388
if ($svgTypeNeedingTearOff =~ /
SVGPropertyTearOff
/) {
389
$svgTypeNeedingTearOff =~ s/
SVGPropertyTearOff
<//;
[
all
...]
CodeGeneratorObjC.pm
659
if ($svgNativeType =~ /
SVGPropertyTearOff
/) {
[
all
...]
CodeGeneratorJS.pm
[
all
...]
CodeGeneratorV8.pm
199
if ($svgNativeType =~ /
SVGPropertyTearOff
/) {
261
push(@headerContent, "\ntemplate<typename PropertyType> class
SVGPropertyTearOff
;\n") if $svgPropertyType;
[
all
...]
Completed in 3967 milliseconds