| /external/skia/src/utils/ |
| SkBase64.cpp | 37 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/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
| Base64.java | 177 * Decode the given byte[]. 185 public static final byte[] decode(byte[] src) throws IllegalArgumentException method in class:Base64 242 * Decode the given string. 247 public static final String decode(String src) method in class:Base64 249 return new String(decode(src.getBytes()));
|
| /frameworks/opt/net/voip/src/jni/rtp/ |
| G711Codec.cpp | 42 int decode(int16_t *samples, int count, void *payload, int length); 67 int UlawCodec::decode(int16_t *samples, int count, void *payload, int length) function in class:__anon38994::UlawCodec 93 int decode(int16_t *samples, int count, void *payload, int length); 117 int AlawCodec::decode(int16_t *samples, int count, void *payload, int length) function in class:__anon38994::AlawCodec
|
| /libcore/luni/src/main/java/java/nio/charset/ |
| ModifiedUtf8.java | 35 public static String decode(byte[] in, char[] out, int offset, int utfSize) throws UTFDataFormatException { method in class:ModifiedUtf8
|
| /libcore/luni/src/main/java/org/apache/harmony/security/asn1/ |
| ASN1Explicit.java | 62 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Explicit 70 in.content = type.decode(in);
|
| ASN1GeneralizedTime.java | 65 public Object decode(BerInputStream in) throws IOException { method in class:ASN1GeneralizedTime
|
| ASN1Implicit.java | 102 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Implicit 116 in.content = type.decode(in);
|
| /libcore/support/src/test/java/org/apache/harmony/security/tests/support/ |
| CertificateStub.java | 53 * @see java.security.Certificate#decode(java.io.InputStream) 55 public void decode(InputStream stream) throws KeyException, method in class:CertificateStub
|
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/ |
| bz2_codec.py | 4 will return Python string objects for both encode and decode. 51 def decode(self, input, errors='strict'): member in class:Codec 76 def decode(self, input, final=False): member in class:IncrementalDecoder 97 decode=bz2_decode,
|
| idna.py | 130 # Step 5: Decode using PUNYCODE 131 result = label1.decode("punycode") 168 def decode(self,input,errors='strict'): member in class:Codec 283 decode=Codec().decode,
|
| zlib_codec.py | 4 will return Python string objects for both encode and decode. 50 def decode(self, input, errors='strict'): member in class:Codec 75 def decode(self, input, final=False): member in class:IncrementalDecoder 97 decode=zlib_decode,
|
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
| quopri.py | 7 __all__ = ["encode", "decode", "encodestring", "decodestring"] 116 def decode(input, output, header = 0): function 119 If 'header' is true, decode underscore as space (per RFC 1522).""" 165 decode(infp, outfp, header = header) 202 print "-d: decode; default encode" 226 decode(fp, sys.stdout)
|
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/ |
| bz2_codec.py | 4 will return Python string objects for both encode and decode. 51 def decode(self, input, errors='strict'): member in class:Codec 76 def decode(self, input, final=False): member in class:IncrementalDecoder 97 decode=bz2_decode,
|
| idna.py | 130 # Step 5: Decode using PUNYCODE 131 result = label1.decode("punycode") 168 def decode(self,input,errors='strict'): member in class:Codec 283 decode=Codec().decode,
|
| zlib_codec.py | 4 will return Python string objects for both encode and decode. 50 def decode(self, input, errors='strict'): member in class:Codec 75 def decode(self, input, final=False): member in class:IncrementalDecoder 97 decode=zlib_decode,
|
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
| quopri.py | 7 __all__ = ["encode", "decode", "encodestring", "decodestring"] 116 def decode(input, output, header = 0): function 119 If 'header' is true, decode underscore as space (per RFC 1522).""" 165 decode(infp, outfp, header = header) 202 print "-d: decode; default encode" 226 decode(fp, sys.stdout)
|
| /external/apache-http/src/org/apache/commons/codec/binary/ |
| BinaryCodec.java | 109 * @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)
|
| Hex.java | 130 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/ |
| QCodec.java | 223 * 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);
|
| URLCodec.java | 205 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/ |
| URLEncodedUtils.java | 141 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/platform/image-decoders/ico/ |
| ICOImageDecoder.cpp | 78 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/WebKit/Source/wtf/text/ |
| TextCodecLatin1.cpp | 116 // 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
|
| TextCodecUTF8.cpp | 268 String TextCodecUTF8::decode(const char* bytes, size_t length, FlushBehavior flush, bool stopOnError, bool& sawError) function in class:WTF::TextCodecUTF8
|
| TextEncoding.cpp | 62 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);
|