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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderListItem.cpp 225 for (RenderObject* currChild = firstChild; currChild; currChild = currChild->nextSibling()) {
226 if (currChild == marker)
229 if (currChild->isInline() && (!currChild->isRenderInline() || curr->generatesLineBoxesForInlineChild(currChild)))
232 if (currChild->isFloating() || currChild->isOutOfFlowPositioned()
    [all...]
RenderBlock.cpp 611 RenderBoxModelObject* currChild = this;
612 RenderObject* currChildNextSibling = currChild->nextSibling();
637 // *after* currChild and append them all to the clone.
641 currChild = curr;
642 currChildNextSibling = currChild->nextSibling();
649 // Now take all the children after currChild and remove them from the fromBlock
    [all...]
InlineFlowBox.cpp 351 for (InlineBox* currChild = firstChild(); currChild; currChild = currChild->nextOnLine()) {
352 if (currChild->isInlineFlowBox()) {
353 InlineFlowBox* currFlow = toInlineFlowBox(currChild);
    [all...]
RenderInline.cpp 375 RenderBoxModelObject* currChild = this;
400 // *after* currChild and append them all to the clone.
401 o = currChild->nextSibling();
411 currChild = curr;
419 // Now take all the children after currChild and remove them from the fromBlock
421 o = currChild->nextSibling();
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
ParseRDF.java 285 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.getNodeType() == Node.ELEMENT_NODE && !found
    [all...]
XMPNormalizer.java 256 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 84 milliseconds