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

  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
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);
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...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderInline.cpp 407 RenderBoxModelObject* currChild = this;
432 // *after* currChild and append them all to the clone.
433 o = currChild->nextSibling();
443 currChild = curr;
451 // Now take all the children after currChild and remove them from the fromBlock
453 o = currChild->nextSibling();
    [all...]
RenderBlock.cpp 633 RenderBoxModelObject* currChild = this;
634 RenderObject* currChildNextSibling = currChild->nextSibling();
659 // *after* currChild and append them all to the clone.
663 currChild = curr;
664 currChildNextSibling = currChild->nextSibling();
671 // Now take all the children after currChild and remove them from the fromBlock
    [all...]

Completed in 90 milliseconds