Searched defs:decode (Results 26 - 50 of 167) sorted by relevance

1234567

/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DTextEncoding.h48 String decode(const char* str, size_t length) const function in class:WTF::TextEncoding
51 return decode(str, length, false, ignored);
53 String decode(const char*, size_t length, bool stopOnError, bool& sawError) const;
H A DTextCodec.h81 String decode(const char* str, size_t length, FlushBehavior flush = DoNotFlush) function in class:WTF::TextCodec
84 return decode(str, length, flush, false, ignored);
87 virtual String decode(const char*, size_t length, FlushBehavior, bool stopOnError, bool& sawError) = 0;
/external/chromium_org/tools/memory_inspector/memory_inspector/data/
H A Dserialization.py73 def decode(self, json_str): # pylint: disable=W0221 member in class:MmapDecoder
74 d = super(MmapDecoder, self).decode(json_str)
83 def decode(self, json_str): # pylint: disable=W0221 member in class:SymbolsDecoder
84 d = super(SymbolsDecoder, self).decode(json_str)
95 def decode(self, json_str): # pylint: disable=W0221 member in class:NativeHeapDecoder
96 d = super(NativeHeapDecoder, self).decode(json_str)
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DMutf8.java33 public static String decode(ByteInput in, char[] out) throws UTFDataFormatException { method in class:Mutf8
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/
H A DNullDecoder.java17 public Resource<Z> decode(T source, int width, int height) throws IOException { method in class:NullDecoder
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
H A DBitmapDecoder.java10 * @param <T> The type of resource this decoder can decode a {@link Bitmap} from.
16 * @param resource The resource to decode.
24 public Bitmap decode(T resource, BitmapPool bitmapPool, int outWidth, int outHeight, DecodeFormat decodeFormat) method in interface:BitmapDecoder
H A DFileDescriptorBitmapDecoder.java30 public Resource<Bitmap> decode(ParcelFileDescriptor source, int width, int height) throws IOException { method in class:FileDescriptorBitmapDecoder
31 Bitmap bitmap = bitmapDecoder.decode(source, bitmapPool, width, height, decodeFormat);
H A DImageVideoBitmapDecoder.java25 public Resource<Bitmap> decode(ImageVideoWrapper source, int width, int height) throws IOException { method in class:ImageVideoBitmapDecoder
30 result = streamDecoder.decode(source.getStream(), width, height);
41 result = fileDescriptorDecoder.decode(source.getFileDescriptor(), width, height);
H A DStreamBitmapDecoder.java36 public Resource<Bitmap> decode(InputStream source, int width, int height) { method in class:StreamBitmapDecoder
37 Bitmap bitmap = downsampler.decode(source, bitmapPool, width, height, decodeFormat);
H A DVideoBitmapDecoder.java29 public Bitmap decode(ParcelFileDescriptor resource, BitmapPool bitmapPool, int outWidth, int outHeight, method in class:VideoBitmapDecoder
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/
H A DGifFrameResourceDecoder.java20 public Resource<Bitmap> decode(GifDecoder source, int width, int height) throws IOException { method in class:GifFrameResourceDecoder
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/gifbitmap/
H A DGifBitmapWrapperResourceDecoder.java27 public Resource<GifBitmapWrapper> decode(ImageVideoWrapper source, int width, int height) throws IOException { method in class:GifBitmapWrapperResourceDecoder
40 Resource<GifData> gifResource = gifDecoder.decode(bis, width, height);
46 Resource<Bitmap> bitmapResource = bitmapDecoder.decode(source, width, height);
H A DGifBitmapWrapperStreamResourceDecoder.java18 public Resource<GifBitmapWrapper> decode(InputStream source, int width, int height) throws IOException { method in class:GifBitmapWrapperStreamResourceDecoder
19 return gifBitmapDecoder.decode(new ImageVideoWrapper(source, null), width, height);
/external/google-tv-pairing-protocol/java/src/com/google/polo/wire/json/
H A DBase64.java38 public static byte[] decode(byte[] in) { method in class:Base64
39 return decode(in, in.length);
42 public static byte[] decode(byte[] in, int len) { method in class:Base64
/external/javasqlite/src/main/java/SQLite/
H A DStringEncoder.java38 * When decoded with this class' <code>decode</code> method
104 public static byte[] decode(String s) { method in class:StringEncoder
/external/ksoap2/kobjects/org/ksoap2/kobjects/base64/
H A DBase64.java94 static int decode(char c) { method in class:Base64
118 public static byte[] decode(String s) { method in class:Base64
122 decode(s, bos);
129 public static void decode(String s, OutputStream os) method in class:Base64
143 (decode(s.charAt(i)) << 18)
144 + (decode(s.charAt(i + 1)) << 12)
145 + (decode(s.charAt(i + 2)) << 6)
146 + (decode(s.charAt(i + 3)));
/external/oauth/core/src/main/java/net/oauth/http/
H A DHttpMessageDecoder.java35 * given message if this class can't decode it.
37 public static HttpResponseMessage decode(HttpResponseMessage message) method in class:HttpMessageDecoder
/external/smack/src/org/jivesoftware/smack/util/
H A DBase32Encoder.java44 public String decode(String str) { method in class:Base32Encoder
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DBase64.java185 public static final byte[] decode(byte[] src) throws IllegalArgumentException method in class:Base64
247 public static final String decode(String src) method in class:Base64
249 return new String(decode(src.getBytes()));
/external/libvorbis/doc/
H A D01-introduction.tex12 understanding of the Vorbis decode process, which is
40 encoder and simple, low-complexity decoder. Vorbis decode is
62 end before or after packet decode expects.
91 flag in each audio packet, or begin decode at any frame in the stream
96 Vorbis \emph{can} initiate decode at any arbitrary packet within a
101 Thus, Vorbis headers are both required for decode to begin and
116 The Vorbis format is well-defined by its decode specification; any
124 Although Vorbis decode is computationally simple, it may still run
127 `full' decode specification yet still be certified compliant. These
134 component abstractions that perform specific functions in the decode
[all...]
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DCertificateStub.java53 * @see java.security.Certificate#decode(java.io.InputStream)
55 public void decode(InputStream stream) throws KeyException, method in class:CertificateStub
/external/apache-http/src/org/apache/commons/codec/binary/
H A DHex.java130 public byte[] decode(byte[] array) throws DecoderException { method in class:Hex
148 public Object decode(Object object) throws DecoderException { method in class:Hex
/external/apache-http/src/org/apache/commons/codec/net/
H A DURLCodec.java205 public byte[] decode(byte[] bytes) throws DecoderException { method in class:URLCodec
264 public String decode(String pString, String charset) method in class:URLCodec
270 return new String(decode(pString.getBytes(StringEncodings.US_ASCII)), charset);
285 public String decode(String pString) throws DecoderException { method in class:URLCodec
290 return decode(pString, getDefaultCharset());
330 public Object decode(Object pObject) throws DecoderException { method in class:URLCodec
334 return decode((byte[])pObject);
336 return decode((String)pObject);
/external/apache-http/src/org/apache/http/client/utils/
H A DURLEncodedUtils.java141 final String name = decode(nameValue[0], encoding);
144 value = decode(nameValue[1], encoding);
173 private static String decode (final String content, final String encoding) { method in class:URLEncodedUtils
175 return URLDecoder.decode(content,
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DAsyncAudioDecoder.cpp63 m_thread->postTask(new Task(WTF::bind(&AsyncAudioDecoder::decode, audioDataRef.release().leakRef(), sampleRate, successCallback.leakPtr(), errorCallback.leakPtr())));
66 void AsyncAudioDecoder::decode(ArrayBuffer* audioData, float sampleRate, AudioBufferCallback* successCallback, AudioBufferCallback* errorCallback) function in class:WebCore::AsyncAudioDecoder

Completed in 467 milliseconds

1234567