HomeSort by relevance Sort by last modified time
    Searched full:decode (Results 101 - 125 of 1875) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium/third_party/libjingle/source/talk/base/
urlencode.h 33 // Decode all encoded characters. Also decode + as space.
36 // Decode all encoded characters.
  /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 */
  /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
  /external/webkit/Source/WebKit2/Shared/Plugins/
NPIdentifierData.cpp 80 bool NPIdentifierData::decode(CoreIPC::ArgumentDecoder* decoder, NPIdentifierData& result) function in class:WebKit::NPIdentifierData
82 if (!decoder->decode(result.m_isString))
86 return decoder->decode(result.m_string);
  /external/webkit/Source/WebKit2/Shared/
WebTouchEvent.cpp 54 bool WebTouchEvent::decode(CoreIPC::ArgumentDecoder* decoder, WebTouchEvent& t) function in class:WebKit::WebTouchEvent
56 if (!WebEvent::decode(decoder, t))
59 return decoder->decode(CoreIPC::Out(t.m_touchPoints));
ShareableBitmap.cpp 49 bool ShareableBitmap::Handle::decode(CoreIPC::ArgumentDecoder* decoder, Handle& handle) function in class:WebKit::ShareableBitmap::Handle
51 if (!decoder->decode(handle.m_handle))
53 if (!decoder->decode(handle.m_size))
55 if (!decoder->decode(handle.m_flags))
WebMouseEvent.cpp 93 bool WebMouseEvent::decode(CoreIPC::ArgumentDecoder* decoder, WebMouseEvent& t) function in class:WebKit::WebMouseEvent
95 if (!WebEvent::decode(decoder, t))
100 return decoder->decode(CoreIPC::Out(t.m_button, t.m_position, t.m_globalPosition, t.m_deltaX, t.m_deltaY, t.m_deltaZ, t.m_clickCount, t.m_didActivateWebView));
102 return decoder->decode(CoreIPC::Out(t.m_button, t.m_position, t.m_globalPosition, t.m_deltaX, t.m_deltaY, t.m_deltaZ, t.m_clickCount));
  /external/webkit/Source/WebKit2/Shared/mac/
PlatformCertificateInfo.mm 63 bool PlatformCertificateInfo::decode(CoreIPC::ArgumentDecoder* decoder, PlatformCertificateInfo& c)
66 if (!decoder->decode(hasCertificateChain))
72 if (!CoreIPC::decode(decoder, c.m_certificateChain))
UpdateChunk.cpp 77 bool UpdateChunk::decode(CoreIPC::ArgumentDecoder* decoder, UpdateChunk& chunk) function in class:WebKit::UpdateChunk
80 if (!decoder->decode(rect))
85 if (!decoder->decode(attachment))
  /external/webkit/Source/WebKit2/Shared/win/
UpdateChunk.cpp 62 bool UpdateChunk::decode(CoreIPC::ArgumentDecoder* decoder, UpdateChunk& updateChunk) function in class:WebKit::UpdateChunk
65 if (!decoder->decode(rect))
70 if (!decoder->decode(bitmapSharedMmemory))
  /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(
  /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);
  /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/base/i18n/
icu_encoding_detection.h 21 // Note: this function may return encodings that may fail to decode |text|,
  /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/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

Completed in 532 milliseconds

1 2 3 45 6 7 8 91011>>