/external/dropbear/libtomcrypt/src/pk/asn1/der/utf8/ |
der_decode_utf8_string.c | 50 /* decode the length */ 72 /* proceed to decode */ 84 /* decode, grab upper bits */
|
/external/dropbear/libtomcrypt/testprof/ |
modes_test.c | 51 /* decode the block */ 74 /* decode the block */ 96 /* decode the block */
|
/external/oauth/core/src/main/java/net/oauth/http/ |
HttpMessageDecoder.java | 32 * Decode the given message if necessary and possible. 35 * given message if this class can't decode it. 37 public static HttpResponseMessage decode(HttpResponseMessage message) method in class:HttpMessageDecoder
|
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/ |
ASN1Explicit.java | 69 // Decode 73 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Explicit 81 in.content = type.decode(in);
|
/libcore/luni/src/test/java/libcore/java/net/ |
OldURLDecoderTest.java | 44 assertEquals(expected[i], URLDecoder.decode(urls[i], enc)); 51 URLDecoder.decode(urls[urls.length - 2], enc); 52 URLDecoder.decode(urls[urls.length - 1], enc);
|
OldURLEncoderTest.java | 47 assertEquals(urls[i], URLDecoder.decode(encodedString, enc)); 55 assertEquals(urls[urls.length - 1], URLDecoder.decode(encodedString, enc)); 61 URLDecoder.decode("", "");
|
/packages/apps/Gallery/tests/src/com/android/camera/ |
BitmapManagerUnitTests.java | 74 // By default all threads can decode. 77 // Disallow thread t to decode. 81 // Allow thread t to decode again.
|
/system/core/nexus/ |
SupplicantAssociatingEvent.cpp | 49 LOGE("Unable to decode SSID (p = {%s})\n", p); 62 LOGE("Unable to decode frequency\n"); 76 LOGE("Unable to decode SSID (p = {%s})\n", p);
|
/frameworks/base/graphics/java/android/graphics/ |
BitmapFactory.java | 67 * If this is non-null, the decoder will try to decode into this 176 * For the re-decode to happen, the bitmap must have access to the 210 * inJustDecodeBounds. However, if there is an error trying to decode, 217 * inJustDecodeBounds. However, if there is an error trying to decode, 237 * is useful if there's an intermediary that wants to first decode the 238 * bounds and then decode the image. In that case the intermediary 239 * can check, inbetween the bounds decode and the image decode, to see 246 * inside a decode... call. Calling this will notify the decoder that 248 * the decode, but if it does, the decoder... operation will retur [all...] |
/cts/tools/dex-tools/src/dex/structure/ |
WithModifiers.java | 28 * The {@link Modifier} class should be used to decode the result.
|
/dalvik/vm/mterp/x86/ |
OP_PACKED_SWITCH.S | 5 * we decode it and hand it off to a helper function.
|
/external/bouncycastle/src/main/java/org/bouncycastle/util/encoders/ |
HexEncoder.java | 70 * decode the Hex encoded byte data writing it to the given output stream, 75 public int decode( method in class:HexEncoder 123 * decode the Hex encoded String data writing it to the given output stream, 128 public int decode( method in class:HexEncoder
|
/external/chromium/sdch/open-vcdiff/src/ |
vcdecoder5_test.cc | 27 // Decode an encoding that uses a RUN instruction to allocate 64MB. 60 // Ensure that, with allow_vcd_target set to false, we can decode any number of 62 TEST_F(VCDiffLargeTargetTest, Decode) { 107 // Trying to decode a second window should exceed the target file size limit.
|
/external/clearsilver/man/man3/ |
filter_wait.3 | 14 filter_wait - wrap waitpid to decode the exitcode and why
|
/external/dropbear/libtomcrypt/src/pk/asn1/der/utctime/ |
der_decode_utctime.c | 15 ASN.1 DER, decode a UTCTIME, Tom St Denis 65 /* decode the string */ 84 So let's do a trivial decode upto [including] mm 107 /* decode seconds */
|
/external/e2fsprogs/lib/et/test_cases/ |
simple.et | 13 "Can't decode authenticator"
|
/external/libvpx/examples/ |
error_resilient.txt | 23 Use the `decode_with_drops` example to decode with frames 5-10 dropped.
|
postproc.txt | 41 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ DECODE 42 /* Decode the frame with 15ms deadline */ 44 die_codec(&codec, "Failed to decode frame"); 45 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ DECODE
|
/external/nist-sip/java/gov/nist/javax/sip/address/ |
RFC2396UrlDecoder.java | 39 * Decode a path. 44 * <p>This method differs from URLDecoder.decode in that it always uses UTF-8 48 * @param uri the path to decode 51 public static String decode(String uri) { method in class:RFC2396UrlDecoder
|
/external/v8/test/cctest/ |
test-conversions.cc | 108 CHECK_EQ(i, OneBit1::decode(x)); 112 CHECK_EQ(i, OneBit2::decode(x)); 123 CHECK_EQ(i, EightBit1::decode(x)); 126 CHECK_EQ(i, EightBit2::decode(x));
|
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
BitmapFactory.java | 66 * If this is non-null, the decoder will try to decode into this 172 * For the re-decode to happen, the bitmap must have access to the 206 * inJustDecodeBounds. However, if there is an error trying to decode, 213 * inJustDecodeBounds. However, if there is an error trying to decode, 233 * is useful if there's an intermediary that wants to first decode the 234 * bounds and then decode the image. In that case the intermediary 235 * can check, inbetween the bounds decode and the image decode, to see 242 * inside a decode... call. Calling this will notify the decoder that 244 * the decode, but if it does, the decoder... operation will retur [all...] |
/libcore/luni/src/main/java/java/nio/charset/ |
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 180 * This method should not be invoked while another {@code decode} operation 204 * if another exception happened during the decode operation. 206 public final CharBuffer decode(ByteBuffer in) method in class:CharsetDecoder 213 result = decode(in, output, false) 331 public final CoderResult decode(ByteBuffer in, CharBuffer out, method in class:CharsetDecoder [all...] |
/libcore/luni/src/main/java/java/security/ |
Certificate.java | 50 public void decode(InputStream stream) throws KeyException, IOException; method in interface:Certificate 54 * {@link #decode(InputStream)} method must be able to decode the format 63 * @see #decode(InputStream)
|
/libcore/luni/src/test/java/libcore/java/nio/charset/ |
CharsetDecoderTest.java | 40 assertEquals("\u6d61x", d.decode(in).toString()); 50 CoderResult coderResult = decoder.decode(inBuffer, outBuffer, true); 66 CoderResult coderResult = decoder.decode(inBuffer, outBuffer, true); 79 CharBuffer outBuffer = decoder.decode(ByteBuffer.wrap(arr, offset, arr.length - offset));
|
/development/simulator/app/ |
LoadableImage.cpp | 78 /* image failed to load or decode */ 79 fprintf(stderr, "ERROR: unable to load/decode '%s'\n", mName);
|