Searched refs:currChild (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderListItem.cpp230 for (RenderObject* currChild = firstChild; currChild; currChild = currChild->nextSibling()) {
231 if (currChild == marker)
234 if (currChild->isInline() && (!currChild->isRenderInline() || curr->generatesLineBoxesForInlineChild(currChild)))
237 if (currChild->isFloating() || currChild
[all...]
H A DRenderBlock.cpp614 RenderBoxModelObject* currChild = this; local
615 RenderObject* currChildNextSibling = currChild->nextSibling();
640 // *after* currChild and append them all to the clone.
644 currChild = curr;
645 currChildNextSibling = currChild->nextSibling();
652 // Now take all the children after currChild and remove them from the fromBlock
4135 RenderObject* currChild = firstLetterBlock->slowFirstChild();
4137 while (currChild) {
4138 if (currChild->isText()) {
4141 length = firstLetterLength(toRenderText(currChild)
[all...]
H A DInlineFlowBox.cpp353 for (InlineBox* currChild = firstChild(); currChild; currChild = currChild->nextOnLine()) {
354 if (currChild->isInlineFlowBox()) {
355 InlineFlowBox* currFlow = toInlineFlowBox(currChild);
H A DRenderInline.cpp388 RenderBoxModelObject* currChild = this; local
413 // *after* currChild and append them all to the clone.
414 o = currChild->nextSibling();
424 currChild = curr;
432 // Now take all the children after currChild and remove them from the fromBlock
434 o = currChild->nextSibling();
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DParseRDF.java285 Node currChild = xmlParent.getChildNodes().item(i);
286 if (isWhitespaceNode(currChild))
290 else if (currChild.getNodeType() != Node.ELEMENT_NODE)
296 rdf_PropertyElement(xmp, xmpParent, currChild, isTopLevel);
452 Node currChild = xmlNode.getChildNodes().item(i);
453 if (currChild.getNodeType() != Node.TEXT_NODE)
526 Node currChild = null;
531 currChild = xmlNode.getChildNodes().item(i);
532 if (!isWhitespaceNode(currChild))
534 if (currChild
[all...]
H A DXMPNormalizer.java256 XMPNode currChild = (XMPNode) it.next();
257 if (currChild.getOptions().isCompositeProperty())
262 else if (!currChild.getOptions().getHasLanguage())
264 String childValue = currChild.getValue();
274 currChild.addQualifier(repairLang);

Completed in 329 milliseconds