HomeSort by relevance Sort by last modified time
    Searched refs:contextElement (Results 1 - 25 of 32) sorted by null

1 2

  /external/webkit/Source/WebCore/svg/
SVGPathSegList.cpp 41 void SVGPathSegList::commitChange(SVGElement* contextElement)
43 ASSERT(contextElement);
44 ASSERT(contextElement->hasTagName(SVGNames::pathTag));
45 static_cast<SVGPathElement*>(contextElement)->pathSegListChanged(m_role);
SVGTests.cpp 111 void SVGTests::synchronizeProperties(SVGElement* contextElement, const QualifiedName& attrName)
114 synchronizeRequiredFeatures(contextElement);
115 synchronizeRequiredExtensions(contextElement);
116 synchronizeSystemLanguage(contextElement);
121 synchronizeRequiredFeatures(contextElement);
123 synchronizeRequiredExtensions(contextElement);
125 synchronizeSystemLanguage(contextElement);
128 void SVGTests::synchronizeRequiredFeatures(SVGElement* contextElement)
133 SVGAnimatedPropertySynchronizer<true>::synchronize(contextElement, SVGNames::requiredFeaturesAttr, value);
136 void SVGTests::synchronizeRequiredExtensions(SVGElement* contextElement)
    [all...]
SVGStringList.cpp 32 void SVGStringList::commitChange(SVGElement* contextElement)
34 ASSERT(contextElement);
35 contextElement->invalidateSVGAttributes();
36 contextElement->svgAttributeChanged(m_attributeName);
SVGPathSegList.h 44 void commitChange(SVGElement* contextElement);
SVGStringList.h 44 void commitChange(SVGElement* contextElement);
SVGViewSpec.h 53 SVGElement* contextElement() const { return const_cast<SVGElement*>(m_contextElement); }
  /external/webkit/Source/WebCore/svg/properties/
SVGAnimatedStaticPropertyTearOff.h 54 static PassRefPtr<SVGAnimatedStaticPropertyTearOff<PropertyType> > create(SVGElement* contextElement, const QualifiedName& attributeName, PropertyType& property)
56 ASSERT(contextElement);
57 return adoptRef(new SVGAnimatedStaticPropertyTearOff<PropertyType>(contextElement, attributeName, property));
60 SVGAnimatedStaticPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, PropertyType& property)
61 : SVGAnimatedProperty(contextElement, attributeName)
SVGAnimatedTransformListPropertyTearOff.h 49 static PassRefPtr<SVGAnimatedTransformListPropertyTearOff> create(SVGElement* contextElement, const QualifiedName& attributeName, SVGTransformList& values)
51 ASSERT(contextElement);
52 return adoptRef(new SVGAnimatedTransformListPropertyTearOff(contextElement, attributeName, values));
55 SVGAnimatedTransformListPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, SVGTransformList& values)
56 : SVGAnimatedListPropertyTearOff<SVGTransformList>(contextElement, attributeName, values)
SVGAnimatedPathSegListPropertyTearOff.h 57 static PassRefPtr<SVGAnimatedPathSegListPropertyTearOff> create(SVGElement* contextElement, const QualifiedName& attributeName, SVGPathSegList& values)
59 ASSERT(contextElement);
60 return adoptRef(new SVGAnimatedPathSegListPropertyTearOff(contextElement, attributeName, values));
63 SVGAnimatedPathSegListPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, SVGPathSegList& values)
64 : SVGAnimatedListPropertyTearOff<SVGPathSegList>(contextElement, attributeName, values)
SVGAnimatedPropertyTearOff.h 49 static PassRefPtr<SVGAnimatedPropertyTearOff<PropertyType> > create(SVGElement* contextElement, const QualifiedName& attributeName, PropertyType& property)
51 ASSERT(contextElement);
52 return adoptRef(new SVGAnimatedPropertyTearOff<PropertyType>(contextElement, attributeName, property));
55 SVGAnimatedPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, PropertyType& property)
56 : SVGAnimatedProperty(contextElement, attributeName)
SVGStaticPropertyTearOff.h 33 template<typename ContextElement, typename PropertyType>
36 typedef SVGStaticPropertyTearOff<ContextElement, PropertyType> Self;
37 typedef void (ContextElement::*UpdateMethod)();
41 static PassRefPtr<Self> create(ContextElement* contextElement, PropertyType& value, UpdateMethod update)
43 ASSERT(contextElement);
44 return adoptRef(new Self(contextElement, value, update));
50 SVGStaticPropertyTearOff(ContextElement* contextElement, PropertyType& value, UpdateMethod update)
53 , m_contextElement(contextElement)
    [all...]
SVGPathSegListPropertyTearOff.cpp 52 ASSERT(static_cast<SVGPathSegWithContext*>(returnedItem.get())->contextElement() == contextElement());
67 SVGPathElement* SVGPathSegListPropertyTearOff::contextElement() const
69 SVGElement* contextElement = m_animatedProperty->contextElement();
70 ASSERT(contextElement);
71 ASSERT(contextElement->hasTagName(SVGNames::pathTag));
72 return static_cast<SVGPathElement*>(contextElement);
81 newItemWithContext->setContextAndRole(contextElement(), m_pathSegRole);
SVGAnimatedListPropertyTearOff.h 88 static PassRefPtr<SVGAnimatedListPropertyTearOff<PropertyType> > create(SVGElement* contextElement, const QualifiedName& attributeName, PropertyType& values)
90 ASSERT(contextElement);
91 return adoptRef(new SVGAnimatedListPropertyTearOff<PropertyType>(contextElement, attributeName, values));
95 SVGAnimatedListPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, PropertyType& values)
96 : SVGAnimatedProperty(contextElement, attributeName)
SVGStaticListPropertyTearOff.h 36 static PassRefPtr<SVGStaticListPropertyTearOff<PropertyType> > create(SVGElement* contextElement, PropertyType& values)
38 ASSERT(contextElement);
39 return adoptRef(new SVGStaticListPropertyTearOff<PropertyType>(contextElement, values));
84 SVGStaticListPropertyTearOff(SVGElement* contextElement, PropertyType& values)
86 , m_contextElement(contextElement)
SVGAnimatedPropertyMacros.h 47 SVGElement* context = type->contextElement();
98 SVGElement* contextElement = GetOwnerElementForType<OwnerType, IsDerivedFromSVGElement<OwnerType>::value>::ownerElement(this); \
99 SVGAnimatedPropertySynchronizer<IsDerivedFromSVGElement<OwnerType>::value>::synchronize(contextElement, DOMAttribute, value); \
105 SVGElement* contextElement = GetOwnerElementForType<OwnerType, IsDerivedFromSVGElement<OwnerType>::value>::ownerElement(this); \
106 return SVGAnimatedProperty::lookupOrCreateWrapper<TearOffType, PropertyType>(contextElement, DOMAttribute, SVGDOMAttributeIdentifier, m_##LowerProperty.value); \
141 SVGElement* contextElement = GetOwnerElementForType<OwnerType, IsDerivedFromSVGElement<OwnerType>::value>::ownerElement(this); \
142 SVGAnimatedProperty* wrapper = SVGAnimatedProperty::lookupWrapper<TearOffType>(contextElement, DOMAttribute.localName()); \
SVGAnimatedProperty.h 36 SVGElement* contextElement() const { return m_contextElement.get(); }
85 SVGAnimatedProperty(SVGElement* contextElement, const QualifiedName& attributeName)
86 : m_contextElement(contextElement)
SVGPropertyTearOff.h 63 SVGElement* contextElement() const
67 return m_animatedProperty->contextElement();
SVGPathSegListPropertyTearOff.h 138 SVGPathElement* contextElement() const;
143 values.commitChange(m_animatedProperty->contextElement());
  /external/webkit/Source/WebCore/dom/
DocumentFragment.cpp 78 void DocumentFragment::parseHTML(const String& source, Element* contextElement, FragmentScriptingPermission scriptingPermission)
80 HTMLDocumentParser::parseDocumentFragment(source, this, contextElement, scriptingPermission);
83 bool DocumentFragment::parseXML(const String& source, Element* contextElement, FragmentScriptingPermission scriptingPermission)
85 return XMLDocumentParser::parseDocumentFragment(source, this, contextElement, scriptingPermission);
DocumentFragment.h 36 void parseHTML(const String&, Element* contextElement, FragmentScriptingPermission = FragmentScriptingAllowed);
37 bool parseXML(const String&, Element* contextElement, FragmentScriptingPermission = FragmentScriptingAllowed);
  /external/webkit/Source/WebCore/html/parser/
HTMLDocumentParser.h 63 static PassRefPtr<HTMLDocumentParser> create(DocumentFragment* fragment, Element* contextElement, FragmentScriptingPermission permission)
65 return adoptRef(new HTMLDocumentParser(fragment, contextElement, permission));
73 static void parseDocumentFragment(const String&, DocumentFragment*, Element* contextElement, FragmentScriptingPermission = FragmentScriptingAllowed);
92 HTMLDocumentParser(DocumentFragment*, Element* contextElement, FragmentScriptingPermission);
HTMLTreeBuilder.h 62 static PassOwnPtr<HTMLTreeBuilder> create(HTMLDocumentParser* parser, DocumentFragment* fragment, Element* contextElement, FragmentScriptingPermission scriptingPermission, bool usePreHTML5ParserQuirks)
64 return adoptPtr(new HTMLTreeBuilder(parser, fragment, contextElement, scriptingPermission, usePreHTML5ParserQuirks));
120 HTMLTreeBuilder(HTMLDocumentParser* parser, DocumentFragment*, Element* contextElement, FragmentScriptingPermission, bool usePreHTML5ParserQuirks);
212 FragmentParsingContext(DocumentFragment*, Element* contextElement, FragmentScriptingPermission);
216 Element* contextElement() const { ASSERT(m_fragment); return m_contextElement; }
HTMLDocumentParser.cpp 52 HTMLTokenizer::State tokenizerStateForContextElement(Element* contextElement, bool reportErrors)
54 if (!contextElement)
57 const QualifiedName& contextTag = contextElement->tagQName();
64 || (contextTag.matches(noembedTag) && HTMLTreeBuilder::pluginsEnabled(contextElement->document()->frame()))
65 || (contextTag.matches(noscriptTag) && HTMLTreeBuilder::scriptEnabled(contextElement->document()->frame()))
91 HTMLDocumentParser::HTMLDocumentParser(DocumentFragment* fragment, Element* contextElement, FragmentScriptingPermission scriptingPermission)
94 , m_treeBuilder(HTMLTreeBuilder::create(this, fragment, contextElement, scriptingPermission, usePreHTML5ParserQuirks(fragment->document())))
100 m_tokenizer->setState(tokenizerStateForContextElement(contextElement, reportErrors));
558 void HTMLDocumentParser::parseDocumentFragment(const String& source, DocumentFragment* fragment, Element* contextElement, FragmentScriptingPermission scriptingPermission)
560 RefPtr<HTMLDocumentParser> parser = HTMLDocumentParser::create(fragment, contextElement, scriptingPermission)
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
JSSVGLengthCustom.cpp 37 float value = podImp.value(impl()->contextElement(), ec);
61 podImp.setValue(value.toFloat(exec), impl()->contextElement(), ec);
88 podImp.convertToSpecifiedUnits(unitType, impl()->contextElement(), ec);
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8SVGLengthCustom.cpp 48 float value = imp.value(wrapper->contextElement(), ec);
72 imp.setValue(static_cast<float>(value->NumberValue()), wrapper->contextElement(), ec);
94 imp.convertToSpecifiedUnits(unitType, wrapper->contextElement(), ec);

Completed in 311 milliseconds

1 2