HomeSort by relevance Sort by last modified time
    Searched defs:contextElement (Results 1 - 7 of 7) sorted by null

  /external/webkit/Source/WebCore/svg/
SVGViewSpec.h 53 SVGElement* contextElement() const { return const_cast<SVGElement*>(m_contextElement); }
SVGPathSegWithContext.h 51 SVGPathElement* contextElement() const { return m_element.get(); }
  /external/webkit/Source/WebCore/svg/properties/
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);
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();
  /external/webkit/Source/WebCore/html/parser/
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; }
  /external/webkit/Source/WebCore/html/
HTMLElement.cpp 341 static PassRefPtr<DocumentFragment> createFragmentFromSource(const String& markup, Element* contextElement, ExceptionCode& ec)
343 Document* document = contextElement->document();
348 fragment->parseHTML(markup, contextElement);
352 bool wasValid = fragment->parseXML(markup, contextElement);
589 Element* contextElement = contextElementForInsertion(where, this, ec);
590 if (!contextElement)
594 fragment->parseHTML(markup, contextElement);
596 if (!fragment->parseXML(markup, contextElement))
    [all...]

Completed in 348 milliseconds