Home
last modified time | relevance | path

Searched refs:XMPPath (Results 1 – 9 of 9) sorted by relevance

/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/xpath/
DXMPPathSegment.java133 case XMPPath.STRUCT_FIELD_STEP: in toString()
134 case XMPPath.ARRAY_INDEX_STEP: in toString()
135 case XMPPath.QUALIFIER_STEP: in toString()
136 case XMPPath.ARRAY_LAST_STEP: in toString()
138 case XMPPath.QUAL_SELECTOR_STEP: in toString()
139 case XMPPath.FIELD_SELECTOR_STEP: in toString()
DXMPPathParser.java84 public static XMPPath expandXPath(String schemaNS, String path) throws XMPException in expandXPath()
91 XMPPath expandedXPath = new XMPPath(); in expandXPath()
122 if (segment.getKind() == XMPPath.STRUCT_FIELD_STEP) in expandXPath()
136 segment.setKind(XMPPath.QUALIFIER_STEP); in expandXPath()
141 else if (segment.getKind() == XMPPath.FIELD_SELECTOR_STEP) in expandXPath()
156 segment.setKind(XMPPath.QUAL_SELECTOR_STEP); in expandXPath()
222 XMPPath.STRUCT_FIELD_STEP); in parseStructSegment()
249 segment = new XMPPathSegment(null, XMPPath.ARRAY_INDEX_STEP); in parseIndexSegment()
273 segment = new XMPPathSegment(null, XMPPath.ARRAY_LAST_STEP); in parseIndexSegment()
311 segment = new XMPPathSegment(null, XMPPath.FIELD_SELECTOR_STEP); in parseIndexSegment()
[all …]
DXMPPath.java21 public class XMPPath class
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/
DXMPPathFactory.java13 import com.adobe.xmp.impl.xpath.XMPPath;
120 XMPPath fieldPath = XMPPathParser.expandXPath(fieldNS, fieldName); in composeStructFieldPath()
126 return '/' + fieldPath.getSegment(XMPPath.STEP_ROOT_PROP).getName(); in composeStructFieldPath()
149 XMPPath qualPath = XMPPathParser.expandXPath(qualNS, qualName); in composeQualifierPath()
155 return "/?" + qualPath.getSegment(XMPPath.STEP_ROOT_PROP).getName(); in composeQualifierPath()
224 XMPPath fieldPath = XMPPathParser.expandXPath(fieldNS, fieldName); in composeFieldSelector()
230 return arrayName + '[' + fieldPath.getSegment(XMPPath.STEP_ROOT_PROP).getName() + in composeFieldSelector()
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
DXMPNodeUtils.java22 import com.adobe.xmp.impl.xpath.XMPPath;
197 static XMPNode findNode(XMPNode xmpTree, XMPPath xpath, boolean createNodes, in findNode()
213 xpath.getSegment(XMPPath.STEP_SCHEMA).getName(), createNodes); in findNode()
255 xpath.getSegment(i).getKind() == XMPPath.STRUCT_FIELD_STEP && in findNode()
464 if (stepKind == XMPPath.STRUCT_FIELD_STEP) in followXPathStep()
468 else if (stepKind == XMPPath.QUALIFIER_STEP) in followXPathStep()
482 if (stepKind == XMPPath.ARRAY_INDEX_STEP) in followXPathStep()
486 else if (stepKind == XMPPath.ARRAY_LAST_STEP) in followXPathStep()
490 else if (stepKind == XMPPath.FIELD_SELECTOR_STEP) in followXPathStep()
497 else if (stepKind == XMPPath.QUAL_SELECTOR_STEP) in followXPathStep()
DXMPMetaImpl.java23 import com.adobe.xmp.impl.xpath.XMPPath;
111 XMPPath arrayPath = XMPPathParser.expandXPath(schemaNS, arrayName); in appendArrayItem()
172 XMPPath arrayPath = XMPPathParser.expandXPath(schemaNS, arrayName); in countArrayItems()
221 XMPPath expPath = XMPPathParser.expandXPath(schemaNS, propName); in deleteProperty()
290 XMPPath expPath = XMPPathParser.expandXPath(schemaNS, propName); in doesPropertyExist()
393 XMPPath arrayPath = XMPPathParser.expandXPath(schemaNS, altTextName); in getLocalizedText()
453 XMPPath arrayPath = XMPPathParser.expandXPath(schemaNS, altTextName);
668 final XMPPath expPath = XMPPathParser.expandXPath(schemaNS, propName);
735 final XMPPath expPath = XMPPathParser.expandXPath(schemaNS, propName);
1041 XMPPath arrayPath = XMPPathParser.expandXPath(schemaNS, arrayName);
[all …]
DXMPIteratorImpl.java19 import com.adobe.xmp.impl.xpath.XMPPath;
77 XMPPath path = XMPPathParser.expandXPath(schemaNS, propPath); in XMPIteratorImpl()
80 XMPPath basePath = new XMPPath(); in XMPIteratorImpl()
DXMPUtilsImpl.java22 import com.adobe.xmp.impl.xpath.XMPPath;
104 XMPPath arrayPath = XMPPathParser.expandXPath(schemaNS, arrayName); in catenateArrayItems()
354 XMPPath arrayPath = XMPPathParser.expandXPath(schemaNS, arrayName); in separateFindCreateArray()
426 XMPPath expPath = XMPPathParser.expandXPath(schemaNS, propName); in removeProperties()
432 || !Utils.isInternalProperty(expPath.getSegment(XMPPath.STEP_SCHEMA) in removeProperties()
433 .getName(), expPath.getSegment(XMPPath.STEP_ROOT_PROP).getName())) in removeProperties()
475 XMPPath path = XMPPathParser.expandXPath(info.getNamespace(), info in removeProperties()
DXMPNormalizer.java24 import com.adobe.xmp.impl.xpath.XMPPath;
101 XMPPath path = XMPPathParser.expandXPath(XMPConst.NS_XMP_MM, "InstanceID"); in tweakOldXMP()