Home
last modified time | relevance | path

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

/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()