Searched refs:encode (Results 1 - 25 of 920) sorted by path

1234567891011>>

/external/ImageMagick/MagickCore/
H A Ddelegate.c100 " <delegate decode=\"eps\" encode=\"pdf\" mode=\"bi\" command=\"&quot;gs&quot; -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 &quot;-sDEVICE=pdfwrite&quot; &quot;-sOutputFile=%o&quot; &quot;-f%i&quot;\"/>"
101 " <delegate decode=\"eps\" encode=\"ps\" mode=\"bi\" command=\"&quot;gs&quot; -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 &quot;-sDEVICE=ps2write&quot; &quot;-sOutputFile=%o&quot; &quot;-f%i&quot;\"/>"
111 " <delegate decode=\"null\" encode=\"mpeg:encode\" stealth=\"True\" command=\"&quot;ffmpeg&quot; -nostdin -v -1 -mbd rd -trellis 2 -cmp 2 -subcmp 2 -g 300 -i &quot;%M%%d.jpg&quot; &quot;%u.%m&quot; 2&gt; &quot;%Z&quot;\"/>"
115 " <delegate decode=\"pdf\" encode=\"eps\" mode=\"bi\" command=\"&quot;gs&quot; -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 &quot;-sDEVICE=eps2write&quot; &quot;-sOutputFile=%o&quot; &quot;-f%i&quot;\"/>"
116 " <delegate decode=\"pdf\" encode=\"ps\" mode=\"bi\" command=\"&quot;gs&quot; -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 &quot;-sDEVICE=ps2write&quot; &quot;-sOutputFile=%o&quot; &quot;-f%i&quot;\"/>"
117 " <delegate decode=\"pnm\" encode=\"ilbm\" mode=\"encode\" command=\"&quot;ppmtoilbm&quot; -24if &quot;%i&quot; &gt; &quot;%o&quot;\"/>"
118 " <delegate decode=\"pnm\" encode=\"launch\" mode=\"encode\" comman
1050 GetDelegateCommand(const ImageInfo *image_info,Image *image, const char *decode,const char *encode,ExceptionInfo *exception) argument
1159 GetDelegateInfo(const char *decode, const char *encode,ExceptionInfo *exception) argument
1624 InvokeDelegate(ImageInfo *image_info, Image *image,const char *decode,const char *encode,ExceptionInfo *exception) argument
[all...]
H A Ddelegate.h33 *encode, member in struct:_DelegateInfo
H A Dutility.c488 % o blob: A pointer to binary data to encode.
490 % o blob_length: the number of bytes to encode.
499 *encode;
515 encode=(char *) AcquireQuantumMemory(blob_length/3+4,4*sizeof(*encode));
516 if (encode == (char *) NULL)
521 encode[i++]=Base64[(int) (*p >> 2)];
522 encode[i++]=Base64[(int) (((*p & 0x03) << 4)+(*(p+1) >> 4))];
523 encode[i++]=Base64[(int) (((*(p+1) & 0x0f) << 2)+(*(p+2) >> 6))];
524 encode[
491 *encode; local
[all...]
/external/ImageMagick/coders/
H A Dwebp.c71 #include <webp/encode.h>
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/Python/tests/
H A Dt012lexerXML.py49 ''.join([l.encode('ascii', 'backslashreplace') for l in r])
H A Dt018llstar.py32 ''.join([l.encode('ascii', 'backslashreplace') for l in r])
H A Dt020fuzzy.py35 ''.join([l.encode('ascii', 'backslashreplace') for l in r])
H A Dt054main.py103 input = u"föö bär".encode('utf-8')
/external/antlr/antlr-3.4/runtime/Python/unittests/
H A Dteststreams.py323 file = StringIO(u'foo\nbär'.encode('utf-8'))
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dstreams.rb398 @string = data.to_s.encode( Encoding::UTF_8 ).freeze
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
H A Dinteractive.rb41 line = line.to_s.encode( Encoding::UTF_8 )
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
H A DActionScriptTarget.java64 * or are in the surrogate pair ranges. For example "/uffff" will not encode properly
66 * if the int is below 255, we encode as hex literal
71 * Ideally this should be improved at a future date. The most optimal way to encode this
78 // encode as hex
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
H A DStreamHandlerTest.java624 byte[] bytes = encoder.encode(
642 assertTrue(Arrays.equals(aos.toByteArray(), encoder.encode(
651 assertFalse(Arrays.equals(aos.toByteArray(), encoder.encode(
655 byte[] b1 = encoder.encode(
658 byte[] b2 = encoder.encode(CharBuffer.wrap("\u6881\u884D\u8F69"))
/external/apache-http/src/org/apache/commons/codec/
H A DBinaryEncoder.java44 byte[] encode(byte[] pArray) throws EncoderException; method in interface:BinaryEncoder
H A DEncoder.java40 * @param pObject An object ot encode
48 Object encode(Object pObject) throws EncoderException; method in interface:Encoder
H A DStringEncoder.java35 * @param pString a String to encode
42 String encode(String pString) throws EncoderException; method in interface:StringEncoder
H A DStringEncoderComparator.java78 Comparable s1 = (Comparable) ((Encoder) this.stringEncoder).encode(o1);
79 Comparable s2 = (Comparable) ((Encoder) this.stringEncoder).encode(o2);
/external/apache-http/src/org/apache/commons/codec/binary/
H A DBase64.java179 * @param binaryData binary data to encode
190 * @param binaryData binary data to encode
232 * @param binaryData Array containing binary data to encode.
504 * @param pObject Object to encode
510 public Object encode(Object pObject) throws EncoderException { method in class:Base64
513 "Parameter supplied to Base64 encode is not a byte[]");
515 return encode((byte[]) pObject);
525 public byte[] encode(byte[] pArray) { method in class:Base64
H A DBinaryCodec.java83 * @see org.apache.commons.codec.BinaryEncoder#encode(byte[])
85 public byte[] encode(byte[] raw) { method in class:BinaryCodec
97 * @see org.apache.commons.codec.Encoder#encode(java.lang.Object)
99 public Object encode(Object raw) throws EncoderException { method in class:BinaryCodec
225 * @see org.apache.commons.codec.BinaryEncoder#encode(byte[])
255 * @see org.apache.commons.codec.BinaryEncoder#encode(byte[])
285 * @see org.apache.commons.codec.BinaryEncoder#encode(byte[])
H A DHex.java172 public byte[] encode(byte[] array) { method in class:Hex
187 public Object encode(Object object) throws EncoderException { method in class:Hex
/external/apache-http/src/org/apache/commons/codec/language/
H A DDoubleMetaphone.java75 * @param value String to encode
86 * @param value String to encode
87 * @param alternate use alternate encode
201 * @param obj Object to encode (should be of type String)
203 * @throws EncoderException encode parameter is not of type String
205 public Object encode(Object obj) throws EncoderException { method in class:DoubleMetaphone
207 throw new EncoderException("DoubleMetaphone encode parameter is not of type String");
215 * @param value String to encode
218 public String encode(String value) { method in class:DoubleMetaphone
H A DMetaphone.java357 * @param pObject Object to encode
363 public Object encode(Object pObject) throws EncoderException { method in class:Metaphone
365 throw new EncoderException("Parameter supplied to Metaphone encode is not of type java.lang.String");
373 * @param pString String object to encode
376 public String encode(String pString) { method in class:Metaphone
H A DRefinedSoundex.java114 * Object to encode
120 public Object encode(Object pObject) throws EncoderException { method in class:RefinedSoundex
122 throw new EncoderException("Parameter supplied to RefinedSoundex encode is not of type java.lang.String");
131 * A String object to encode
134 public String encode(String pString) { method in class:RefinedSoundex
158 * String to encode using the Refined Soundex algorithm
H A DSoundex.java45 * means do not encode.
57 * means do not encode.
131 * Object to encode
139 public Object encode(Object pObject) throws EncoderException { method in class:Soundex
141 throw new EncoderException("Parameter supplied to Soundex encode is not of type java.lang.String");
150 * A String object to encode
155 public String encode(String pString) { method in class:Soundex
165 * the cleaned working string to encode (in upper case).
167 * the character position to encode
249 * String to encode usin
[all...]

Completed in 423 milliseconds

1234567891011>>