HomeSort by relevance Sort by last modified time
    Searched full:xmp (Results 1 - 25 of 93) sorted by null

1 2 3 4

  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ImageFilterTinyPlanet.java 25 import com.adobe.xmp.XMPException;
26 import com.adobe.xmp.XMPMeta;
82 XMPMeta xmp = preset.getImageLoader().getXmpObject(); local
83 // Do nothing, just use bitmapIn as is if we don't have XMP.
84 if(xmp != null) {
85 bitmapIn = applyXmp(bitmapIn, xmp, w);
108 private Bitmap applyXmp(Bitmap bitmapIn, XMPMeta xmp, int intermediateWidth) {
111 getInt(xmp, CROPPED_AREA_IMAGE_WIDTH_PIXELS);
113 getInt(xmp, CROPPED_AREA_IMAGE_HEIGHT_PIXELS);
115 getInt(xmp, CROPPED_AREA_FULL_PANO_WIDTH_PIXELS)
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPSerializerHelper.java 10 package com.adobe.xmp.impl;
16 import com.adobe.xmp.XMPException;
17 import com.adobe.xmp.options.SerializeOptions;
33 * @param xmp a metadata implementation object
38 public static void serialize(XMPMetaImpl xmp, OutputStream out,
47 xmp.sort();
49 new XMPSerializerRDF().serialize(xmp, out, options);
58 * @param xmp a metadata implementation object
64 public static String serializeToString(XMPMetaImpl xmp, SerializeOptions options)
72 serialize(xmp, out, options)
    [all...]
ParseRDF.java 10 package com.adobe.xmp.impl;
20 import com.adobe.xmp.XMPConst;
21 import com.adobe.xmp.XMPError;
22 import com.adobe.xmp.XMPException;
23 import com.adobe.xmp.XMPMetaFactory;
24 import com.adobe.xmp.XMPSchemaRegistry;
25 import com.adobe.xmp.options.PropertyOptions;
80 * The main parsing method. The XML tree is walked through from the root node and and XMP tree
81 * is created. This is a raw parse, the normalisation of the XMP tree happens outside.
84 * @return Returns an XMP metadata object (not normalized
89 XMPMetaImpl xmp = new XMPMetaImpl(); local
    [all...]
ParameterAsserts.java 10 package com.adobe.xmp.impl;
12 import com.adobe.xmp.XMPConst;
13 import com.adobe.xmp.XMPError;
14 import com.adobe.xmp.XMPException;
15 import com.adobe.xmp.XMPMeta;
135 * Asserts that the xmp object is of this implemention
137 * @param xmp the XMP object
140 public static void assertImplementation(XMPMeta xmp) throws XMPException
142 if (xmp == null
    [all...]
XMPNormalizer.java 10 package com.adobe.xmp.impl;
17 import com.adobe.xmp.XMPConst;
18 import com.adobe.xmp.XMPDateTime;
19 import com.adobe.xmp.XMPError;
20 import com.adobe.xmp.XMPException;
21 import com.adobe.xmp.XMPMeta;
22 import com.adobe.xmp.XMPMetaFactory;
23 import com.adobe.xmp.XMPUtils;
24 import com.adobe.xmp.impl.xpath.XMPPath;
25 import com.adobe.xmp.impl.xpath.XMPPathParser
    [all...]
XMPMetaParser.java 10 package com.adobe.xmp.impl;
31 import com.adobe.xmp.XMPConst;
32 import com.adobe.xmp.XMPError;
33 import com.adobe.xmp.XMPException;
34 import com.adobe.xmp.XMPMeta;
35 import com.adobe.xmp.options.ParseOptions;
63 * Parses the input source into an XMP metadata object, including
67 * a byte buffer containing the XMP packet.
69 * @return Returns the resulting XMP metadata object
85 XMPMetaImpl xmp = ParseRDF.parse((Node) result[0]) local
    [all...]
XMPUtilsImpl.java 12 package com.adobe.xmp.impl;
16 import com.adobe.xmp.XMPConst;
17 import com.adobe.xmp.XMPError;
18 import com.adobe.xmp.XMPException;
19 import com.adobe.xmp.XMPMeta;
20 import com.adobe.xmp.XMPMetaFactory;
21 import com.adobe.xmp.XMPUtils;
22 import com.adobe.xmp.impl.xpath.XMPPath;
23 import com.adobe.xmp.impl.xpath.XMPPathParser;
24 import com.adobe.xmp.options.PropertyOptions
    [all...]
XMPIteratorImpl.java 10 package com.adobe.xmp.impl;
16 import com.adobe.xmp.XMPError;
17 import com.adobe.xmp.XMPException;
18 import com.adobe.xmp.XMPIterator;
19 import com.adobe.xmp.impl.xpath.XMPPath;
20 import com.adobe.xmp.impl.xpath.XMPPathParser;
21 import com.adobe.xmp.options.IteratorOptions;
22 import com.adobe.xmp.options.PropertyOptions;
23 import com.adobe.xmp.properties.XMPPropertyInfo;
28 * Iterates the XMP Tree according to a set of options
    [all...]
XMPSchemaRegistryImpl.java 10 package com.adobe.xmp.impl;
21 import com.adobe.xmp.XMPConst;
22 import com.adobe.xmp.XMPError;
23 import com.adobe.xmp.XMPException;
24 import com.adobe.xmp.XMPSchemaRegistry;
25 import com.adobe.xmp.options.AliasOptions;
26 import com.adobe.xmp.properties.XMPAliasInfo;
30 * The schema registry handles the namespaces, aliases and global options for the XMP Toolkit. There
178 * Register the standard namespaces of schemas and types that are included in the XMP
196 registerNamespace(NS_XMP, "xmp");
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/
XMPMetaFactory.java 10 package com.adobe.xmp;
15 import com.adobe.xmp.impl.XMPMetaImpl;
16 import com.adobe.xmp.impl.XMPMetaParser;
17 import com.adobe.xmp.impl.XMPSchemaRegistryImpl;
18 import com.adobe.xmp.impl.XMPSerializerHelper;
19 import com.adobe.xmp.options.ParseOptions;
20 import com.adobe.xmp.options.SerializeOptions;
77 * These functions support parsing serialized RDF into an XMP object, and serailizing an XMP
108 * @param packet a String contain an XMP-file
    [all...]
XMPUtils.java 10 package com.adobe.xmp;
12 import com.adobe.xmp.impl.Base64;
13 import com.adobe.xmp.impl.ISO8601Converter;
14 import com.adobe.xmp.impl.XMPUtilsImpl;
15 import com.adobe.xmp.options.PropertyOptions;
19 * Utility methods for XMP. I included only those that are different from the
36 * @param xmp
37 * The XMP object containing the array to be catenated.
57 public static String catenateArrayItems(XMPMeta xmp, String schemaNS, String arrayName,
61 .catenateArrayItems(xmp, schemaNS, arrayName, separator, quotes, allowCommas)
    [all...]
XMPConst.java 10 package com.adobe.xmp;
14 * Common constants for the XMP Toolkit.
37 /** The XML namespace Adobe XMP Metadata. */
41 /** The XML namespace for the XMP "basic" schema. */
43 /** The XML namespace for the XMP copyright schema. */
45 /** The XML namespace for the XMP digital asset management schema. */
50 String NS_XMP_NOTE = "http://ns.adobe.com/xmp/note/";
95 String NS_WAV = "http://ns.adobe.com/xmp/wav/1.0/";
98 // XMP namespaces that are Adobe private
101 String NS_DM = "http://ns.adobe.com/xmp/1.0/DynamicMedia/"
    [all...]
XMPIterator.java 10 package com.adobe.xmp;
18 * schema and properties within an XMP object.
20 * The iteration over the schema and properties within an XMP object is very
21 * complex. It is helpful to have a thorough understanding of the XMP data tree.
22 * One way to learn this is to create some complex XMP and examine the output of
23 * <code>XMPMeta#toString</code>. This is also described in the XMP
24 * Specification, in the XMP Data Model chapter.
26 * The top of the XMP data tree is a single root node. This does not explicitly
56 * The default is to return the full xmp path.
XMPException.java 10 package com.adobe.xmp;
13 * This exception wraps all errors that occur in the XMP Toolkit.
19 /** the errorCode of the XMP toolkit */
XMPVersionInfo.java 10 package com.adobe.xmp;
13 * XMP Toolkit Version Information.
15 * Version information for the XMP toolkit is stored in the jar-library and available through a
  /external/webkit/LayoutTests/fast/dom/DOMImplementation/
createHTMLDocument-title.html 8 document.write((result == 'foo</title>') ? "PASS" : ("FAIL. Title is:<xmp>" + result + "</xmp>"));
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/options/
package.html 13 <li>ParseOptions - used to configure the parsing of xmp metadata packets
14 <li>SerializationOptions - used to control the serialization of xmp metadata packets
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/properties/
XMPProperty.java 10 package com.adobe.xmp.properties;
12 import com.adobe.xmp.XMPMeta;
13 import com.adobe.xmp.options.PropertyOptions;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/tools/
SaveCopyTask.java 111 Object xmp = null; local
116 xmp = XmpUtilHelper.extractXMPMeta(is);
118 Log.w(LOGTAG, "Failed to get XMP data from image: ", e);
123 return xmp;
126 public boolean putPanoramaXMPData(File file, Object xmp) {
127 if (xmp != null) {
128 return XmpUtilHelper.writeXMPMeta(file.getAbsolutePath(), xmp);
190 Object xmp = getPanoramaXMPData(sourceUri, preset); local
205 putPanoramaXMPData(this.destinationFile, xmp);
  /external/webkit/Tools/iExploder/iexploder-1.7.2/src/html-tags/
mozilla 119 xmp
webkit 133 xmp
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/xpath/
XMPPath.java 10 package com.adobe.xmp.impl.xpath;
17 * Representates an XMP XMPPath with segment accessor methods.
72 * @return Returns the size of the xmp path.
81 * Serializes the normalized XMP-path.
  /packages/apps/Gallery2/src_pd/com/android/gallery3d/util/
XmpUtilHelper.java 19 import com.adobe.xmp.XMPMeta;
  /external/webkit/LayoutTests/fast/xpath/
text-nodes.html 26 document.write("<xmp>" + src + "</xmp>");
  /external/libgsm/src/
rpe.c 349 static void APCM_inverse_quantization P4((xMc,mant,exp,xMp),
353 register word * xMp) /* [0..12] OUT */
356 * samples to obtain the xMp[0..12] array. Table 4.6 is used to get
381 *xMp++ = gsm_asr( temp, temp2 );
387 static void RPE_grid_positioning P3((Mc,xMp,ep),
389 register word * xMp, /* [0..12] IN */
395 * which is the grid position selection and the xMp[0..12] decoded
409 case 0: *ep++ = *xMp++;
419 ep[ Mc + (3*i) ] = xMp[i];
459 word xM[13], xMp[13]
    [all...]

Completed in 1779 milliseconds

1 2 3 4