/frameworks/av/media/libmedia/ |
mediaplayer.cpp | 779 /*static*/ status_t MediaPlayer::decode(const char* url, uint32_t *pSampleRate, function in class:android::MediaPlayer 783 ALOGV("decode(%s)", url); 787 status = service->decode(url, pSampleRate, pNumChannels, pFormat, heap, pSize); 802 /*static*/ status_t MediaPlayer::decode(int fd, int64_t offset, int64_t length, function in class:android::MediaPlayer 807 ALOGV("decode(%d, %lld, %lld)", fd, offset, length); 811 status = service->decode(fd, offset, length, pSampleRate,
|
/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 | 99 decode(content); 168 private void decode(ByteBuffer content) { method in class:DisplaySinkService
|
/libcore/luni/src/main/java/java/lang/ |
Integer.java | 153 public static Integer decode(String string) throws NumberFormatException { method in class:Integer 236 return decode(prop); 265 return decode(prop); 294 return decode(prop);
|
Long.java | 139 public static Long decode(String string) throws NumberFormatException { method in class:Long 223 return decode(prop); 252 return decode(prop); 281 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!",
|
/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".
|
/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
|
/system/core/libsysutils/src/ |
NetlinkEvent.cpp | 79 * Decode a RTM_NEWADDR or RTM_DELADDR message. 327 bool NetlinkEvent::decode(char *buffer, int size, int format) { function in class:NetlinkEvent
|
/prebuilts/devtools/tools/lib/ |
commons-codec-1.4.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 | |
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/png/ |
PNGImageDecoder.cpp | 141 bool decode(const SharedBuffer& data, bool sizeOnly) function in class:WebCore::PNGImageReader 232 decode(true); 250 decode(false); 352 // the color profile or we'd need to decode into a gray-scale image buffer and 514 void PNGImageDecoder::decode(bool onlySize) 522 // If we couldn't decode the image but we've received all the data, decoding 524 if (!m_reader->decode(*m_data, onlySize) && isAllDataReceived())
|
/external/chromium_org/third_party/skia/include/core/ |
SkImageDecoder.h | 44 /** Return the format of image this decoder can decode. If this decoder can decode multiple 89 /** Returns true if the decoder should try to decode the 95 /** Set to true if the the decoder should try to decode the 171 * to some flavor of decode, it is still at the discretion of the codec 193 * decode is preferred. 223 cancel. This will result in decode() returning false. However, there is 226 and decode() will return true (assuming no other problems were 229 This state is automatically reset at the beginning of decode(). 237 /** Passed to the decode method. If kDecodeBounds_Mode is passed, the 269 bool decode(SkStream* stream, SkBitmap* bitmap, Mode mode) { function in class:SkImageDecoder [all...] |
/external/chromium_org/v8/src/ |
utils.h | 276 // BitField is a help template for encoding and decode bitfield with 310 static T decode(U value) { function in class:v8::internal::BitFieldBase [all...] |
/external/llvm/lib/Target/X86/Disassembler/ |
X86DisassemblerDecoder.c | 39 * attributes and returns the appropriate decode context. 51 * the ModR/M byte is required to decode a particular instruction. 91 * decode - Reads the appropriate instruction table to obtain the unique ID of 100 static InstrUID decode(OpcodeType type, function 155 * decode(); specifierForUID will not check bounds. 710 *instructionID = decode(insn->opcodeType, 715 *instructionID = decode(insn->opcodeType, 910 * NOOP shouldn't decode as NOOP if REX.b is set. Instead 911 * it should decode as XCHG %r8, %eax. [all...] |