HomeSort by relevance Sort by last modified time
    Searched full:decode (Results 226 - 250 of 2271) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /development/samples/training/threadsample/src/com/example/android/threadsample/
PhotoTask.java 29 * the download or decode; instead, it manages persistent storage for the tasks that do the work.
30 * It does this by implementing the interfaces that the download and decode classes define, and
31 * then passing itself as an argument to the constructor of a download or decode object. In effect,
33 * run a decode, and then start over again. This class can be pooled and reused as necessary.
196 // Returns the instance that decode the image
282 // Converts the decode state to the overall state.
  /packages/apps/Email/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 '"
  /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/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/libvorbis/doc/vorbisfile/
return.html 35 <dd>Read error while fetching compressed data for decode</dd>
38 <dd>Internal inconsistency in decode state. Continuing is likely not possible.</dd>
  /external/libvorbis/examples/
decoder_example.c 48 ogg_packet op; /* one raw packet of data for decode */
54 vorbis_block vb; /* local working space for packet->PCM decode */
75 /********** Decode setup ************/
103 /* Get the serial number and set up the rest of decode. */
201 if(vorbis_synthesis_init(&vd,&vi)==0){ /* central decode state */
202 vorbis_block_init(&vd,&vb); /* local state for most of the decode
208 /* The rest is just a straight decode loop until end of stream */
226 /* we have a packet. Decode it */
  /external/open-vcdiff/
README 16 vcdiff decode -dictionary file.dict < delta_file > target_file
31 decoder.Decode(dictionary.data(), dictionary.size(), delta, &target);
  /external/smack/src/com/kenai/jbosh/
GZIPCodec.java 77 * Uncompress/decode the data provided using the GZIP format.
83 public static byte[] decode(final byte[] compressed) throws IOException { method in class:GZIPCodec
ZLIBCodec.java 77 * Uncompress/decode the data provided using the ZLIB format.
83 public static byte[] decode(final byte[] compressed) throws IOException { method in class:ZLIBCodec
  /external/v8/src/
compiler.h 52 bool is_lazy() const { return IsLazy::decode(flags_); }
53 bool is_eval() const { return IsEval::decode(flags_); }
54 bool is_global() const { return IsGlobal::decode(flags_); }
58 return LanguageModeField::decode(flags_);
60 bool is_in_loop() const { return IsInLoop::decode(flags_); }
95 return IsNative::decode(flags_);
137 return IsCompilingForDebugging::decode(flags_);
159 return SupportsDeoptimization::decode(flags_);
  /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)))
  /external/webp/
README.android 39 libwebp-decode libwebp-encode:
41 LOCAL_STATIC_LIBRARIES += libwebp-decode libwebp-encode
  /frameworks/base/media/java/android/media/
MediaCrypto.java 24 * to decode encrypted media data.
68 * to decode data of the given mime type.
  /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);

Completed in 2405 milliseconds

1 2 3 4 5 6 7 8 91011>>