HomeSort by relevance Sort by last modified time
    Searched refs:rootParent (Results 1 - 19 of 19) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGTitleElement.cpp 36 Node::InsertionNotificationRequest SVGTitleElement::insertedInto(ContainerNode* rootParent)
38 SVGElement::insertedInto(rootParent);
39 if (!rootParent->inDocument())
46 void SVGTitleElement::removedFrom(ContainerNode* rootParent)
48 SVGElement::removedFrom(rootParent);
49 if (rootParent->inDocument() && document().isSVGDocument())
SVGMPathElement.cpp 78 Node::InsertionNotificationRequest SVGMPathElement::insertedInto(ContainerNode* rootParent)
80 SVGElement::insertedInto(rootParent);
81 if (rootParent->inDocument())
86 void SVGMPathElement::removedFrom(ContainerNode* rootParent)
88 SVGElement::removedFrom(rootParent);
89 notifyParentOfPathChange(rootParent);
90 if (rootParent->inDocument())
SVGVKernElement.cpp 36 Node::InsertionNotificationRequest SVGVKernElement::insertedInto(ContainerNode* rootParent)
38 if (rootParent->inDocument()) {
44 return SVGElement::insertedInto(rootParent);
47 void SVGVKernElement::removedFrom(ContainerNode* rootParent)
53 SVGElement::removedFrom(rootParent);
SVGHKernElement.cpp 37 Node::InsertionNotificationRequest SVGHKernElement::insertedInto(ContainerNode* rootParent)
43 return SVGElement::insertedInto(rootParent);
46 void SVGHKernElement::removedFrom(ContainerNode* rootParent)
52 SVGElement::removedFrom(rootParent);
SVGFEImageElement.cpp 148 Node::InsertionNotificationRequest SVGFEImageElement::insertedInto(ContainerNode* rootParent)
150 SVGFilterPrimitiveStandardAttributes::insertedInto(rootParent);
155 void SVGFEImageElement::removedFrom(ContainerNode* rootParent)
157 SVGFilterPrimitiveStandardAttributes::removedFrom(rootParent);
158 if (rootParent->inDocument())
SVGGlyphElement.cpp 55 Node::InsertionNotificationRequest SVGGlyphElement::insertedInto(ContainerNode* rootParent)
58 return SVGElement::insertedInto(rootParent);
61 void SVGGlyphElement::removedFrom(ContainerNode* rootParent)
63 if (rootParent->inDocument())
65 SVGElement::removedFrom(rootParent);
SVGStyleElement.cpp 128 Node::InsertionNotificationRequest SVGStyleElement::insertedInto(ContainerNode* rootParent)
130 SVGElement::insertedInto(rootParent);
139 void SVGStyleElement::removedFrom(ContainerNode* rootParent)
141 SVGElement::removedFrom(rootParent);
142 if (rootParent->inDocument())
SVGFontFaceUriElement.cpp 78 Node::InsertionNotificationRequest SVGFontFaceUriElement::insertedInto(ContainerNode* rootParent)
81 return SVGElement::insertedInto(rootParent);
SVGTextPathElement.cpp 166 Node::InsertionNotificationRequest SVGTextPathElement::insertedInto(ContainerNode* rootParent)
168 SVGTextContentElement::insertedInto(rootParent);
173 void SVGTextPathElement::removedFrom(ContainerNode* rootParent)
175 SVGTextContentElement::removedFrom(rootParent);
176 if (rootParent->inDocument())
SVGFontFaceElement.cpp 311 Node::InsertionNotificationRequest SVGFontFaceElement::insertedInto(ContainerNode* rootParent)
313 SVGElement::insertedInto(rootParent);
314 if (!rootParent->inDocument()) {
324 void SVGFontFaceElement::removedFrom(ContainerNode* rootParent)
326 SVGElement::removedFrom(rootParent);
328 if (rootParent->inDocument()) {
SVGImageElement.cpp 181 Node::InsertionNotificationRequest SVGImageElement::insertedInto(ContainerNode* rootParent)
183 SVGGraphicsElement::insertedInto(rootParent);
184 if (!rootParent->inDocument())
SVGPathElement.cpp 246 Node::InsertionNotificationRequest SVGPathElement::insertedInto(ContainerNode* rootParent)
248 SVGGeometryElement::insertedInto(rootParent);
253 void SVGPathElement::removedFrom(ContainerNode* rootParent)
255 SVGGeometryElement::removedFrom(rootParent);
SVGScriptElement.cpp 104 Node::InsertionNotificationRequest SVGScriptElement::insertedInto(ContainerNode* rootParent)
106 SVGElement::insertedInto(rootParent);
SVGSVGElement.cpp 543 Node::InsertionNotificationRequest SVGSVGElement::insertedInto(ContainerNode* rootParent)
545 if (rootParent->inDocument()) {
547 if (rootParent->document().isXMLDocument())
558 return SVGGraphicsElement::insertedInto(rootParent);
561 void SVGSVGElement::removedFrom(ContainerNode* rootParent)
563 if (rootParent->inDocument()) {
569 SVGGraphicsElement::removedFrom(rootParent);
SVGUseElement.cpp 109 Node::InsertionNotificationRequest SVGUseElement::insertedInto(ContainerNode* rootParent)
112 SVGGraphicsElement::insertedInto(rootParent);
113 if (!rootParent->inDocument())
123 void SVGUseElement::removedFrom(ContainerNode* rootParent)
125 SVGGraphicsElement::removedFrom(rootParent);
126 if (rootParent->inDocument())
SVGElement.cpp 245 Node::InsertionNotificationRequest SVGElement::insertedInto(ContainerNode* rootParent)
247 Element::insertedInto(rootParent);
253 void SVGElement::removedFrom(ContainerNode* rootParent)
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...]
  /frameworks/base/core/java/android/widget/
RemoteViews.java 238 public abstract void apply(View root, ViewGroup rootParent,
346 public void apply(View root, ViewGroup rootParent, OnClickHandler handler) {
381 public void apply(View root, ViewGroup rootParent, final OnClickHandler handler) {
456 public void apply(View root, ViewGroup rootParent, final OnClickHandler handler) {
552 public void apply(View root, ViewGroup rootParent, OnClickHandler handler) {
557 if (!(rootParent instanceof AppWidgetHostView)) {
615 public void apply(View root, ViewGroup rootParent, OnClickHandler handler) {
620 if (!(rootParent instanceof AppWidgetHostView)) {
634 AppWidgetHostView host = (AppWidgetHostView) rootParent;
688 public void apply(View root, ViewGroup rootParent, final OnClickHandler handler)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/animation/
SVGSMILElement.cpp 310 Node::InsertionNotificationRequest SVGSMILElement::insertedInto(ContainerNode* rootParent)
312 SVGElement::insertedInto(rootParent);
314 if (!rootParent->inDocument())
343 void SVGSMILElement::removedFrom(ContainerNode* rootParent)
345 if (rootParent->inDocument()) {
354 SVGElement::removedFrom(rootParent);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CanvasViewInfo.java 766 UiElementNode rootParent = rootNode.getUiParent();
767 return (rootParent instanceof UiViewElementNode
768 && VIEW_MERGE.equals(rootParent.getDescriptor().getXmlName()));
    [all...]

Completed in 757 milliseconds