Searched defs:decode (Results 1 - 17 of 17) sorted by relevance

/frameworks/base/media/libdrm/mobile2/src/util/xml/
H A DExpatWrapper.cpp40 int ExpatWrapper::decode(const char* buf, int len, int isFinal) function in class:ExpatWrapper
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
H A DBerTlv.java63 * @param data A byte array to decode from
67 public static BerTlv decode(byte[] data) throws ResultException { method in class:BerTlv
H A DComprehensionTlv.java40 * {@link #decode(byte[], int) decode} method.
90 ComprehensionTlv ctlv = ComprehensionTlv.decode(data, startIndex);
106 public static ComprehensionTlv decode(byte[] data, int startIndex) method in class:ComprehensionTlv
/frameworks/base/tools/preload/
H A DRecord.java102 processName = decode(parts[3]).intern();
105 className = vmTypeToLanguage(decode(parts[5])).intern();
118 String decode(String rawField) { method in class:Record
/frameworks/base/awt/org/apache/harmony/awt/gl/image/
H A DJpegDecoder.java111 private native Object decode( method in class:JpegDecoder
145 Object arr = decode(
H A DPngDecoder.java83 private native long decode(byte[] input, int bytesInBuffer, long hDecoder); method in class:PngDecoder
110 hNativeDecoder = decode(buffer, bytesInBuffer, hNativeDecoder);
H A DPngDecoderJava.java49 final BufferedImage image = PngDecoderJava.decode(in);
66 public static BufferedImage decode(InputStream in) throws IOException { method in class:PngDecoderJava
H A DGifDecoder.java88 private native int decode( method in class:GifDecoder
188 int numLines = decode(
/frameworks/base/core/java/android/webkit/
H A DURLUtil.java108 public static byte[] decode(byte[] url) throws IllegalArgumentException { method in class:URLUtil
318 String decodedUrl = Uri.decode(url);
/frameworks/base/core/java/android/util/
H A DBase64.java76 * Encode/decode another block of input data. this.output is
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);
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
136 return decode(input, 0, input.length, flags);
146 * @param input the data to decode
155 public static byte[] decode(byte[] input, int offset, int len, int flags) { method in class:Base64
[all...]
/frameworks/base/media/libmedia/
H A DIMediaPlayerService.cpp105 virtual sp<IMemory> decode(const char* url, uint32_t *pSampleRate, int* pNumChannels, int* pFormat) function in class:android::BpMediaPlayerService
117 virtual sp<IMemory> decode(int fd, int64_t offset, int64_t length, uint32_t *pSampleRate, int* pNumChannels, int* pFormat) function in class:android::BpMediaPlayerService
193 sp<IMemory> player = decode(url, &sampleRate, &numChannels, &format);
208 sp<IMemory> player = decode(fd, offset, length, &sampleRate, &numChannels, &format);
H A Dmediaplayer.cpp605 /*static*/ sp<IMemory> MediaPlayer::decode(const char* url, uint32_t *pSampleRate, int* pNumChannels, int* pFormat) function in class:android::MediaPlayer
607 LOGV("decode(%s)", url);
611 p = service->decode(url, pSampleRate, pNumChannels, pFormat);
625 /*static*/ sp<IMemory> MediaPlayer::decode(int fd, int64_t offset, int64_t length, uint32_t *pSampleRate, int* pNumChannels, int* pFormat) function in class:android::MediaPlayer
627 LOGV("decode(%d, %lld, %lld)", fd, offset, length);
631 p = service->decode(fd, offset, length, pSampleRate, pNumChannels, pFormat);
/frameworks/base/awt/java/awt/
H A DColor.java796 public static Color decode(String nm) throws NumberFormatException { method in class:Color
797 Integer integer = Integer.decode(nm);
H A DFont.java244 // See Font constructor, decode and getFont sections.
537 public static Font decode(String str) { method in class:Font
541 // In this decode implementation only ***-***-*** format is used with
878 return decode(pr);
/frameworks/base/core/java/android/net/
H A DUri.java1044 return decode(encodedHost);
1070 String portString = decode(authority.substring(portSeparator + 1));
1549 values.add(decode(value));
1603 return decode(query.substring(equalsIndex + 1, end));
1783 * @param s encoded string to decode
1787 public static String decode(String s) { method in class:Uri
1789 Compared to java.net.URLEncoderDecoder.decode(), this method decodes a
1792 there's nothing to decode, this method won't do much.
1817 // We didn't actually decode anything.
1848 // Switch to "decoding" mode where we decode
[all...]
/frameworks/base/media/libmediaplayerservice/
H A DMediaPlayerService.cpp1223 sp<IMemory> MediaPlayerService::decode(const char* url, uint32_t *pSampleRate, int* pNumChannels, int* pFormat) function in class:android::MediaPlayerService
1225 LOGV("decode(%s)", url);
1231 // If the application wants to decode those, it should open a
1234 LOGD("Can't decode %s by path, use filedescriptor instead", url);
1275 sp<IMemory> MediaPlayerService::decode(int fd, int64_t offset, int64_t length, uint32_t *pSampleRate, int* pNumChannels, int* pFormat) function in class:android::MediaPlayerService
1277 LOGV("decode(%d, %lld, %lld)", fd, offset, length);
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/sms/
H A DBearerData.java42 * An object to encode and decode CDMA SMS bearer data.
500 * access to the main bitwise stream from encode/decode.
885 Log.d(LOG_TAG, "MESSAGE_IDENTIFIER decode " +
923 throw new CodingException("UTF-16 decode failed: " + ex);
956 throw new CodingException("7bit ASCII decode failed: " + ex);
981 throw new CodingException("ISO-8859-1 decode failed: " + ex);
1163 Log.d(LOG_TAG, "REPLY_OPTION decode " +
1183 Log.d(LOG_TAG, "NUMBER_OF_MESSAGES decode " +
1203 Log.d(LOG_TAG, "MESSAGE_DEPOSIT_INDEX decode " +
1286 Log.d(LOG_TAG, "MESSAGE_STATUS decode "
1536 public static BearerData decode(byte[] smsData) { method in class:BearerData
[all...]

Completed in 215 milliseconds