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

1 23

  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathStep.cpp 342 Element* contextElement = toElement(context);
346 RefPtr<Node> n = contextElement->getAttributeNodeNS(m_nodeTest.namespaceURI(), m_nodeTest.data());
354 if (!contextElement->hasAttributes())
357 for (unsigned i = 0; i < contextElement->attributeCount(); ++i) {
358 RefPtr<Attr> attr = contextElement->ensureAttr(contextElement->attributeItem(i)->name());
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLDocumentParser.cpp 50 static HTMLTokenizer::State tokenizerStateForContextElement(Element* contextElement, bool reportErrors, const HTMLParserOptions& options)
52 if (!contextElement)
55 const QualifiedName& contextTag = contextElement->tagQName();
94 HTMLDocumentParser::HTMLDocumentParser(DocumentFragment* fragment, Element* contextElement, ParserContentPolicy parserContentPolicy)
99 , m_treeBuilder(HTMLTreeBuilder::create(this, fragment, contextElement, this->parserContentPolicy(), m_options))
109 m_tokenizer->setState(tokenizerStateForContextElement(contextElement, reportErrors, m_options));
    [all...]
HTMLTreeBuilder.cpp 293 HTMLTreeBuilder::HTMLTreeBuilder(HTMLDocumentParser* parser, DocumentFragment* fragment, Element* contextElement, ParserContentPolicy parserContentPolicy, const HTMLParserOptions& options)
298 , m_fragmentContext(fragment, contextElement)
309 ASSERT(contextElement);
310 if (contextElement) {
317 if (contextElement->hasTagName(templateTag))
321 m_tree.setForm(closestFormAncestor(contextElement));
346 HTMLTreeBuilder::FragmentParsingContext::FragmentParsingContext(DocumentFragment* fragment, Element* contextElement)
350 m_contextElementStackItem = HTMLStackItem::create(contextElement, HTMLStackItem::ItemForContextElement);
    [all...]
  /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/
SVGAnimatedAngle.cpp 29 SVGAnimatedAngleAnimator::SVGAnimatedAngleAnimator(SVGAnimationElement* animationElement, SVGElement* contextElement)
30 : SVGAnimatedTypeAnimator(AnimatedAngle, animationElement, contextElement)
SVGAnimatedColor.cpp 31 SVGAnimatedColorAnimator::SVGAnimatedColorAnimator(SVGAnimationElement* animationElement, SVGElement* contextElement)
32 : SVGAnimatedTypeAnimator(AnimatedColor, animationElement, contextElement)
SVGAnimatedEnumeration.cpp 102 SVGAnimatedEnumerationAnimator::SVGAnimatedEnumerationAnimator(SVGAnimationElement* animationElement, SVGElement* contextElement)
103 : SVGAnimatedTypeAnimator(AnimatedEnumeration, animationElement, contextElement)
SVGAnimatedLength.cpp 29 SVGAnimatedLengthAnimator::SVGAnimatedLengthAnimator(SVGAnimationElement* animationElement, SVGElement* contextElement)
30 : SVGAnimatedTypeAnimator(AnimatedLength, animationElement, contextElement)
SVGAnimatedLengthList.cpp 29 SVGAnimatedLengthListAnimator::SVGAnimatedLengthListAnimator(SVGAnimationElement* animationElement, SVGElement* contextElement)
30 : SVGAnimatedTypeAnimator(AnimatedLengthList, animationElement, contextElement)
SVGAnimatedTransformList.cpp 35 SVGAnimatedTransformListAnimator::SVGAnimatedTransformListAnimator(SVGAnimationElement* animationElement, SVGElement* contextElement)
36 : SVGAnimatedTypeAnimator(AnimatedTransformList, animationElement, contextElement)
SVGPathElement.h 112 static void synchronizeD(SVGElement* contextElement);
113 static PassRefPtr<SVGAnimatedProperty> lookupOrCreateDWrapper(SVGElement* contextElement);
SVGAnimatedTypeAnimator.h 62 void setContextElement(SVGElement* contextElement) { m_contextElement = contextElement; }
172 ASSERT(property->contextElement());
SVGAnimationElement.h 99 AnimatedPropertyValueType valueType, AnimatedType& animatedType, SVGElement* contextElement)
106 adjustForInheritance(contextElement, attributeName(), typeString);
SVGElement.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/properties/
SVGListPropertyTearOff.h 120 SVGElement* contextElement() const
123 return m_animatedProperty->contextElement();
SVGAnimatedProperty.h 34 SVGElement* contextElement() const { return m_contextElement; }
  /external/chromium_org/third_party/WebKit/Source/core/editing/
markup.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/xml/parser/
XMLDocumentParser.cpp 497 bool XMLDocumentParser::parseDocumentFragment(const String& chunk, DocumentFragment* fragment, Element* contextElement, ParserContentPolicy parserContentPolicy)
505 if (contextElement && (contextElement->hasLocalName(HTMLNames::scriptTag) || contextElement->hasLocalName(HTMLNames::styleTag))) {
510 RefPtr<XMLDocumentParser> parser = XMLDocumentParser::create(fragment, contextElement, parserContentPolicy);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Element.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
code_generator_v8.pm 511 if (impl->contextElement()) {
512 if (!DOMDataStore::containsWrapper<V8SVGElement>(impl->contextElement(), isolate))
513 wrap(impl->contextElement(), creationContext, isolate);
514 DOMDataStore::setWrapperReference<V8SVGElement>(wrapper, impl->contextElement(), isolate);
    [all...]

Completed in 433 milliseconds

1 23