HomeSort by relevance Sort by last modified time
    Searched refs:contextElement (Results 101 - 119 of 119) sorted by null

1 2 3 45

  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextLayoutEngineBaseline.cpp 38 float SVGTextLayoutEngineBaseline::calculateBaselineShift(const SVGRenderStyle& style, SVGElement* contextElement) const
45 SVGLengthContext lengthContext(contextElement);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimationElement.h 95 void adjustForInheritance(ParseTypeFromStringType parseTypeFromString, AnimatedPropertyValueType valueType, AnimatedType& animatedType, SVGElement* contextElement)
101 adjustForInheritance(contextElement, attributeName(), typeString);
SVGNumberList.cpp 105 void SVGNumberList::add(PassRefPtrWillBeRawPtr<SVGPropertyBase> other, SVGElement* contextElement)
116 void SVGNumberList::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement* contextElement)
SVGPathSegList.h 52 static PassRefPtr<SVGPathSegList> create(SVGPathElement* contextElement)
54 return adoptRef(new SVGPathSegList(contextElement));
162 // SVGPathSegListTearOff. Both keep |contextElement| alive,
SVGPointList.cpp 121 void SVGPointList::add(PassRefPtrWillBeRawPtr<SVGPropertyBase> other, SVGElement* contextElement)
132 void SVGPointList::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement* contextElement)
SVGSVGElement.cpp 177 static PassRefPtr<SVGCurrentTranslateTearOff> create(SVGSVGElement* contextElement)
179 return adoptRef(new SVGCurrentTranslateTearOff(contextElement));
184 ASSERT(contextElement());
185 toSVGSVGElement(contextElement())->updateCurrentTranslate();
189 SVGCurrentTranslateTearOff(SVGSVGElement* contextElement)
190 : SVGPointTearOff(contextElement->m_translation, contextElement, PropertyIsNotAnimVal)
SVGPoint.cpp 131 float SVGPoint::calculateDistance(PassRefPtr<SVGPropertyBase> to, SVGElement* contextElement)
SVGAnimatedTypeAnimator.cpp 38 SVGAnimatedTypeAnimator::SVGAnimatedTypeAnimator(SVGAnimationElement* animationElement, SVGElement* contextElement)
40 , m_contextElement(contextElement)
SVGRect.cpp 147 float SVGRect::calculateDistance(PassRefPtr<SVGPropertyBase> to, SVGElement* contextElement)
SVGStringList.cpp 150 void SVGStringList::add(PassRefPtrWillBeRawPtr<SVGPropertyBase> other, SVGElement* contextElement)
SVGAngle.cpp 73 void SVGMarkerOrientEnumeration::calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> from, PassRefPtr<SVGPropertyBase> to, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement* contextElement)
79 float SVGMarkerOrientEnumeration::calculateDistance(PassRefPtr<SVGPropertyBase> to, SVGElement* contextElement)
SVGTransformList.cpp 278 void SVGTransformList::add(PassRefPtrWillBeRawPtr<SVGPropertyBase> other, SVGElement* contextElement)
296 void SVGTransformList::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement* contextElement)
SVGPreserveAspectRatio.cpp 413 float SVGPreserveAspectRatio::calculateDistance(PassRefPtr<SVGPropertyBase> toValue, SVGElement* contextElement)
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathStep.cpp 372 Element* contextElement = toElement(context);
376 RefPtrWillBeRawPtr<Node> n = contextElement->getAttributeNodeNS(nodeTest().namespaceURI(), nodeTest().data());
386 AttributeCollection attributes = contextElement->attributes();
389 RefPtrWillBeRawPtr<Attr> attr = contextElement->ensureAttr(it->name());
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLDocumentParser.cpp 55 static HTMLTokenizer::State tokenizerStateForContextElement(Element* contextElement, bool reportErrors, const HTMLParserOptions& options)
57 if (!contextElement)
60 const QualifiedName& contextTag = contextElement->tagQName();
126 HTMLDocumentParser::HTMLDocumentParser(DocumentFragment* fragment, Element* contextElement, ParserContentPolicy parserContentPolicy)
131 , m_treeBuilder(HTMLTreeBuilder::create(this, fragment, contextElement, this->parserContentPolicy(), m_options))
141 m_tokenizer->setState(tokenizerStateForContextElement(contextElement, reportErrors, m_options));
    [all...]
HTMLTreeBuilder.cpp 283 HTMLTreeBuilder::HTMLTreeBuilder(HTMLDocumentParser* parser, DocumentFragment* fragment, Element* contextElement, ParserContentPolicy parserContentPolicy, const HTMLParserOptions& options)
288 , m_fragmentContext(fragment, contextElement)
298 ASSERT(contextElement);
306 if (isHTMLTemplateElement(*contextElement))
310 m_tree.setForm(closestFormAncestor(*contextElement));
342 HTMLTreeBuilder::FragmentParsingContext::FragmentParsingContext(DocumentFragment* fragment, Element* contextElement)
346 m_contextElementStackItem = HTMLStackItem::create(contextElement, HTMLStackItem::ItemForContextElement);
931 ASSERT(m_templateInsertionModes.isEmpty() || (m_templateInsertionModes.size() == 1 && isHTMLTemplateElement(m_fragmentContext.contextElement())));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
markup.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/xml/parser/
XMLDocumentParser.cpp 506 bool XMLDocumentParser::parseDocumentFragment(const String& chunk, DocumentFragment* fragment, Element* contextElement, ParserContentPolicy parserContentPolicy)
514 if (contextElement && (contextElement->hasLocalName(scriptTag.localName()) || contextElement->hasLocalName(styleTag.localName()))) {
519 RefPtrWillBeRawPtr<XMLDocumentParser> parser = XMLDocumentParser::create(fragment, contextElement, parserContentPolicy);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Element.cpp     [all...]

Completed in 872 milliseconds

1 2 3 45