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

/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/xpath/
H A DXMPPathSegment.java14 * A segment of a parsed <code>XMPPath</code>.
133 case XMPPath.STRUCT_FIELD_STEP:
134 case XMPPath.ARRAY_INDEX_STEP:
135 case XMPPath.QUALIFIER_STEP:
136 case XMPPath.ARRAY_LAST_STEP:
138 case XMPPath.QUAL_SELECTOR_STEP:
139 case XMPPath.FIELD_SELECTOR_STEP:
H A DXMPPathParser.java36 * Split an XMPPath expression apart at the conceptual steps, adding the
38 * put in the first (0th) slot in the expanded XMPPath. Check if the top
79 * @return Returns the expandet XMPPath.
84 public static XMPPath expandXPath(String schemaNS, String path) throws XMPException
91 XMPPath expandedXPath = new XMPPath();
99 // Now continue to process the rest of the XMPPath string.
122 if (segment.getKind() == XMPPath.STRUCT_FIELD_STEP)
136 segment.setKind(XMPPath.QUALIFIER_STEP);
141 else if (segment.getKind() == XMPPath
[all...]
H A DXMPPath.java17 * Representates an XMP XMPPath with segment accessor methods.
21 public class XMPPath class
46 /** stores the segments of an XMPPath */
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/
H A DXMPPathFactory.java13 import com.adobe.xmp.impl.xpath.XMPPath;
120 XMPPath fieldPath = XMPPathParser.expandXPath(fieldNS, fieldName);
126 return '/' + fieldPath.getSegment(XMPPath.STEP_ROOT_PROP).getName();
149 XMPPath qualPath = XMPPathParser.expandXPath(qualNS, qualName);
155 return "/?" + qualPath.getSegment(XMPPath.STEP_ROOT_PROP).getName();
224 XMPPath fieldPath = XMPPathParser.expandXPath(fieldNS, fieldName);
230 return arrayName + '[' + fieldPath.getSegment(XMPPath.STEP_ROOT_PROP).getName() +
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DXMPIteratorImpl.java19 import com.adobe.xmp.impl.xpath.XMPPath;
77 XMPPath path = XMPPathParser.expandXPath(schemaNS, propPath);
80 XMPPath basePath = new XMPPath();
H A DXMPNodeUtils.java22 import com.adobe.xmp.impl.xpath.XMPPath;
197 static XMPNode findNode(XMPNode xmpTree, XMPPath xpath, boolean createNodes,
203 throw new XMPException("Empty XMPPath", XMPError.BADXPATH);
213 xpath.getSegment(XMPPath.STEP_SCHEMA).getName(), createNodes);
225 // Now follow the remaining steps of the original XMPPath.
255 xpath.getSegment(i).getKind() == XMPPath.STRUCT_FIELD_STEP &&
452 * @return returns the found or created XMPPath node
464 if (stepKind == XMPPath.STRUCT_FIELD_STEP)
468 else if (stepKind == XMPPath.QUALIFIER_STEP)
482 if (stepKind == XMPPath
[all...]
H A DXMPMetaImpl.java23 import com.adobe.xmp.impl.xpath.XMPPath;
111 XMPPath arrayPath = XMPPathParser.expandXPath(schemaNS, arrayName);
172 XMPPath arrayPath = XMPPathParser.expandXPath(schemaNS, arrayName);
221 XMPPath expPath = XMPPathParser.expandXPath(schemaNS, propName);
290 XMPPath expPath = XMPPathParser.expandXPath(schemaNS, propName);
393 XMPPath arrayPath = XMPPathParser.expandXPath(schemaNS, altTextName);
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 arrayPat
[all...]
H A DXMPUtilsImpl.java22 import com.adobe.xmp.impl.xpath.XMPPath;
104 XMPPath arrayPath = XMPPathParser.expandXPath(schemaNS, arrayName);
354 XMPPath arrayPath = XMPPathParser.expandXPath(schemaNS, arrayName);
426 XMPPath expPath = XMPPathParser.expandXPath(schemaNS, propName);
432 || !Utils.isInternalProperty(expPath.getSegment(XMPPath.STEP_SCHEMA)
433 .getName(), expPath.getSegment(XMPPath.STEP_ROOT_PROP).getName()))
475 XMPPath path = XMPPathParser.expandXPath(info.getNamespace(), info
H A DXMPNormalizer.java24 import com.adobe.xmp.impl.xpath.XMPPath;
101 XMPPath path = XMPPathParser.expandXPath(XMPConst.NS_XMP_MM, "InstanceID");

Completed in 99 milliseconds