Searched defs:rootParent (Results 1 - 18 of 18) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGTitleElement.cpp36 Node::InsertionNotificationRequest SVGTitleElement::insertedInto(ContainerNode* rootParent) argument
38 SVGElement::insertedInto(rootParent);
39 if (!rootParent->inDocument())
46 void SVGTitleElement::removedFrom(ContainerNode* rootParent) argument
48 SVGElement::removedFrom(rootParent);
49 if (rootParent->inDocument() && document().isSVGDocument())
H A DSVGHKernElement.cpp37 Node::InsertionNotificationRequest SVGHKernElement::insertedInto(ContainerNode* rootParent) argument
43 return SVGElement::insertedInto(rootParent);
46 void SVGHKernElement::removedFrom(ContainerNode* rootParent) argument
52 SVGElement::removedFrom(rootParent);
H A DSVGVKernElement.cpp36 Node::InsertionNotificationRequest SVGVKernElement::insertedInto(ContainerNode* rootParent) argument
38 if (rootParent->inDocument()) {
44 return SVGElement::insertedInto(rootParent);
47 void SVGVKernElement::removedFrom(ContainerNode* rootParent) argument
53 SVGElement::removedFrom(rootParent);
H A DSVGFontFaceUriElement.cpp78 Node::InsertionNotificationRequest SVGFontFaceUriElement::insertedInto(ContainerNode* rootParent) argument
81 return SVGElement::insertedInto(rootParent);
H A DSVGFEImageElement.cpp148 Node::InsertionNotificationRequest SVGFEImageElement::insertedInto(ContainerNode* rootParent) argument
150 SVGFilterPrimitiveStandardAttributes::insertedInto(rootParent);
155 void SVGFEImageElement::removedFrom(ContainerNode* rootParent) argument
157 SVGFilterPrimitiveStandardAttributes::removedFrom(rootParent);
158 if (rootParent->inDocument())
H A DSVGGlyphElement.cpp55 Node::InsertionNotificationRequest SVGGlyphElement::insertedInto(ContainerNode* rootParent) argument
58 return SVGElement::insertedInto(rootParent);
61 void SVGGlyphElement::removedFrom(ContainerNode* rootParent) argument
63 if (rootParent->inDocument())
65 SVGElement::removedFrom(rootParent);
H A DSVGImageElement.cpp181 Node::InsertionNotificationRequest SVGImageElement::insertedInto(ContainerNode* rootParent) argument
183 SVGGraphicsElement::insertedInto(rootParent);
184 if (!rootParent->inDocument())
H A DSVGMPathElement.cpp78 Node::InsertionNotificationRequest SVGMPathElement::insertedInto(ContainerNode* rootParent) argument
80 SVGElement::insertedInto(rootParent);
81 if (rootParent->inDocument())
86 void SVGMPathElement::removedFrom(ContainerNode* rootParent) argument
88 SVGElement::removedFrom(rootParent);
89 notifyParentOfPathChange(rootParent);
90 if (rootParent->inDocument())
H A DSVGTextPathElement.cpp166 Node::InsertionNotificationRequest SVGTextPathElement::insertedInto(ContainerNode* rootParent) argument
168 SVGTextContentElement::insertedInto(rootParent);
173 void SVGTextPathElement::removedFrom(ContainerNode* rootParent) argument
175 SVGTextContentElement::removedFrom(rootParent);
176 if (rootParent->inDocument())
H A DSVGFontFaceElement.cpp311 Node::InsertionNotificationRequest SVGFontFaceElement::insertedInto(ContainerNode* rootParent) argument
313 SVGElement::insertedInto(rootParent);
314 if (!rootParent->inDocument()) {
324 void SVGFontFaceElement::removedFrom(ContainerNode* rootParent) argument
326 SVGElement::removedFrom(rootParent);
328 if (rootParent->inDocument()) {
H A DSVGScriptElement.cpp104 Node::InsertionNotificationRequest SVGScriptElement::insertedInto(ContainerNode* rootParent) argument
106 SVGElement::insertedInto(rootParent);
H A DSVGStyleElement.cpp128 Node::InsertionNotificationRequest SVGStyleElement::insertedInto(ContainerNode* rootParent) argument
130 SVGElement::insertedInto(rootParent);
139 void SVGStyleElement::removedFrom(ContainerNode* rootParent) argument
141 SVGElement::removedFrom(rootParent);
142 if (rootParent->inDocument())
H A DSVGPathElement.cpp246 Node::InsertionNotificationRequest SVGPathElement::insertedInto(ContainerNode* rootParent) argument
248 SVGGeometryElement::insertedInto(rootParent);
253 void SVGPathElement::removedFrom(ContainerNode* rootParent) argument
255 SVGGeometryElement::removedFrom(rootParent);
H A DSVGUseElement.cpp109 Node::InsertionNotificationRequest SVGUseElement::insertedInto(ContainerNode* rootParent) argument
112 SVGGraphicsElement::insertedInto(rootParent);
113 if (!rootParent->inDocument())
123 void SVGUseElement::removedFrom(ContainerNode* rootParent) argument
125 SVGGraphicsElement::removedFrom(rootParent);
126 if (rootParent->inDocument())
H A DSVGSVGElement.cpp543 Node::InsertionNotificationRequest SVGSVGElement::insertedInto(ContainerNode* rootParent) argument
545 if (rootParent->inDocument()) {
547 if (rootParent->document().isXMLDocument())
558 return SVGGraphicsElement::insertedInto(rootParent);
561 void SVGSVGElement::removedFrom(ContainerNode* rootParent) argument
563 if (rootParent->inDocument()) {
569 SVGGraphicsElement::removedFrom(rootParent);
H A DSVGElement.cpp245 Node::InsertionNotificationRequest SVGElement::insertedInto(ContainerNode* rootParent) argument
247 Element::insertedInto(rootParent);
253 void SVGElement::removedFrom(ContainerNode* rootParent) argument
255 bool wasInDocument = rootParent->inDocument();
261 if (rootParent->isSVGElement() && !parentNode()) {
262 ASSERT(toSVGElement(rootParent)->m_elementsWithRelativeLengths.contains(this));
263 toSVGElement(rootParent)->updateRelativeLengthsInformation(false, this);
269 ASSERT_WITH_SECURITY_IMPLICATION(!rootParent->isSVGElement() || !toSVGElement(rootParent)->m_elementsWithRelativeLengths.contains(this));
271 Element::removedFrom(rootParent);
[all...]
/external/chromium_org/third_party/WebKit/Source/core/svg/animation/
H A DSVGSMILElement.cpp310 Node::InsertionNotificationRequest SVGSMILElement::insertedInto(ContainerNode* rootParent) argument
312 SVGElement::insertedInto(rootParent);
314 if (!rootParent->inDocument())
343 void SVGSMILElement::removedFrom(ContainerNode* rootParent) argument
345 if (rootParent->inDocument()) {
354 SVGElement::removedFrom(rootParent);
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 184 milliseconds