/packages/apps/Email/emailcommon/src/org/apache/james/mime4j/decoder/ |
DecoderUtil.java | 45 * @param s the string to decode.
74 * @param s the string to decode.
104 * @param encodedWord the encoded word to decode.
120 * @param encodedWord the encoded word to decode.
153 * @param body the string to decode.
273 log.warn("Could not decode encoded word '"
|
/sdk/ide_common/src/com/android/ide/common/resources/ |
ValueResourceParser.java | 147 // Integer.decode/parseInt can't deal with hex value > 0x7FFFFFFF so we 148 // use Long.decode instead. 149 mCurrentAttr.addValue(name, (int)(long)Long.decode(value)); 162 // Integer.decode/parseInt can't deal with hex value > 0x7FFFFFFF so we 163 // use Long.decode instead. 164 mCurrentAttr.addValue(name, (int)(long)Long.decode(value));
|
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/ |
CertificateStub.java | 52 * @see java.security.Certificate#decode(java.io.InputStream) 54 public void decode(InputStream stream) throws KeyException, method in class:CertificateStub
|
/external/apache-http/src/org/apache/commons/codec/net/ |
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/bluetooth/hcidump/ |
ChangeLog | 11 Decode the Read Link Policy Settings command. 12 Decode Default Link Policy Settings commands 90 Decode and display binary strings correctly. 101 Decode class of device and BD_ADDR for inquiry filter. 108 Decode the extended inquiry response payload. 162 Decode almost every used HCI commands and events. 230 Decode L2CAP information request and response. 239 Decode RFCOMM credit based flow control.
|
/external/chromium/chrome/browser/chromeos/login/ |
user_image_loader.h | 52 // Contains attributes we need to know about each image we decode. 85 // Holds info structures about all images we're trying to decode.
|
/external/chromium/sdch/open-vcdiff/ |
README | 16 vcdiff decode -dictionary file.dict < delta_file > target_file 31 decoder.Decode(dictionary.data(), dictionary.size(), delta, &target);
|
/external/dropbear/libtomcrypt/src/pk/asn1/der/sequence/ |
der_decode_sequence_multi.c | 17 ASN.1 DER, decode a SEQUENCE, Tom St Denis 23 Decode a SEQUENCE type using a VA list
|
/external/dropbear/libtomcrypt/src/pk/katja/ |
katja_decrypt_key.c | 77 /* rsa decode the packet */ 89 /* now OAEP decode the packet */
|
/external/dropbear/libtomcrypt/src/pk/pkcs1/ |
pkcs_1_v1_5_decode.c | 20 /** @brief PKCS #1 v1.5 decode. 22 * @param msg The encoded data to decode
|
/external/dropbear/libtomcrypt/src/pk/rsa/ |
rsa_decrypt_key.c | 81 /* rsa decode the packet */ 89 /* now OAEP decode the packet */
|
/external/libvpx/vp8/common/ |
duck_io.h | 58 const char *decode; member in struct:sal_err_map_temp 84 return (char *) g_sal_err_map[t].decode;
|
/external/v8/src/ |
frame-element.h | 61 return TypeInfo::FromInt(TypeInfoField::decode(value_)); 114 bool is_synced() const { return SyncedField::decode(value_); } 132 bool is_copied() const { return CopiedField::decode(value_); } 144 bool is_untagged_int32() const { return UntaggedInt32Field::decode(value_); } 148 uint32_t reg = DataField::decode(value_); 157 at(DataField::decode(value_)); 162 return DataField::decode(value_); 235 Type type() const { return TypeField::decode(value_); }
|
/external/webkit/Source/WebCore/platform/image-decoders/jpeg/ |
JPEGImageDecoder.h | 61 // data coming, sets the "decode failure" flag. 62 void decode(bool onlySize);
|
/external/webkit/Source/WebCore/platform/image-decoders/png/ |
PNGImageDecoder.h | 65 // data coming, sets the "decode failure" flag. 66 void decode(bool onlySize);
|
/external/webkit/Source/WebCore/platform/image-decoders/webp/ |
WEBPImageDecoder.h | 51 bool decode(bool onlySize); 53 WebPIDecoder* m_decoder; // This is only used when we want to decode() but not all data is available yet.
|
/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/ |
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));
|
WebPopupItem.cpp | 71 bool WebPopupItem::decode(CoreIPC::ArgumentDecoder* decoder, WebPopupItem& item) function in class:WebKit::WebPopupItem 81 if (!decoder->decode(CoreIPC::Out(type, text, textDirection, hasTextDirectionOverride, toolTip, accessibilityText, isEnabled, isLabel)))
|
/frameworks/base/include/media/ |
IMediaPlayerService.h | 46 virtual sp<IMemory> decode(const char* url, uint32_t *pSampleRate, int* pNumChannels, int* pFormat) = 0; 47 virtual sp<IMemory> decode(int fd, int64_t offset, int64_t length, uint32_t *pSampleRate, int* pNumChannels, int* pFormat) = 0;
|
/frameworks/base/telephony/java/com/android/internal/telephony/cat/ |
BerTlv.java | 63 * @param data A byte array to decode from 67 public static BerTlv decode(byte[] data) throws ResultException { method in class:BerTlv
|
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/ |
ASN1Explicit.java | 62 public Object decode(BerInputStream in) throws IOException { method in class:ASN1Explicit 70 in.content = type.decode(in);
|
/libcore/luni/src/main/java/org/apache/harmony/security/x509/ |
SubjectKeyIdentifier.java | 53 public static SubjectKeyIdentifier decode(byte[] encoding) method in class:SubjectKeyIdentifier 56 ASN1OctetString.getInstance().decode(encoding));
|
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
CertificateVerify.java | 59 "DECODE ERROR: incorrect CertificateVerify"); 63 "DECODE ERROR: incorrect CertificateVerify");
|
/libcore/luni/src/test/java/libcore/java/nio/charset/ |
OldCharset_AbstractTest.java | 123 static void decode (byte[] input, char[] expectedOutput) throws CharacterCodingException { method in class:OldCharset_AbstractTest 127 outputCB = decoder.decode(inputBB); 152 decode(testBytes, testChars); method 181 CharBuffer outputCB = decoder.decode(intermediateBB); 183 assertEqualCBs("decode(encode(A)) must be identical with A = " + code, 190 fail("failed to decode(encode(" + code + "))"); 209 CharBuffer outputCB = decoder.decode(intermediateBB); 211 assertEqualCBs("decode(encode(A)) must be identical with A!",
|