Home
last modified time | relevance | path

Searched refs:XMPUtils (Results 1 – 5 of 5) sorted by relevance

/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
DXMPNodeUtils.java21 import com.adobe.xmp.XMPUtils;
401 strValue = XMPUtils.convertFromBoolean(((Boolean) value).booleanValue()); in serializeNodeValue()
405 strValue = XMPUtils.convertFromInteger(((Integer) value).intValue()); in serializeNodeValue()
409 strValue = XMPUtils.convertFromLong(((Long) value).longValue()); in serializeNodeValue()
413 strValue = XMPUtils.convertFromDouble(((Double) value).doubleValue()); in serializeNodeValue()
417 strValue = XMPUtils.convertFromDate((XMPDateTime) value); in serializeNodeValue()
422 strValue = XMPUtils.convertFromDate(dt); in serializeNodeValue()
426 strValue = XMPUtils.encodeBase64((byte[]) value); in serializeNodeValue()
DXMPMetaImpl.java22 import com.adobe.xmp.XMPUtils;
1392 value = new Boolean(XMPUtils.convertToBoolean(rawValue));
1395 value = new Integer(XMPUtils.convertToInteger(rawValue));
1398 value = new Long(XMPUtils.convertToLong(rawValue));
1401 value = new Double(XMPUtils.convertToDouble(rawValue));
1404 value = XMPUtils.convertToDate(rawValue);
1407 XMPDateTime dt = XMPUtils.convertToDate(rawValue);
1411 value = XMPUtils.decodeBase64(rawValue);
DXMPNormalizer.java23 import com.adobe.xmp.XMPUtils;
459 binGPSStamp = XMPUtils.convertToDate(gpsDateTime.getValue()); in fixGPSTimeStamp()
474 binOtherDate = XMPUtils.convertToDate(otherDate.getValue()); in fixGPSTimeStamp()
480 gpsDateTime.setValue(XMPUtils.convertFromDate (binGPSStamp)); in fixGPSTimeStamp()
DXMPUtilsImpl.java21 import com.adobe.xmp.XMPUtils;
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/
DXMPUtils.java24 public class XMPUtils class
27 private XMPUtils() in XMPUtils() method in XMPUtils