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

<<11121314151617181920>>

  /dalvik/dexgen/src/com/android/dexgen/dex/file/
DebugInfoDecoder.java 183 * Valid after calling {@code decode}.
193 * Valid after calling {@code decode}.
204 public void decode() { method in class:DebugInfoDecoder
452 decoder.decode();
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.codec_1.3.0.v20100518-1140.jar 
  /dalvik/dx/src/com/android/dx/io/instructions/
DecodedInstruction.java 69 public static DecodedInstruction decode(CodeInput in) throws EOFException { method in class:DecodedInstruction
74 return format.decode(opcodeUnit, in);
89 decoded[in.cursor()] = DecodedInstruction.decode(in);
  /development/tools/etc1tool/
etc1tool.cpp 42 "%s infile [--help | --encode | --encodeNoHeader | --decode] [--showDifference difffile] [-o outfile]\n",
52 "\t\t--decode create a PNG file from an ETC1 file.\n");
453 int decode(const char* pInput, const char* pOutput) { function
477 usage("At most one occurrence of --encode --encodeNoHeader or --decode is allowed.\n");
518 } else if (strcmp(pArg, "--decode") == 0) {
577 decode(pInput, pOutput);
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
Identity2Test.java 62 public void decode(InputStream in) { method in class:Identity2Test.CertificateImpl
  /external/apache-harmony/support/src/test/java/org/apache/harmony/testframework/
CharWrapperTester.java 44 public abstract char[] decode(char[] delegateChars) throws Exception; method in class:CharWrapperTester
91 return decode(delegate.buffer.toString().toCharArray());
WrapperTester.java 45 public abstract byte[] decode(byte[] delegateBytes) throws Exception; method in class:WrapperTester
92 return WrapperTester.this.decode(delegate.bytesOut.toByteArray());
  /external/apache-http/src/org/apache/commons/codec/binary/
Base64.java 199 * @param pObject Object to decode
205 public Object decode(Object pObject) throws DecoderException { method in class:Base64
207 throw new DecoderException("Parameter supplied to Base64 decode is not a byte[]");
209 return decode((byte[]) pObject);
219 public byte[] decode(byte[] pArray) { method in class:Base64
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
SignatureSpi.java 309 public BigInteger[] decode( method in class:SignatureSpi.StdDSAEncoder
367 public BigInteger[] decode( method in class:SignatureSpi.CVCDSAEncoder
  /external/chromium_org/content/renderer/pepper/
video_decoder_shim.cc 86 void Decode(uint32_t decode_id, scoped_refptr<media::DecoderBuffer> buffer);
106 // VideoDecoder returns pictures without information about the decode buffer
107 // that generated it. Save the decode_id from the last decode that completed,
108 // which is close for most decoders, which only decode one buffer at a time.
150 void VideoDecoderShim::DecoderImpl::Decode(
162 const PendingDecode& decode = pending_decodes_.front(); local
163 scoped_ptr<PendingFrame> pending_frame(new PendingFrame(decode.decode_id));
168 decode.decode_id));
215 const PendingDecode& decode = pending_decodes_.front(); local
216 decoder_->Decode(
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
TextResourceDecoder.cpp 365 String TextResourceDecoder::decode(const char* data, size_t len) function in class:WebCore::TextResourceDecoder
411 String result = m_codec->decode(dataForDecode, lengthForDecode, DoNotFlush, m_contentType == XMLContent && !m_useLenientXMLDecoding, m_sawError);
432 String result = m_codec->decode(m_buffer.data(), m_buffer.size(), FetchEOF, m_contentType == XMLContent && !m_useLenientXMLDecoding, m_sawError);
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
TextCodecICU.cpp 333 String TextCodecICU::decode(const char* bytes, size_t length, FlushBehavior flush, bool stopOnError, bool& sawError) function in class:WTF::TextCodecICU
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
texparam.c 489 GLenum decode = params[0]; local
490 if (decode == GL_DECODE_EXT || decode == GL_SKIP_DECODE_EXT) {
491 if (texObj->Sampler.sRGBDecode != decode) {
493 texObj->Sampler.sRGBDecode = decode;
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
DecodedInstruction.java 69 public static DecodedInstruction decode(CodeInput in) throws EOFException { method in class:DecodedInstruction
74 return format.decode(opcodeUnit, in);
89 decoded[in.cursor()] = DecodedInstruction.decode(in);
  /external/freetype/src/gzip/
infutil.h 46 } decode; /* if CODES, current state */ member in union:inflate_blocks_state::__anon25367
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
Downsampler.java 131 public Bitmap decode(InputStream is, BitmapPool pool, int outWidth, int outHeight, DecodeFormat decodeFormat) { method in class:Downsampler
198 // On KitKat+, any bitmap can be used to decode any other bitmap.
  /external/harfbuzz_ng/test/shaping/
hb_test_tools.py 407 def decode (s): member in class:Unicode
  /external/mesa3d/src/mesa/main/
texparam.c 489 GLenum decode = params[0]; local
490 if (decode == GL_DECODE_EXT || decode == GL_SKIP_DECODE_EXT) {
491 if (texObj->Sampler.sRGBDecode != decode) {
493 texObj->Sampler.sRGBDecode = decode;
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
Huffman.java 88 ByteString decode(ByteString buf) throws IOException { method in class:Huffman.Codec
89 return ByteString.of(decode(buf.toByteArray()));
92 byte[] decode(byte[] buf) throws IOException { method in class:Huffman.Codec
  /external/zlib/src/contrib/blast/
blast.c 46 /* input limit error return state for bits() and decode() */
97 * seen in the function decode() below.
105 * Decode a code from the stream s using huffman table h. Return the symbol or
125 local int decode(struct state *s, struct huffman *h) function
175 * Huffman code for n symbols, construct the tables required to decode those
182 * possible for decode() using that table to return an error--any stream of
184 * it is possible for decode() using that table to return an error for received
213 return 0; /* complete, but decode() will fail */
241 * Decode PKWare Compression Library stream.
325 /* decode literals and length/distance pairs *
    [all...]
  /external/zlib/src/contrib/puff/
puff.c 13 * around 4K on my machine (a PowerPC using GNU cc). If the faster decode()
45 * 1.2 17 Mar 2002 - Add faster version of decode(), doubles speed (!),
111 /* input limit error return state for bits() and decode() */
204 * seen in the function decode() below.
212 * Decode a code from the stream s using huffman table h. Return the symbol or
235 local int decode(struct state *s, const struct huffman *h) function
258 * A faster version of decode() for real applications of this code. It's not
263 local int decode(struct state *s, const struct huffman *h) function
310 * Huffman code for n symbols, construct the tables required to decode those
317 * possible for decode() using that table to return an error--any stream o
    [all...]
  /external/zxing/qr_scanner/src/com/google/zxing/client/android/
CaptureActivityHandler.java 79 Log.d(TAG, "Got decode succeeded message");
86 // We're decoding as fast as possible, so when one decode fails, start another.
88 cameraManager.requestPreviewFrame(decodeThread.getHandler(), R.id.decode);
122 cameraManager.requestPreviewFrame(decodeThread.getHandler(), R.id.decode);
  /frameworks/av/cmds/stagefright/
codec.cpp 69 static int decode( function
425 decode(looper, argv[0], useAudio, useVideo, surface);
  /frameworks/av/media/libmedia/
IMediaPlayerService.cpp 91 virtual status_t decode( function in class:android::BpMediaPlayerService
121 virtual status_t decode(int fd, int64_t offset, int64_t length, uint32_t *pSampleRate, function in class:android::BpMediaPlayerService
236 decode(httpService,
262 status_t status = decode(fd, offset, length, &sampleRate, &numChannels, &format,
mediaplayer.cpp 838 /*static*/ status_t MediaPlayer::decode( function in class:android::MediaPlayer
847 ALOGV("decode(%s)", url);
851 status = service->decode(httpService, url, pSampleRate, pNumChannels, pFormat, heap, pSize);
866 /*static*/ status_t MediaPlayer::decode(int fd, int64_t offset, int64_t length, function in class:android::MediaPlayer
871 ALOGV("decode(%d, %" PRId64 ", %" PRId64 ")", fd, offset, length);
875 status = service->decode(fd, offset, length, pSampleRate,

Completed in 1790 milliseconds

<<11121314151617181920>>