OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SVGPropertyTearOff
(Results
1 - 13
of
13
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/svg/properties/
SVGMatrixTearOff.h
24
#include "core/svg/properties/
SVGPropertyTearOff
.h"
28
class SVGMatrixTearOff : public
SVGPropertyTearOff
<SVGMatrix> {
47
static PassRefPtr<SVGMatrixTearOff> create(
SVGPropertyTearOff
<SVGTransform>* parent, SVGMatrix& value)
58
// This is a tear-off from a
SVGPropertyTearOff
<SVGTransform>.
63
SVGPropertyTearOff
<SVGMatrix>::commitChange();
76
SVGPropertyTearOff
<SVGTransform>* parent() { return m_parent; }
80
:
SVGPropertyTearOff
<SVGMatrix>(animatedProperty, role, value)
87
:
SVGPropertyTearOff
<SVGMatrix>(initialValue)
93
SVGMatrixTearOff(
SVGPropertyTearOff
<SVGTransform>* parent, SVGMatrix& value)
94
:
SVGPropertyTearOff
<SVGMatrix>(0, UndefinedRole, value
[
all
...]
SVGTransformListPropertyTearOff.h
42
PassRefPtr<
SVGPropertyTearOff
<SVGTransform> > createSVGTransformFromMatrix(
SVGPropertyTearOff
<SVGMatrix>* matrix, ExceptionState& exceptionState)
49
return
SVGPropertyTearOff
<SVGTransform>::create(m_values->createSVGTransformFromMatrix(matrix->propertyReference()));
52
PassRefPtr<
SVGPropertyTearOff
<SVGTransform> > consolidate(ExceptionState& exceptionState)
66
RefPtr<
SVGPropertyTearOff
<SVGTransform> > wrapper =
SVGPropertyTearOff
<SVGTransform>::create(m_values->consolidate());
SVGStaticPropertyTearOff.h
23
#include "core/svg/properties/
SVGPropertyTearOff
.h"
33
class SVGStaticPropertyTearOff : public
SVGPropertyTearOff
<PropertyType> {
50
:
SVGPropertyTearOff
<PropertyType>(0, UndefinedRole, value)
SVGPropertyTearOff.h
38
class
SVGPropertyTearOff
: public SVGPropertyTearOffBase {
40
typedef
SVGPropertyTearOff
<PropertyType> Self;
129
SVGPropertyTearOff
(SVGAnimatedProperty* animatedProperty, SVGPropertyRole role, PropertyType& value)
142
SVGPropertyTearOff
(const PropertyType& initialValue)
150
virtual ~
SVGPropertyTearOff
()
SVGAnimatedListPropertyTearOff.h
30
class
SVGPropertyTearOff
;
36
typedef
SVGPropertyTearOff
<ListItemType> ListItemTearOff;
70
typedef
SVGPropertyTearOff
<typename SVGPropertyTraits<PropertyType>::ListItemType> ListItemTearOff;
SVGAnimatedPropertyTearOff.h
25
#include "core/svg/properties/
SVGPropertyTearOff
.h"
32
typedef
SVGPropertyTearOff
<PropertyType> PropertyTearOff;
SVGStaticListPropertyTearOff.h
35
typedef
SVGPropertyTearOff
<ListItemType> ListItemTearOff;
SVGListPropertyTearOff.h
36
typedef
SVGPropertyTearOff
<ListItemType> ListItemTearOff;
188
// Otherwhise we'll end up having two SVGAnimatedPropertys that operate on the same
SVGPropertyTearOff
. Consider the example above:
SVGListProperty.h
25
#include "core/svg/properties/
SVGPropertyTearOff
.h"
47
typedef
SVGPropertyTearOff
<ListItemType> ListItemTearOff;
64
// See
SVGPropertyTearOff
::detachWrapper() for an explanation about what's happening here.
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8SVGLengthCustom.cpp
39
#include "core/svg/properties/
SVGPropertyTearOff
.h"
45
SVGPropertyTearOff
<SVGLength>* wrapper = V8SVGLength::toNative(info.Holder());
57
SVGPropertyTearOff
<SVGLength>* wrapper = V8SVGLength::toNative(info.Holder());
80
SVGPropertyTearOff
<SVGLength>* wrapper = V8SVGLength::toNative(info.Holder());
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
V8TestTypedefs.cpp
47
#include "core/svg/properties/
SVGPropertyTearOff
.h"
360
v8SetReturnValue(info, WTF::getPtr(
SVGPropertyTearOff
<SVGPoint>::create(imp->immutablePointFunction())));
V8TestObject.cpp
71
#include "core/svg/properties/
SVGPropertyTearOff
.h"
[
all
...]
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/
code_generator_v8.pm
217
"SVGAngle" => "
SVGPropertyTearOff
<SVGAngle>",
218
"SVGLength" => "
SVGPropertyTearOff
<SVGLength>",
221
"SVGNumber" => "
SVGPropertyTearOff
<SVGNumber>",
224
"SVGPoint" => "
SVGPropertyTearOff
<SVGPoint>",
226
"SVGPreserveAspectRatio" => "
SVGPropertyTearOff
<SVGPreserveAspectRatio>",
227
"SVGRect" => "
SVGPropertyTearOff
<SVGRect>",
229
"SVGTransform" => "
SVGPropertyTearOff
<SVGTransform>",
577
if ($svgNativeType =~ /
SVGPropertyTearOff
/) {
702
$header{nameSpaceWebCore}->addHeader("\ntemplate<typename PropertyType> class
SVGPropertyTearOff
;\n") if $svgPropertyType;
[
all
...]
Completed in 367 milliseconds