Home
last modified time | relevance | path

Searched refs:isDescendant (Results 1 – 12 of 12) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DFloatingObjects.h54 …gObject> copyToNewContainer(LayoutSize, bool shouldPaint = false, bool isDescendant = false) const;
89 bool isDescendant() const { return m_isDescendant; } in isDescendant() function
90 void setIsDescendant(bool isDescendant) { m_isDescendant = isDescendant; } in setIsDescendant() argument
98 FloatingObject(RenderBox*, Type, const LayoutRect&, bool shouldPaint, bool isDescendant);
DFloatingObjects.cpp64 …t(RenderBox* renderer, Type type, const LayoutRect& frameRect, bool shouldPaint, bool isDescendant) in FloatingObject() argument
71 , m_isDescendant(isDescendant) in FloatingObject()
88 …t> FloatingObject::copyToNewContainer(LayoutSize offset, bool shouldPaint, bool isDescendant) const in copyToNewContainer()
90 …pe(), LayoutRect(frameRect().location() - offset, frameRect().size()), shouldPaint, isDescendant)); in copyToNewContainer()
DRenderBlockFlow.cpp761 if (!floatingObject->isDescendant()) in rebuildFloatsFromIntruding()
862 if (!floatingObject->isDescendant()) { in rebuildFloatsFromIntruding()
1659 if (floatingObject->isDescendant()) in addOverflowFromFloats()
2500 if (floatingObject->isDescendant()) in addOverhangingFloats()
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DDTMDefaultBaseTraversers.java634 protected boolean isDescendant(int subtreeRootIdentity, int identity) in isDescendant() method in DTMDefaultBaseTraversers.DescendantTraverser
710 if (!isDescendant(subtreeRootIdent, current)) in next()
746 if (!isDescendant(subtreeRootIdent, current)) in next()
819 if (!isDescendant(subtreeRootIdent, current)) in next()
DDTMDefaultBaseIterators.java1862 protected boolean isDescendant(int identity) in isDescendant() method in DTMDefaultBaseIterators.DescendantIterator
1888 if (NULL == type ||!isDescendant(node)) { in next()
1960 if (NULL == type ||!isDescendant(node)) { in next()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
DDOMExtension.js657 Node.prototype.isDescendant = function(descendant) method in Node
677 return !!node && (node === this || this.isDescendant(node));
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
DSearchableView.js270 if (WebInspector.currentFocusElement().isDescendant(this._footerElementContainer))
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
DSAX2DTM2.java1557 protected final boolean isDescendant(int identity) in isDescendant() method in SAX2DTM2.DescendantIterator
1601 if (NULL == type ||!isDescendant(node)) { in next()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
DDOMModel.js540 isDescendant: function(descendant) method in WebInspector.DOMNode
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
DElementsPanel.js709 if (nodeUnderMouse && nodeUnderMouse.isDescendant(this.crumbsElement))
DElementsTreeOutline.js428 if (nodeUnderMouse && nodeUnderMouse.isDescendant(this.element))
/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/lib/
Ddojo-1.6.1.js4660 if(!dojo.isDescendant(e.relatedTarget, node)){
5419 dojo.isDescendant = function(/*DomNode|String*/node, /*DomNode|String*/ancestor){ function