Home
last modified time | relevance | path

Searched refs:currChild (Results 1 – 7 of 7) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderListItem.cpp230 for (RenderObject* currChild = firstChild; currChild; currChild = currChild->nextSibling()) { in getParentOfFirstLineBox() local
231 if (currChild == marker) in getParentOfFirstLineBox()
234 …if (currChild->isInline() && (!currChild->isRenderInline() || curr->generatesLineBoxesForInlineChi… in getParentOfFirstLineBox()
237 if (currChild->isFloating() || currChild->isOutOfFlowPositioned()) in getParentOfFirstLineBox()
240 …if (!currChild->isRenderBlockFlow() || (currChild->isBox() && toRenderBox(currChild)->isWritingMod… in getParentOfFirstLineBox()
243 if (curr->isListItem() && inQuirksMode && currChild->node() && in getParentOfFirstLineBox()
244 (isHTMLUListElement(*currChild->node()) || isHTMLOListElement(*currChild->node()))) in getParentOfFirstLineBox()
247 RenderObject* lineBox = getParentOfFirstLineBox(toRenderBlockFlow(currChild), marker); in getParentOfFirstLineBox()
DRenderBlock.cpp614 RenderBoxModelObject* currChild = this; in splitBlocks() local
615 RenderObject* currChildNextSibling = currChild->nextSibling(); in splitBlocks()
644 currChild = curr; in splitBlocks()
645 currChildNextSibling = currChild->nextSibling(); in splitBlocks()
4135 RenderObject* currChild = firstLetterBlock->slowFirstChild(); in updateFirstLetter() local
4137 while (currChild) { in updateFirstLetter()
4138 if (currChild->isText()) { in updateFirstLetter()
4141 length = firstLetterLength(toRenderText(currChild)->originalText()); in updateFirstLetter()
4144 currChild = currChild->nextSibling(); in updateFirstLetter()
4145 } else if (currChild->isListMarker()) { in updateFirstLetter()
[all …]
DInlineFlowBox.cpp353 for (InlineBox* currChild = firstChild(); currChild; currChild = currChild->nextOnLine()) { in determineSpacingForFlowBoxes() local
354 if (currChild->isInlineFlowBox()) { in determineSpacingForFlowBoxes()
355 InlineFlowBox* currFlow = toInlineFlowBox(currChild); in determineSpacingForFlowBoxes()
DRenderInline.cpp388 RenderBoxModelObject* currChild = this; in splitInlines() local
414 o = currChild->nextSibling(); in splitInlines()
424 currChild = curr; in splitInlines()
434 o = currChild->nextSibling(); in splitInlines()
/external/chromium_org/third_party/WebKit/Source/build/scripts/templates/
DStyleBuilderFunctions.cpp.tmpl391 FillLayer* currChild = state.style()->{{access_layers}}();
392 currChild->set{{fill_type}}(FillLayer::initialFill{{fill_type}}({{fill_layer_type}}));
393 for (currChild = currChild->next(); currChild; currChild = currChild->next())
394 currChild->clear{{fill_type}}();
399 FillLayer* currChild = state.style()->{{access_layers}}();
403 if (!currChild) {
405 currChild = new FillLayer({{fill_layer_type}});
406 prevChild->setNext(currChild);
408 currChild->set{{fill_type}}(currParent->{{fill_type|lower_first}}());
409 prevChild = currChild;
[all …]
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
DParseRDF.java285 Node currChild = xmlParent.getChildNodes().item(i); in rdf_PropertyElementList() local
286 if (isWhitespaceNode(currChild)) in rdf_PropertyElementList()
290 else if (currChild.getNodeType() != Node.ELEMENT_NODE) in rdf_PropertyElementList()
296 rdf_PropertyElement(xmp, xmpParent, currChild, isTopLevel); in rdf_PropertyElementList()
452 Node currChild = xmlNode.getChildNodes().item(i); in rdf_PropertyElement() local
453 if (currChild.getNodeType() != Node.TEXT_NODE) in rdf_PropertyElement()
526 Node currChild = null; in rdf_ResourcePropertyElement() local
531 currChild = xmlNode.getChildNodes().item(i); in rdf_ResourcePropertyElement()
532 if (!isWhitespaceNode(currChild)) in rdf_ResourcePropertyElement()
534 if (currChild.getNodeType() == Node.ELEMENT_NODE && !found) in rdf_ResourcePropertyElement()
[all …]
DXMPNormalizer.java256 XMPNode currChild = (XMPNode) it.next(); in repairAltText() local
257 if (currChild.getOptions().isCompositeProperty()) in repairAltText()
262 else if (!currChild.getOptions().getHasLanguage()) in repairAltText()
264 String childValue = currChild.getValue(); in repairAltText()
274 currChild.addQualifier(repairLang); in repairAltText()