/libcore/luni/src/main/java/java/lang/ |
Short.java | 133 public static Short decode(String string) throws NumberFormatException { method in class:Short 134 int intValue = Integer.decode(string).intValue();
|
/libcore/luni/src/main/java/libcore/icu/ |
NativeConverter.java | 18 public static native int decode(long converterHandle, byte[] input, int inEnd, method in class:NativeConverter
|
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/ |
ASN1Any.java | 72 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Any
|
ASN1Choice.java | 117 * If it is a matter what time format should be used to decode/encode 300 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Choice 303 throw new ASN1Exception("Failed to decode ASN.1 choice type. No alternatives were found for " + getClass().getName());// FIXME message 308 in.content = type[index].decode(in);
|
ASN1Integer.java | 62 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Integer
|
ASN1Oid.java | 62 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Oid 77 // Allocate and decode
|
ASN1StringType.java | 84 public Object decode(BerInputStream in) throws IOException { method in class:ASN1StringType
|
ASN1Type.java | 81 public final Object decode(byte[] encoded) throws IOException { method in class:ASN1Type 82 return decode(new DerInputStream(encoded)); 85 public final Object decode(byte[] encoded, int offset, int encodingLen) method in class:ASN1Type 87 return decode(new DerInputStream(encoded, offset, encodingLen)); 90 public final Object decode(InputStream in) throws IOException { method in class:ASN1Type 91 return decode(new DerInputStream(in)); 97 decode(decoder); 103 decode(decoder); 116 public abstract Object decode(BerInputStream in) throws IOException; method in class:ASN1Type
|
ASN1UTCTime.java | 77 @Override public Object decode(BerInputStream in) throws IOException { method in class:ASN1UTCTime
|
/libcore/luni/src/main/java/org/apache/harmony/security/x509/ |
AuthorityKeyIdentifier.java | 67 public static AuthorityKeyIdentifier decode(byte[] encoding) throws IOException { method in class:AuthorityKeyIdentifier 68 AuthorityKeyIdentifier aki = (AuthorityKeyIdentifier) ASN1.decode(encoding);
|
IssuingDistributionPoint.java | 66 public static IssuingDistributionPoint decode(byte[] encoding) method in class:IssuingDistributionPoint 69 (IssuingDistributionPoint) ASN1.decode(encoding);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/ |
quoprimime.py | 16 This module provides an interface to encode and decode both headers and bodies 34 'decode', 271 # the same as base64MIME.decode() or not... 272 def decode(encoded, eol=NL): 273 """Decode a quoted-printable string. 302 # Decode if in form =AB 320 body_decode = decode 321 decodestring = decode 334 """Decode a string encoded with RFC 2045 MIME header `Q' encoding. 268 def decode(encoded, eol=NL): function
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/ |
punycode.py | 205 def decode(self,input,errors='strict'): member in class:Codec 216 def decode(self, input, final=False): member in class:IncrementalDecoder 233 decode=Codec().decode,
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/ |
decoder.py | 18 _BYTES = '7FF80000000000007FF0000000000000'.decode('hex') 70 on attempt to decode an invalid string. If strict is False then literal 360 def decode(self, s, _w=WHITESPACE.match): member in class:JSONDecoder 372 """Decode a JSON document from ``s`` (a ``str`` or ``unicode`` 376 This can be used to decode a JSON document from a string that may
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/ |
applesingle.py | 1 r"""Routines to decode AppleSingle files 107 def decode(infile, outpath, resonly=False, verbose=False): function 108 """decode(infile, outpath [, resonly=False, verbose=False]) 143 decode(sys.argv[1], sys.argv[2], resonly=resonly)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/ |
quoprimime.py | 16 This module provides an interface to encode and decode both headers and bodies 34 'decode', 271 # the same as base64MIME.decode() or not... 272 def decode(encoded, eol=NL): 273 """Decode a quoted-printable string. 302 # Decode if in form =AB 320 body_decode = decode 321 decodestring = decode 334 """Decode a string encoded with RFC 2045 MIME header `Q' encoding. 268 def decode(encoded, eol=NL): function
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/ |
punycode.py | 205 def decode(self,input,errors='strict'): member in class:Codec 216 def decode(self, input, final=False): member in class:IncrementalDecoder 233 decode=Codec().decode,
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/ |
decoder.py | 18 _BYTES = '7FF80000000000007FF0000000000000'.decode('hex') 70 on attempt to decode an invalid string. If strict is False then literal 360 def decode(self, s, _w=WHITESPACE.match): member in class:JSONDecoder 372 """Decode a JSON document from ``s`` (a ``str`` or ``unicode`` 376 This can be used to decode a JSON document from a string that may
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/ |
OutputStreamTesterTest.java | 150 public byte[] decode(byte[] delegateBytes) throws Exception { method in class:OutputStreamTesterTest.FilterOutputStreamTester 166 public byte[] decode(byte[] delegateBytes) throws Exception { method in class:OutputStreamTesterTest.BufferedOutputStreamTester 177 public byte[] decode(byte[] delegateBytes) throws Exception { method in class:OutputStreamTesterTest.DataOutputStreamTester 188 public byte[] decode(byte[] delegateBytes) throws Exception { method in class:OutputStreamTesterTest.ObjectOutputStreamTester 200 public byte[] decode(byte[] delegateBytes) throws Exception { method in class:OutputStreamTesterTest.PrintStreamTester
|
WriterTesterTest.java | 157 @Override public char[] decode(char[] delegateChars) throws Exception { method in class:WriterTesterTest.BufferedWriterCharSinkTester 167 @Override public char[] decode(char[] delegateChars) throws Exception { method in class:WriterTesterTest.FilterWriterCharSinkTester 177 @Override public char[] decode(char[] delegateChars) throws Exception { method in class:WriterTesterTest.PrintWriterCharSinkTester
|
/external/apache-http/src/org/apache/commons/codec/net/ |
QuotedPrintableCodec.java | 229 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/ |
Base64Encoder.java | 123 * 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/platform/graphics/ |
ImageFrameGeneratorTest.cpp | 116 PassOwnPtr<ScaledImageFragment> decode(size_t index) function in class:WebCore::ImageFrameGeneratorTest 119 return m_generator->decode(index, &decoder); 459 OwnPtr<ScaledImageFragment> image = decode(0);
|
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/ |
GIFImageDecoder.cpp | 114 decode(index); 319 void GIFImageDecoder::decode(size_t frameIndex) function in class:WebCore::GIFImageDecoder 335 if (!m_reader->decode(frameIndex)) {
|
GIFImageReader.cpp | 201 // Otherwise, decoding failed; returns false in this case, which will always cause the GIFImageReader to set the "decode failed" flag. 322 // Returns false if a decoding error occurred. This is a fatal error and causes the GIFImageReader to set the "decode failed" flag. 323 // Otherwise, either not enough data is available to decode further than before, or the new data has been decoded successfully; returns true in this case. 324 bool GIFFrameContext::decode(const unsigned char* data, size_t length, WebCore::GIFImageDecoder* client, bool* frameDecoded) function in class:GIFFrameContext 343 // Some bad GIFs have extra blocks beyond the last row, which we don't want to decode. 363 // Decode a frame. 364 // This method uses GIFFrameContext:decode() to decode the frame; decoding error is reported to client as a critical failure. 366 bool GIFImageReader::decode(size_t frameIndex) function in class:GIFImageReader 373 return currentFrame->decode(data(0), m_data->size(), m_client, &frameDecoded [all...] |