HomeSort by relevance Sort by last modified time
    Searched defs:decode (Results 351 - 375 of 667) sorted by null

<<11121314151617181920>>

  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
IssuingDistributionPoint.java 66 public static IssuingDistributionPoint decode(byte[] encoding) method in class:IssuingDistributionPoint
69 (IssuingDistributionPoint) ASN1.decode(encoding);
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/v4/content/
probability_entry.h 89 static ProbabilityEntry decode(const uint64_t encodedEntry, const bool hasHistoricalInfo) { function in class:latinime::ProbabilityEntry
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
quoprimime.py 16 This module provides an interface to encode and decode both headers and bodies
34 'decode',
271 # the same as base64MIME.decode() or not...
272 def decode(encoded, eol=NL):
273 """Decode a quoted-printable string.
302 # Decode if in form =AB
320 body_decode = decode
321 decodestring = decode
334 """Decode a string encoded with RFC 2045 MIME header `Q' encoding.
268 def decode(encoded, eol=NL): function
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
punycode.py 205 def decode(self,input,errors='strict'): member in class:Codec
216 def decode(self, input, final=False): member in class:IncrementalDecoder
233 decode=Codec().decode,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/
decoder.py 18 _BYTES = '7FF80000000000007FF0000000000000'.decode('hex')
70 on attempt to decode an invalid string. If strict is False then literal
360 def decode(self, s, _w=WHITESPACE.match): member in class:JSONDecoder
372 """Decode a JSON document from ``s`` (a ``str`` or ``unicode``
376 This can be used to decode a JSON document from a string that may
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
applesingle.py 1 r"""Routines to decode AppleSingle files
107 def decode(infile, outpath, resonly=False, verbose=False): function
108 """decode(infile, outpath [, resonly=False, verbose=False])
143 decode(sys.argv[1], sys.argv[2], resonly=resonly)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
quoprimime.py 16 This module provides an interface to encode and decode both headers and bodies
34 'decode',
271 # the same as base64MIME.decode() or not...
272 def decode(encoded, eol=NL):
273 """Decode a quoted-printable string.
302 # Decode if in form =AB
320 body_decode = decode
321 decodestring = decode
334 """Decode a string encoded with RFC 2045 MIME header `Q' encoding.
268 def decode(encoded, eol=NL): function
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
punycode.py 205 def decode(self,input,errors='strict'): member in class:Codec
216 def decode(self, input, final=False): member in class:IncrementalDecoder
233 decode=Codec().decode,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/
decoder.py 18 _BYTES = '7FF80000000000007FF0000000000000'.decode('hex')
70 on attempt to decode an invalid string. If strict is False then literal
360 def decode(self, s, _w=WHITESPACE.match): member in class:JSONDecoder
372 """Decode a JSON document from ``s`` (a ``str`` or ``unicode``
376 This can be used to decode a JSON document from a string that may
  /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);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
Base64Encoder.java 123 * decode the base 64 encoded byte data writing it to the given output stream,
128 public int decode( method in class:Base64Encoder
200 * decode the base 64 encoded String data writing it to the given output stream,
205 public int decode( method in class:Base64Encoder
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
ImageFrameGenerator.cpp 104 // Prevents concurrent decode or scale operations on the same image data.
128 // Prevents concurrent decode or scale operations on the same image data.
188 OwnPtr<ScaledImageFragment> fullSizeImage = decode(index, &decoder);
201 // If decode has failed and resulted an empty image we can save work
229 PassOwnPtr<ScaledImageFragment> ImageFrameGenerator::decode(size_t index, ImageDecoder** decoder) function in class:WebCore::ImageFrameGenerator
231 TRACE_EVENT2("webkit", "ImageFrameGenerator::decode", "width", m_fullSize.width(), "height", m_fullSize.height());
278 // A cache object is considered complete if we can decode a complete frame.
299 // the memory provided by Skia and the decode was complete.
304 // This is to avoid future decode operations writing to the same bitmap.
ImageFrameGeneratorTest.cpp 115 PassOwnPtr<ScaledImageFragment> decode(size_t index) function in class:WebCore::ImageFrameGeneratorTest
118 OwnPtr<ScaledImageFragment> fragment = m_generator->decode(index, &decoder);
324 OwnPtr<ScaledImageFragment> image = decode(0);
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
GIFImageDecoder.cpp 116 decode(index);
321 void GIFImageDecoder::decode(size_t frameIndex) function in class:WebCore::GIFImageDecoder
337 if (!m_reader->decode(frameIndex)) {
GIFImageReader.cpp 201 // Otherwise, decoding failed; returns false in this case, which will always cause the GIFImageReader to set the "decode failed" flag.
322 // Returns false if a decoding error occurred. This is a fatal error and causes the GIFImageReader to set the "decode failed" flag.
323 // Otherwise, either not enough data is available to decode further than before, or the new data has been decoded successfully; returns true in this case.
324 bool GIFFrameContext::decode(const unsigned char* data, size_t length, WebCore::GIFImageDecoder* client, bool* frameDecoded) function in class:GIFFrameContext
343 // Some bad GIFs have extra blocks beyond the last row, which we don't want to decode.
363 // Decode a frame.
364 // This method uses GIFFrameContext:decode() to decode the frame; decoding error is reported to client as a critical failure.
366 bool GIFImageReader::decode(size_t frameIndex) function in class:GIFImageReader
373 return currentFrame->decode(data(0), m_data->size(), m_client, &frameDecoded
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
stringencode.cc 109 size_t decode(char * buffer, size_t buflen, function in namespace:talk_base
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_batchbuffer.c 123 struct drm_intel_decode *decode; local
127 decode = drm_intel_decode_context_alloc(intel->intelScreen->deviceID);
128 if (!decode)
133 drm_intel_decode_set_batch_pointer(decode,
142 drm_intel_decode_set_batch_pointer(decode,
148 drm_intel_decode(decode);
150 drm_intel_decode_context_free(decode);
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
texcompress_rgtc_tmp.h 35 TYPE decode; local
46 decode = alpha0;
48 decode = alpha1;
50 decode = ((alpha0 * (8 - code) + (alpha1 * (code - 1))) / 7);
52 decode = ((alpha0 * (6 - code) + (alpha1 * (code - 1))) / 5);
54 decode = T_MIN;
56 decode = T_MAX;
58 *value = decode;
  /external/chromium_org/third_party/skia/src/images/
SkImageDecoder.cpp 183 bool SkImageDecoder::decode(SkStream* stream, SkBitmap* bm, SkColorType pref, Mode mode) { function in class:SkImageDecoder
243 // check to see if the destination is large enough to decode the desired
299 success = codec->decode(stream, bm, pref, mode);
  /external/chromium_org/third_party/webrtc/base/
stringencode.cc 92 size_t decode(char * buffer, size_t buflen, function in namespace:rtc
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/test/
iLBC_testprogram.c 28 #include "decode.h"
58 short decode( /* (o) Number of decoded samples */ function
282 decode(&Dec_Inst, &decodeddata[count * Dec_Inst.blockl],
288 decode(&Dec_Inst, &decodeddata[count*Dec_Inst.blockl],
  /external/ksoap2/kobjects/org/ksoap2/kobjects/mime/
Decoder.java 191 Base64.decode(line, os);
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_batchbuffer.c 123 struct drm_intel_decode *decode; local
127 decode = drm_intel_decode_context_alloc(intel->intelScreen->deviceID);
128 if (!decode)
133 drm_intel_decode_set_batch_pointer(decode,
142 drm_intel_decode_set_batch_pointer(decode,
148 drm_intel_decode(decode);
150 drm_intel_decode_context_free(decode);
  /external/mesa3d/src/mesa/main/
texcompress_rgtc_tmp.h 35 TYPE decode; local
46 decode = alpha0;
48 decode = alpha1;
50 decode = ((alpha0 * (8 - code) + (alpha1 * (code - 1))) / 7);
52 decode = ((alpha0 * (6 - code) + (alpha1 * (code - 1))) / 5);
54 decode = T_MIN;
56 decode = T_MAX;
58 *value = decode;
  /external/skia/src/images/
SkImageDecoder.cpp 183 bool SkImageDecoder::decode(SkStream* stream, SkBitmap* bm, SkColorType pref, Mode mode) { function in class:SkImageDecoder
243 // check to see if the destination is large enough to decode the desired
299 success = codec->decode(stream, bm, pref, mode);

Completed in 1754 milliseconds

<<11121314151617181920>>