Searched defs:decode (Results 51 - 75 of 167) sorted by relevance

1234567

/external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/
H A DGifResourceDecoder.java34 public GifDataResource decode(InputStream source, int width, int height) throws IOException { method in class:GifResourceDecoder
/external/pdfium/core/src/fxcodec/jbig2/
H A DJBig2_ArithIntDecoder.cpp17 int CJBig2_ArithIntDecoder::decode(CJBig2_ArithDecoder *pArithDecoder, int *nResult) function in class:CJBig2_ArithIntDecoder
92 int CJBig2_ArithIaidDecoder::decode(CJBig2_ArithDecoder *pArithDecoder, int *nResult) function in class:CJBig2_ArithIaidDecoder
/external/zxing/qr_scanner/src/com/google/zxing/client/android/
H A DDecodeHandler.java53 if (message.what == R.id.decode) {
54 decode((byte[]) message.obj, message.arg1, message.arg2);
63 * reuse the same reader objects from one decode to the next.
69 private void decode(byte[] data, int width, int height) { method in class:DecodeHandler
/external/apache-http/src/org/apache/commons/codec/binary/
H A DBinaryCodec.java109 * @see org.apache.commons.codec.Decoder#decode(java.lang.Object)
111 public Object decode(Object ascii) throws DecoderException { method in class:BinaryCodec
133 * @see org.apache.commons.codec.Decoder#decode(Object)
135 public byte[] decode(byte[] ascii) { method in class:BinaryCodec
145 * @see org.apache.commons.codec.Decoder#decode(Object)
H A DBase64.java199 * @param pObject Object to decode
205 public Object decode(Object pObject) throws DecoderException { method in class:Base64
207 throw new DecoderException("Parameter supplied to Base64 decode is not a byte[]");
209 return decode((byte[]) pObject);
219 public byte[] decode(byte[] pArray) { method in class:Base64
/external/apache-http/src/org/apache/commons/codec/net/
H A DQCodec.java223 * A decoder exception is thrown if a failure condition is encountered during the decode process.
225 public String decode(String pString) throws DecoderException { method in class:QCodec
268 * A decoder exception is thrown if a failure condition is encountered during the decode process.
270 public Object decode(Object pObject) throws DecoderException { method in class:QCodec
274 return decode((String) pObject);
H A DQuotedPrintableCodec.java229 public byte[] decode(byte[] bytes) throws DecoderException { method in class:QuotedPrintableCodec
275 public String decode(String pString, String charset) throws DecoderException, UnsupportedEncodingException { method in class:QuotedPrintableCodec
279 return new String(decode(pString.getBytes(StringEncodings.US_ASCII)), charset);
295 public String decode(String pString) throws DecoderException { method in class:QuotedPrintableCodec
300 return decode(pString, getDefaultCharset());
341 public Object decode(Object pObject) throws DecoderException { method in class:QuotedPrintableCodec
345 return decode((byte[]) pObject);
347 return decode((String) pObject);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
H A DBase64Encoder.java123 * decode the base 64 encoded byte data writing it to the given output stream,
128 public int decode( method in class:Base64Encoder
200 * decode the base 64 encoded String data writing it to the given output stream,
205 public int decode( method in class:Base64Encoder
/external/chromium_org/third_party/WebKit/Source/modules/encoding/
H A DTextDecoder.cpp87 String TextDecoder::decode(ArrayBufferView* input, const Dictionary& options, ExceptionState& exceptionState) function in class:WebCore::TextDecoder
98 String s = m_codec->decode(start, length, flush, m_fatal, sawError);
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/bmp/
H A DBMPImageDecoder.cpp65 decode(true);
83 decode(false);
95 void BMPImageDecoder::decode(bool onlySize) function in class:WebCore::BMPImageDecoder
100 // If we couldn't decode the image but we've received all the data, decoding
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DTextCodecUTF16.cpp70 String TextCodecUTF16::decode(const char* bytes, size_t length, FlushBehavior flush, bool, bool& sawError) function in class:WTF::TextCodecUTF16
H A DTextCodecUserDefined.cpp52 String TextCodecUserDefined::decode(const char* bytes, size_t length, FlushBehavior, bool, bool&) function in class:WTF::TextCodecUserDefined
H A DTextCodecLatin1.cpp116 // ASCII and Latin-1 both decode as Windows Latin-1 although they retain unique identities.
121 String TextCodecLatin1::decode(const char* bytes, size_t length, FlushBehavior, bool, bool&) function in class:WTF::TextCodecLatin1
H A DTextCodecUTF8.cpp268 String TextCodecUTF8::decode(const char* bytes, size_t length, FlushBehavior flush, bool stopOnError, bool& sawError) function in class:WTF::TextCodecUTF8
H A DTextEncoding.cpp62 String TextEncoding::decode(const char* data, size_t length, bool stopOnError, bool& sawError) const function in class:WTF::TextEncoding
67 return newTextCodec(*this)->decode(data, length, DataEOF, stopOnError, sawError);
/external/chromium_org/third_party/simplejson/
H A Ddecoder.py21 _BYTES = '7FF80000000000007FF0000000000000'.decode('hex')
101 on attempt to decode an invalid string. If strict is False then literal
359 the result of any object literal decode with an ordered list of pairs.
401 def decode(self, s, _w=WHITESPACE.match): member in class:JSONDecoder
419 This can be used to decode a JSON document from a string that may
/external/chromium_org/third_party/skia/src/utils/
H A DSkBase64.cpp37 SkBase64::Error SkBase64::decode(const void* srcPtr, size_t size, bool writeDestination) { function in class:SkBase64
156 SkBase64::Error SkBase64::decode(const char* src, size_t len) {
157 Error err = decode(src, len, false);
162 decode(src, len, true);
/external/skia/src/utils/
H A DSkBase64.cpp37 SkBase64::Error SkBase64::decode(const void* srcPtr, size_t size, bool writeDestination) { function in class:SkBase64
156 SkBase64::Error SkBase64::decode(const char* src, size_t len) {
157 Error err = decode(src, len, false);
162 decode(src, len, true);
/external/apache-harmony/support/src/test/java/org/apache/harmony/testframework/
H A DCharWrapperTester.java44 public abstract char[] decode(char[] delegateChars) throws Exception; method in class:CharWrapperTester
91 return decode(delegate.buffer.toString().toCharArray());
H A DWrapperTester.java45 public abstract byte[] decode(byte[] delegateBytes) throws Exception; method in class:WrapperTester
92 return WrapperTester.this.decode(delegate.bytesOut.toByteArray());
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
H A DSignatureSpi.java309 public BigInteger[] decode( method in class:SignatureSpi.StdDSAEncoder
367 public BigInteger[] decode( method in class:SignatureSpi.CVCDSAEncoder
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DImageFrameGenerator.cpp104 // Prevents concurrent decode or scale operations on the same image data.
128 // Prevents concurrent decode or scale operations on the same image data.
188 OwnPtr<ScaledImageFragment> fullSizeImage = decode(index, &decoder);
201 // If decode has failed and resulted an empty image we can save work
229 PassOwnPtr<ScaledImageFragment> ImageFrameGenerator::decode(size_t index, ImageDecoder** decoder) function in class:WebCore::ImageFrameGenerator
231 TRACE_EVENT2("webkit", "ImageFrameGenerator::decode", "width", m_fullSize.width(), "height", m_fullSize.height());
278 // A cache object is considered complete if we can decode a complete frame.
299 // the memory provided by Skia and the decode was complete.
304 // This is to avoid future decode operations writing to the same bitmap.
H A DImageFrameGeneratorTest.cpp115 PassOwnPtr<ScaledImageFragment> decode(size_t index) function in class:WebCore::ImageFrameGeneratorTest
118 OwnPtr<ScaledImageFragment> fragment = m_generator->decode(index, &decoder);
324 OwnPtr<ScaledImageFragment> image = decode(0);
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/ico/
H A DICOImageDecoder.cpp78 decode(0, true);
102 decode(0, true);
125 decode(index, false);
178 void ICOImageDecoder::decode(size_t index, bool onlySize) function in class:WebCore::ICOImageDecoder
183 // If we couldn't decode the image but we've received all the data, decoding
/external/chromium_org/third_party/skia/src/ports/
H A DSkImageDecoder_empty.cpp35 bool SkImageDecoder::decode(SkStream*, SkBitmap*, SkColorType, Mode) { function in class:SkImageDecoder

Completed in 626 milliseconds

1234567