Home
last modified time | relevance | path

Searched refs:isDescendant (Results 1 – 11 of 11) 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.cpp636 if (!floatingObject->isDescendant()) in rebuildFloatsFromIntruding()
741 if (!floatingObject->isDescendant()) { in rebuildFloatsFromIntruding()
1536 if (floatingObject->isDescendant()) in addOverflowFromFloats()
2355 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/
DDOMExtension.js499 Node.prototype.isDescendant = function(descendant) method in Node
511 return !!node && (node === this || this.isDescendant(node));
DDOMAgent.js459 isDescendant: function(descendant) method in WebInspector.DOMNode
DElementsPanel.js668 if (nodeUnderMouse && nodeUnderMouse.isDescendant(this.crumbsElement))
DElementsTreeOutline.js406 if (nodeUnderMouse && nodeUnderMouse.isDescendant(this.element))
/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/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