/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/ |
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/graphics/ |
ImageFrameGenerator.cpp | 84 // Prevents concurrent decode or scale operations on the same image data. 183 OwnPtr<ScaledImageFragment> fullSizeImage = decode(index, &decoder); 196 // If decode has failed and resulted an empty image we can save work 226 PassOwnPtr<ScaledImageFragment> ImageFrameGenerator::decode(size_t index, ImageDecoder** decoder) function in class:WebCore::ImageFrameGenerator 228 TRACE_EVENT2("webkit", "ImageFrameGenerator::decode", "width", m_fullSize.width(), "height", m_fullSize.height()); 285 // decode operations writing to the same bitmap.
|
/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, bool, bool, bool&) function in class:WTF::TextCodecLatin1
|
TextCodecUTF8.cpp | 268 String TextCodecUTF8::decode(const char* bytes, size_t length, bool flush, bool stopOnError, bool& sawError) function in class:WTF::TextCodecUTF8
|
TextEncoding.cpp | 58 String TextEncoding::decode(const char* data, size_t length, bool stopOnError, bool& sawError) const function in class:WTF::TextEncoding 63 return newTextCodec(*this)->decode(data, length, true, stopOnError, sawError);
|
/external/chromium_org/third_party/simplejson/ |
decoder.py | 21 _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 413 """Decode a JSON document from ``s`` (a ``str`` or ``unicode`` 419 This can be used to decode a JSON document from a string that may
|
/external/smack/src/com/kenai/jbosh/ |
GZIPCodec.java | 77 * Uncompress/decode the data provided using the GZIP format. 83 public static byte[] decode(final byte[] compressed) throws IOException { method in class:GZIPCodec
|
ZLIBCodec.java | 77 * Uncompress/decode the data provided using the ZLIB format. 83 public static byte[] decode(final byte[] compressed) throws IOException { method in class:ZLIBCodec
|
/external/smack/src/org/jivesoftware/smack/util/ |
Base32Encoder.java | 44 public String decode(String str) { method in class:Base32Encoder
|
/frameworks/base/tools/preload/ |
Record.java | 132 processName = decode(parts[3]).intern(); 135 className = vmTypeToLanguage(decode(parts[5])).intern(); 141 * Decode any escaping that may have been written to the log line. 148 String decode(String rawField) { method in class:Record
|
/frameworks/opt/net/voip/src/jni/rtp/ |
AmrCodec.cpp | 55 int decode(int16_t *samples, int count, void *payload, int length); 131 int AmrCodec::decode(int16_t *samples, int count, void *payload, int length) function in class:__anon30607::AmrCodec 216 int decode(int16_t *samples, int count, void *payload, int length); 242 int GsmEfrCodec::decode(int16_t *samples, int count, void *payload, int length) function in class:__anon30607::GsmEfrCodec
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/ |
BerTlv.java | 74 * @param data A byte array to decode from 78 public static BerTlv decode(byte[] data) throws ResultException { method in class:BerTlv
|
/libcore/luni/src/main/java/java/lang/ |
Byte.java | 133 public static Byte decode(String string) throws NumberFormatException { method in class:Byte 134 int intValue = Integer.decode(string);
|