HomeSort by relevance Sort by last modified time
    Searched defs:decode (Results 426 - 450 of 667) sorted by null

<<11121314151617181920>>

  /frameworks/base/core/java/android/util/
Base64.java 76 * Encode/decode another block of input data. this.output is
103 * Decode the Base64-encoded data in input and return the data in
109 * @param str the input String to decode, which is converted to
112 * Pass {@code DEFAULT} to decode standard Base64.
117 public static byte[] decode(String str, int flags) { method in class:Base64
118 return decode(str.getBytes(), flags);
122 * Decode the Base64-encoded data in input and return the data in
128 * @param input the input array to decode
130 * Pass {@code DEFAULT} to decode standard Base64.
135 public static byte[] decode(byte[] input, int flags) method in class:Base64
155 public static byte[] decode(byte[] input, int offset, int len, int flags) { method in class:Base64
    [all...]
  /frameworks/base/core/java/android/webkit/
URLUtil.java 110 public static byte[] decode(byte[] url) throws IllegalArgumentException { method in class:URLUtil
320 String decodedUrl = Uri.decode(url);
  /frameworks/base/core/java/com/android/internal/net/
VpnProfile.java 114 public static VpnProfile decode(String key, byte[] value) { method in class:VpnProfile
  /frameworks/base/tests/AccessoryDisplay/sink/src/com/android/accessorydisplay/sink/
DisplaySinkService.java 100 decode(content);
174 private void decode(ByteBuffer content) { method in class:DisplaySinkService
  /libcore/luni/src/main/java/java/lang/
Integer.java 155 public static Integer decode(String string) throws NumberFormatException { method in class:Integer
239 return decode(prop);
268 return decode(prop);
297 return decode(prop);
Long.java 139 public static Long decode(String string) throws NumberFormatException { method in class:Long
225 return decode(prop);
254 return decode(prop);
283 return decode(prop);
  /libcore/luni/src/main/java/java/nio/charset/
Charset.java 37 * {@code Charset} can <i>decode</i>, converting a byte sequence into a sequence of characters,
476 public final CharBuffer decode(ByteBuffer buffer) { method in class:Charset
480 .onUnmappableCharacter(CodingErrorAction.REPLACE).decode(buffer);
CharsetDecoder.java 35 * <li>invoking the {@link #decode(ByteBuffer, CharBuffer, boolean) decode}
39 * <li>invoking the {@link #decode(ByteBuffer, CharBuffer, boolean) decode}
46 * The {@link #decode(ByteBuffer, CharBuffer, boolean) decode} method will
153 * This method should not be invoked while another {@code decode} operation
177 * if another exception happened during the decode operation.
179 public final CharBuffer decode(ByteBuffer in) throws CharacterCodingException { method in class:CharsetDecoder
186 CoderResult result = decode(in, out, true)
296 public final CoderResult decode(ByteBuffer in, CharBuffer out, boolean endOfInput) { method in class:CharsetDecoder
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/charset/
OldCharset_AbstractTest.java 123 static void decode (byte[] input, char[] expectedOutput) throws CharacterCodingException { method in class:OldCharset_AbstractTest
126 CharBuffer outputCB = decoder.decode(inputBB);
132 decode(testBytes, testChars); method
161 CharBuffer outputCB = decoder.decode(intermediateBB);
163 assertEqualCBs("decode(encode(A)) must be identical with A = " + code,
170 fail("failed to decode(encode(" + code + "))");
194 CharBuffer outputCB = decoder.decode(intermediateBB);
196 assertEqualCBs("decode(encode(A)) must be identical with A!",
  /libcore/support/src/test/java/org/apache/harmony/testframework/
CharWrapperTester.java 44 public abstract char[] decode(char[] delegateChars) throws Exception; method in class:CharWrapperTester
91 return decode(delegate.buffer.toString().toCharArray());
WrapperTester.java 45 public abstract byte[] decode(byte[] delegateBytes) throws Exception; method in class:WrapperTester
92 return WrapperTester.this.decode(delegate.bytesOut.toByteArray());
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/internet/
MimeUtility.java 68 public static String decode(String s) { method in class:MimeUtility
76 return decode(unfold(s));
185 * TODO: Need to decode %-escaped strings, as in: filename="ab%22d".
  /packages/apps/UnifiedEmail/src/com/android/mail/bitmap/
AccountAvatarDrawable.java 174 decode(); method
186 private void decode() { method in class:AccountAvatarDrawable
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
codecs.py 77 def __new__(cls, encode, decode, streamreader=None, streamwriter=None,
79 self = tuple.__new__(cls, (encode, decode, streamreader, streamwriter))
82 self.decode = decode
96 The .encode()/.decode() methods may use different error
133 def decode(self, input, errors='strict'): member in class:Codec
232 passed piece by piece to the decode() method. The IncrementalDecoder
233 remembers the state of the decoding process between calls to decode().
245 def decode(self, input, final=False): member in class:IncrementalDecoder
262 were passed to decode() that have not yet been converted
293 def decode(self, input, final=False): member in class:BufferedIncrementalDecoder
421 def decode(self, input, errors='strict'): member in class:StreamReader
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
IOBinding.py 258 chars = self.decode(chars)
278 def decode(self, chars): member in class:IOBinding
286 chars = chars[3:].decode("utf-8")
288 # has UTF-8 signature, but fails to decode...
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
codecs.py 77 def __new__(cls, encode, decode, streamreader=None, streamwriter=None,
79 self = tuple.__new__(cls, (encode, decode, streamreader, streamwriter))
82 self.decode = decode
96 The .encode()/.decode() methods may use different error
133 def decode(self, input, errors='strict'): member in class:Codec
232 passed piece by piece to the decode() method. The IncrementalDecoder
233 remembers the state of the decoding process between calls to decode().
245 def decode(self, input, final=False): member in class:IncrementalDecoder
262 were passed to decode() that have not yet been converted
293 def decode(self, input, final=False): member in class:BufferedIncrementalDecoder
421 def decode(self, input, errors='strict'): member in class:StreamReader
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
IOBinding.py 258 chars = self.decode(chars)
278 def decode(self, chars): member in class:IOBinding
286 chars = chars[3:].decode("utf-8")
288 # has UTF-8 signature, but fails to decode...
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
ViewHierarchyLoader.java 188 node.decode();
ViewNode.java 65 void decode() { method in class:ViewNode
  /external/owasp/sanitizer/lib/commons-codec-1.4/
commons-codec-1.4.jar 
  /prebuilts/devtools/tools/lib/
commons-codec-1.4.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.apache.commons.codec_1.4.0.v201209201156.jar 
  /prebuilts/tools/common/http-client/
commons-codec-1.4.jar 
  /prebuilts/tools/common/m2/repository/commons-codec/commons-codec/1.4/
commons-codec-1.4.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.apache.commons.codec_1.4.0.v201209201156.jar 

Completed in 1751 milliseconds

<<11121314151617181920>>