HomeSort by relevance Sort by last modified time
    Searched refs:decode (Results 76 - 100 of 616) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/webkit/Source/WebKit2/Shared/cf/
ArgumentCodersCF.cpp 134 static bool decode(ArgumentDecoder* decoder, RetainPtr<CFTypeRef>& result) function in namespace:CoreIPC
143 if (!decode(decoder, array))
150 if (!decode(decoder, boolean))
157 if (!decode(decoder, data))
164 if (!decode(decoder, dictionary))
174 if (!decode(decoder, number))
181 if (!decode(decoder, string))
188 if (!decode(decoder, url))
196 if (!decode(decoder, certificate))
228 bool decode(ArgumentDecoder* decoder, RetainPtr<CFArrayRef>& result function in namespace:CoreIPC
253 bool decode(ArgumentDecoder* decoder, RetainPtr<CFBooleanRef>& result) function in namespace:CoreIPC
271 bool decode(ArgumentDecoder* decoder, RetainPtr<CFDataRef>& result) function in namespace:CoreIPC
305 bool decode(ArgumentDecoder* decoder, RetainPtr<CFDictionaryRef>& result) function in namespace:CoreIPC
389 bool decode(ArgumentDecoder* decoder, RetainPtr<CFNumberRef>& result) function in namespace:CoreIPC
429 bool decode(ArgumentDecoder* decoder, RetainPtr<CFStringRef>& result) function in namespace:CoreIPC
460 bool decode(ArgumentDecoder* decoder, RetainPtr<CFURLRef>& result) function in namespace:CoreIPC
490 bool decode(ArgumentDecoder* decoder, RetainPtr<SecCertificateRef>& result) function in namespace:CoreIPC
    [all...]
  /external/webkit/Source/WebKit2/Shared/
UserMessageCoders.h 191 if (!decoder->decode(typeAsUInt32))
199 if (!decoder->decode(size))
206 if (!decoder->decode(messageCoder))
216 if (!decoder->decode(size))
222 if (!decoder->decode(key))
227 if (!decoder->decode(messageCoder))
240 if (!decoder->decode(string))
254 if (!decoder->decode(value))
261 if (!decoder->decode(value))
268 if (!decoder->decode(value)
    [all...]
SecurityOriginData.cpp 43 bool SecurityOriginData::decode(CoreIPC::ArgumentDecoder* decoder, SecurityOriginData& securityOriginData) function in class:WebKit::SecurityOriginData
45 return decoder->decode(CoreIPC::Out(securityOriginData.protocol, securityOriginData.host, securityOriginData.port));
  /external/apache-harmony/nio_char/src/test/java/tests/api/java/nio/charset/
CharsetDecoderTest.java 199 * Class under test for CharBuffer decode(ByteBuffer)
208 decoder.decode(null);
214 CharBuffer out = decoder.decode(ByteBuffer.allocate(0));
219 out = decoder.decode(in);
227 out = decoder.decode(in);
246 CharBuffer buffer = decoder.decode(in);
255 out = decoder.decode(in);
261 out = decoder.decode(in);
271 decoder.decode(in);
279 out = decoder.decode(in)
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
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...]
  /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...]
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/sec/
SECNamedCurves.java 21 return new BigInteger(1, Hex.decode(hex));
35 byte[] S = Hex.decode("00F50B028E4D696E676875615175290472783FB1");
40 //ECPoint G = curve.decodePoint(Hex.decode("02"
42 ECPoint G = curve.decodePoint(Hex.decode("04"
61 byte[] S = Hex.decode("002757A1114D696E6768756151755316C05E0BD4");
66 //ECPoint G = curve.decodePoint(Hex.decode("03"
68 ECPoint G = curve.decodePoint(Hex.decode("04"
87 byte[] S = Hex.decode("000E0D4D696E6768756151750CC03A4473D03679");
92 //ECPoint G = curve.decodePoint(Hex.decode("03"
94 ECPoint G = curve.decodePoint(Hex.decode("04
    [all...]
  /external/webkit/Source/WebKit2/Shared/mac/
WebCoreArgumentCodersMac.mm 53 if (!decoder->decode(requestIsPresent))
62 if (!decode(decoder, dictionary))
88 if (!decoder->decode(responseIsPresent))
97 if (!decode(decoder, dictionary))
150 if (!decoder->decode(errorIsNull))
159 if (!decoder->decode(domain))
163 if (!decoder->decode(code))
167 if (!decoder->decode(stringUserInfoMap))
171 if (!decoder->decode(certificate))
PlatformCertificateInfo.mm 63 bool PlatformCertificateInfo::decode(CoreIPC::ArgumentDecoder* decoder, PlatformCertificateInfo& c)
66 if (!decoder->decode(hasCertificateChain))
72 if (!CoreIPC::decode(decoder, c.m_certificateChain))
  /external/webkit/Source/WebKit2/Shared/win/
WebCoreArgumentCodersWin.cpp 58 if (!decoder->decode(requestIsPresent))
67 if (!decode(decoder, dictionary))
99 if (!decoder->decode(responseIsPresent))
108 if (!decode(decoder, dictionary))
137 if (!decoder->decode(CoreIPC::Out(domain, errorCode, failingURL, localizedDescription)))
142 if (!decoder->decode(certificate))
  /external/apache-http/src/org/apache/commons/codec/net/
QuotedPrintableCodec.java 229 public byte[] decode(byte[] bytes) throws DecoderException { method in class:QuotedPrintableCodec
275 public String decode(String pString, String charset) throws DecoderException, UnsupportedEncodingException { method in class:QuotedPrintableCodec
279 return new String(decode(pString.getBytes(StringEncodings.US_ASCII)), charset);
295 public String decode(String pString) throws DecoderException { method in class:QuotedPrintableCodec
300 return decode(pString, getDefaultCharset());
341 public Object decode(Object pObject) throws DecoderException { method in class:QuotedPrintableCodec
345 return decode((byte[]) pObject);
347 return decode((String) pObject);
URLCodec.java 205 public byte[] decode(byte[] bytes) throws DecoderException { method in class:URLCodec
264 public String decode(String pString, String charset) method in class:URLCodec
270 return new String(decode(pString.getBytes(StringEncodings.US_ASCII)), charset);
285 public String decode(String pString) throws DecoderException { method in class:URLCodec
290 return decode(pString, getDefaultCharset());
330 public Object decode(Object pObject) throws DecoderException { method in class:URLCodec
334 return decode((byte[])pObject);
336 return decode((String)pObject);
  /external/chromium/sdch/open-vcdiff/src/
vcdiff_test.sh 45 # vcdiff with three arguments but without "encode" or "decode"
60 $VCDIFF decode -dictionary $DICTIONARY_FILE \
63 || { echo "Decode with three arguments failed"; \
80 { $VCDIFF decode -dictionary $DICTIONARY_FILE \
83 || { echo "Decode using stdin/stdout failed"; \
100 { $VCDIFF decode -dictionary $DICTIONARY_FILE \
103 || { echo "Decode with mixed arguments failed"; \
119 { $VCDIFF decode -dictionary $DICTIONARY_FILE \
122 || { echo "Decode with mixed arguments failed"; \
135 $VCDIFF decode -dictionary $TARGET_FILE
    [all...]
  /external/webkit/Source/WebCore/platform/text/mac/
TextCodecMac.h 46 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError);
50 OSStatus decode(const unsigned char* inputBuffer, int inputBufferLength, int& inputLength,
  /external/webkit/Source/WebKit2/Shared/Plugins/
NPVariantData.cpp 151 bool NPVariantData::decode(CoreIPC::ArgumentDecoder* decoder, NPVariantData& result) function in class:WebKit::NPVariantData
154 if (!decoder->decode(type))
173 return decoder->decode(result.m_boolValue);
175 return decoder->decode(result.m_int32Value);
177 return decoder->decode(result.m_doubleValue);
179 return decoder->decode(result.m_stringValue);
181 return decoder->decode(result.m_localNPObjectIDValue);
183 return decoder->decode(result.m_remoteNPObjectIDValue);
  /frameworks/base/voip/jni/rtp/
GsmCodec.cpp 47 int decode(int16_t *samples, int count, void *payload, int length);
60 int GsmCodec::decode(int16_t *samples, int count, void *payload, int length) function in class:__anon15731::GsmCodec
  /hardware/ti/omap3/omx/audio/src/openmax_il/aac_dec/src/
Android.mk 28 LOCAL_MODULE:= libOMX.TI.AAC.decode
  /hardware/ti/omap3/omx/audio/src/openmax_il/g711_dec/src/
Android.mk 28 LOCAL_MODULE:= libOMX.TI.G711.decode
  /hardware/ti/omap3/omx/audio/src/openmax_il/g722_dec/src/
Android.mk 27 LOCAL_MODULE:= libOMX.TI.G722.decode
  /hardware/ti/omap3/omx/audio/src/openmax_il/g726_dec/src/
Android.mk 28 LOCAL_MODULE:= libOMX.TI.G726.decode
  /hardware/ti/omap3/omx/audio/src/openmax_il/g729_dec/src/
Android.mk 28 LOCAL_MODULE:= libOMX.TI.G729.decode
  /hardware/ti/omap3/omx/audio/src/openmax_il/mp3_dec/src/
Android.mk 27 LOCAL_MODULE:= libOMX.TI.MP3.decode
  /hardware/ti/omap3/omx/audio/src/openmax_il/nbamr_dec/src/
Android.mk 27 LOCAL_MODULE:= libOMX.TI.AMR.decode
  /hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_dec/src/
Android.mk 27 LOCAL_MODULE:= libOMX.TI.WBAMR.decode
  /hardware/ti/omap3/omx/audio/src/openmax_il/wma_dec/src/
Android.mk 26 LOCAL_MODULE:= libOMX.TI.WMA.decode

Completed in 575 milliseconds

1 2 34 5 6 7 8 91011>>