/frameworks/base/media/libdrm/mobile1/include/objmng/ |
drm_decoder.h | 20 * provide service to decode base64 data. 38 * Decode base64 39 * \param dest dest buffer to save decode base64 data
|
/libcore/luni/src/test/java/tests/api/java/nio/charset/ |
CharsetEncoderDecoderBufferTest.java | 40 * (CharsetDecoderICU) when a decode operation 48 method = "decode", 58 decoder.decode(ByteBuffer.wrap(new byte[]{(byte)'a', (byte)'b', (byte)'c', (byte)'d'}), 68 decoder.decode(ByteBuffer.wrap(new byte[]{(byte)'x'}), out, true); 73 // check if the first buffer was corrupted by the second decode 80 * (CharsetDecoderICU) when a decode operation 88 method = "decode", 99 decoder.decode(inWithArray, out, false); 106 decoder.decode(inWithoutArray, out, true); 108 // check whether the first buffer was corrupted by the second decode [all...] |
/libcore/luni/src/test/java/org/apache/harmony/nio_char/tests/java/nio/charset/ |
CharsetDecoderTest.java | 78 * @tests java.nio.charset.CharsetDecoder#decode(java.nio.ByteBuffer) 83 method = "decode", 93 // decoder.decode(bb); 98 // CharBuffer charbuf = Charset.forName("UTF-16").decode(buf); 101 // charbuf = Charset.forName("UTF-16BE").decode(buf); 104 // charbuf = Charset.forName("UTF-16LE").decode(buf); 113 decoder2.decode(in); 121 * Test malfunction decode(ByteBuffer) 126 method = "decode", 134 .onUnmappableCharacter(CodingErrorAction.REPLACE).decode( [all...] |
/external/tcpdump/ |
print-esp.c | 126 * decode the form: SPINUM@IP <tab> ALGONAME:0xsecret 138 char *decode; local 146 decode = spikey; 152 decode = line; 193 (*ndo->ndo_warning)(ndo, "print_esp: failed to decode spi# %s\n", foo); 215 (*ndo->ndo_warning)(ndo, "print_esp: can not decode IP# %s\n", spikey); 220 if (decode) { 229 while (isspace((unsigned char)*decode)) 230 decode++; 232 colon = strchr(decode, ':') [all...] |
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/ |
ASN1Type.java | 93 public final Object decode(byte[] encoded) throws IOException { method in class:ASN1Type 94 return decode(new DerInputStream(encoded)); 97 public final Object decode(byte[] encoded, int offset, int encodingLen) method in class:ASN1Type 99 return decode(new DerInputStream(encoded, offset, encodingLen)); 102 public final Object decode(InputStream in) throws IOException { method in class:ASN1Type 103 return decode(new DerInputStream(in)); 109 decode(decoder); 115 decode(decoder); 126 // Decode 138 public abstract Object decode(BerInputStream in) throws IOException method in class:ASN1Type [all...] |
ASN1OpenType.java | 47 public Object decode(BerInputStream in) throws IOException { method in class:ASN1OpenType 58 in.content = attr.type.decode(in); 69 public Object decode(BerInputStream in) throws IOException { method in class:ASN1OpenType.Id 70 Object oid = super.decode(in);
|
ASN1Sequence.java | 44 // Decode 48 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Sequence
|
/frameworks/base/media/tests/omxjpegdecoder/ |
jpeg_decoder_bench.cpp | 58 // Decode the input stream and then use the bitmap. 59 if (!decoder->decode(stream, bitmap, prefConfig, decodeMode)) { 60 return nullObjectReturn("decoder->decode returned false"); 75 // Decode the input stream and then use the bitmap. 76 if (!decoder->decode(stream, bitmap, prefConfig, decodeMode)) { 77 return nullObjectReturn("decoder->decode returned false");
|
/external/apache-http/src/org/apache/commons/codec/ |
Decoder.java | 40 * this decode method will throw a DecoderException. 42 * @param pObject an object to "decode" 52 Object decode(Object pObject) throws DecoderException; method in interface:Decoder
|
BinaryDecoder.java | 37 * the decode process. 39 byte[] decode(byte[] pArray) throws DecoderException; method in interface:BinaryDecoder
|
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/ |
URLEncoderTest.java | 38 assertTrue("1. Incorrect encoding/decoding", URLDecoder.decode( 40 assertTrue("2. Incorrect encoding/decoding", URLDecoder.decode( 42 assertTrue("3. Incorrect encoding/decoding", URLDecoder.decode(
|
/external/chromium/sdch/open-vcdiff/man/ |
vcdiff.1 | 39 or standard output for decode. 45 or standard input for decode.
|
/external/dropbear/libtomcrypt/src/pk/asn1/der/object_identifier/ |
der_decode_object_identifier.c | 15 ASN.1 DER, Decode Object Identifier, Tom St Denis 20 Decode OID data and store the array of integers in words 46 /* decode the packet header */ 70 /* decode words */
|
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/ |
ShortTest.java | 62 * @tests java.lang.Short#decode(java.lang.String) 66 // java.lang.Short.decode(java.lang.String) 67 assertTrue("Did not decode -1 correctly", Short.decode("-1") 69 assertTrue("Did not decode -100 correctly", Short.decode("-100") 71 assertTrue("Did not decode 23 correctly", Short.decode("23") 73 assertTrue("Did not decode 0x10 correctly", Short.decode("0x10" [all...] |
ByteTest.java | 277 * @tests java.lang.Byte#decode(String) 280 assertEquals(new Byte((byte) 0), Byte.decode("0")); 281 assertEquals(new Byte((byte) 1), Byte.decode("1")); 282 assertEquals(new Byte((byte) -1), Byte.decode("-1")); 283 assertEquals(new Byte((byte) 0xF), Byte.decode("0xF")); 284 assertEquals(new Byte((byte) 0xF), Byte.decode("#F")); 285 assertEquals(new Byte((byte) 0xF), Byte.decode("0XF")); 286 assertEquals(new Byte((byte) 07), Byte.decode("07")); 289 Byte.decode("9.2"); 295 Byte.decode(""); [all...] |
/sdk/emulator/qtools/ |
trace_reader.cpp | 111 int64_t bb_diff = decoder_->Decode(true); 112 uint64_t time_diff = decoder_->Decode(false); 113 nextrec_.bb_rec.repeat = decoder_->Decode(false); 117 nextrec_.bb_rec.time_diff = decoder_->Decode(false); 292 time_diff_ = decoder_->Decode(false); 293 repeat_ = decoder_->Decode(false); 346 uint32_t addr_diff = decoder_->Decode(true); 347 uint64_t time_diff = decoder_->Decode(false); 391 uint64_t time_diff = decoder_->Decode(false); 392 uint32_t pc = decoder_->Decode(false) [all...] |
/external/dropbear/libtomcrypt/src/pk/asn1/der/boolean/ |
der_decode_boolean.c | 15 ASN.1 DER, decode a BOOLEAN, Tom St Denis 25 @param out [out] The boolean to decode
|
/external/dropbear/libtomcrypt/src/pk/asn1/der/short_integer/ |
der_decode_short_integer.c | 15 ASN.1 DER, decode an integer, Tom St Denis 25 @param num [out] The integer to decode
|
/external/skia/src/animator/ |
SkBase64.h | 32 Error decode(const char* src, size_t length); 40 Error decode(const void* srcPtr, size_t length, bool writeDestination);
|
/frameworks/base/voip/jni/rtp/ |
GsmCodec.cpp | 47 int decode(int16_t *samples, void *payload, int length); 60 int GsmCodec::decode(int16_t *samples, void *payload, int length) function in class:__anon9551::GsmCodec
|
/libcore/luni/src/main/java/java/net/ |
URLDecoder.java | 28 * This class is used to decode a string which is encoded in the {@code 44 * @deprecated use {@link #decode(String, String)} instead. 47 public static String decode(String s) { method in class:URLDecoder 48 return decode(s, Charset.defaultCharset()); 69 public static String decode(String s, String encoding) throws UnsupportedEncodingException { method in class:URLDecoder 99 return decode(s, charset); 102 private static String decode(String s, Charset charset) { method in class:URLDecoder 129 CharBuffer cb = charset.decode(ByteBuffer.wrap(buf, 0, len));
|
/frameworks/base/telephony/java/com/android/internal/telephony/ |
WspTypeDecoder.java | 69 * Decode the "Text-string" type for WSP pdu 92 * Decode the "Short-integer" type for WSP pdu 110 * Decode the "Long-integer" type for WSP pdu 133 * Decode the "Integer-Value" type for WSP pdu 149 * Decode the "Uintvar-integer" type for WSP pdu 174 * Decode the "Value-length" type for WSP pdu 197 * Decode the "Extension-media" type for WSP PDU. 224 * Decode the "Constrained-encoding" type for WSP pdu 241 * Decode the "Content-type" type for WSP pdu 271 * Decode the "Content length" type for WSP pd [all...] |
/external/skia/include/images/ |
SkImageDecoder.h | 158 cancel. This will result in decode() returning false. However, there is 161 and decode() will return true (assuming no other problems were 164 This state is automatically reset at the beginning of decode(). 172 /** Passed to the decode method. If kDecodeBounds_Mode is passed, then 181 /** Given a stream, decode it into the specified bitmap. 194 bool decode(SkStream*, SkBitmap* bitmap, SkBitmap::Config pref, Mode); 195 bool decode(SkStream* stream, SkBitmap* bitmap, Mode mode) { function in class:SkImageDecoder 196 return this->decode(stream, bitmap, SkBitmap::kNo_Config, mode); 200 * Given a stream, build an index for doing tile-based decode. 210 * Decode a rectangle region in the image specified by rect [all...] |
/external/chromium/sdch/open-vcdiff/vsprojects/ |
vcdiff_test.bat | 50 rem vcdiff with three arguments but without "encode" or "decode" 65 %VCDIFF% decode -dictionary %DICTIONARY_FILE% ^ 68 || ( echo Decode with three arguments failed ^ 87 %VCDIFF% decode -dictionary %DICTIONARY_FILE% ^ 90 || ( echo Decode using stdin/stdout failed ^ 107 %VCDIFF% decode -dictionary %DICTIONARY_FILE% ^ 110 || ( echo Decode with mixed arguments failed ^ 126 %VCDIFF% decode -dictionary %DICTIONARY_FILE% ^ 129 || ( echo Decode with mixed arguments failed ^ 142 %VCDIFF% decode -dictionary %TARGET_FILE% [all...] |
/external/dropbear/libtomcrypt/src/pk/asn1/der/integer/ |
der_decode_integer.c | 15 ASN.1 DER, decode an integer, Tom St Denis 25 @param num The first mp_int to decode 47 /* now decode the len stuff */
|