HomeSort by relevance Sort by last modified time
    Searched defs:Decoder (Results 1 - 25 of 94) sorted by null

1 2 3 4

  /external/apache-http/src/org/apache/commons/codec/
Decoder.java 24 * <p>Allows a user to pass a generic Object to any Decoder
30 * @version $Id: Decoder.java,v 1.9 2004/02/29 04:08:31 tobrien Exp $
37 public interface Decoder {
43 * to the specific type expected by a particular Decoder
51 * @throws DecoderException a decoder exception can
  /external/sl4a/Common/src/org/apache/commons/codec/
Decoder.java 25 * <p>Allows a user to pass a generic Object to any Decoder
30 * @version $Id: Decoder.java 797690 2009-07-24 23:28:35Z ggregory $
32 public interface Decoder {
38 * to the specific type expected by a particular Decoder
46 * @throws DecoderException a decoder exception can
  /external/v8/src/arm64/
decoder-arm64.h 17 // List macro containing all visitors needed by the decoder class.
83 // Register a new visitor class with the decoder.
109 // stored by the decoder.
123 class Decoder : public V {
125 Decoder() {}
126 virtual ~Decoder() {}
128 // Top-level instruction decoder function. Decodes an instruction and calls
129 // the visitor functions registered with the Decoder class.
  /external/libvpx/libvpx/test/
decode_test_driver.h 26 explicit DxDataIterator(vpx_codec_ctx_t *decoder)
27 : decoder_(decoder), iter_(NULL) {}
39 class Decoder {
41 explicit Decoder(vpx_codec_dec_cfg_t cfg)
46 Decoder(vpx_codec_dec_cfg_t cfg, const vpx_codec_flags_t flag)
51 virtual ~Decoder() { vpx_codec_destroy(&decoder_); }
117 // Common test functionality for all Decoder tests.
130 Decoder * /*decoder*/) {}
135 Decoder *decoder)
    [all...]
  /frameworks/base/core/java/android/net/metrics/
ApfProgramEvent.java 118 names.add(Decoder.constants.get(bit));
123 final static class Decoder {
IpManagerEvent.java 90 Decoder.constants.get(eventType), durationMs);
93 final static class Decoder {
IpReachabilityEvent.java 95 String eventName = Decoder.constants.get(hi);
99 final static class Decoder {
NetworkEvent.java 109 netId, Decoder.constants.get(eventType), durationMs);
112 final static class Decoder {
ValidationProbeEvent.java 97 return Decoder.constants.get(probeType & 0xff, "PROBE_???");
101 return Decoder.constants.get(probeType & 0xff00, "UNKNOWN");
110 final static class Decoder {
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/ImageDecoderLib/
ImageDecoderLib.c 25 DECODE_IMAGE Decoder;
81 Status = Entry->Decoder (ImageFormat, Image, ImageSize, GopBlt, GopBltSize, PixelWidth, PixelHeight);
95 Register an image decoder.
97 @param Decoder An image decoder.
99 @retval EFI_SUCCESS The decoder was successfully registered.
100 @retval EFI_OUT_OF_RESOURCES No enough resource to register the decoder.
106 IN DECODE_IMAGE Decoder
117 Entry->Decoder = Decoder;
    [all...]
  /external/brotli/go/cbrotli/internal/
decoder.go 6 // Package decoder wraps the brotli decoder C API used by package brotli.
7 package decoder package
60 // Decoder is the Brotli c-decoder handle.
61 type Decoder struct {
65 // New returns a new Brotli c-decoder handle.
67 func New() Decoder {
68 return Decoder{state: C.BrotliDecoderCreateInstance(nil, nil, nil)}
71 // Close frees resources used by decoder
    [all...]
  /external/llvm/tools/llvm-readobj/
ARMWinEHPrinter.h 22 class Decoder {
31 bool (Decoder::*Routine)(const uint8_t *, unsigned &, unsigned, bool);
110 Decoder(ScopedPrinter &SW) : SW(SW), OS(SW.getOStream()) {}
  /external/webrtc/webrtc/modules/audio_coding/acm2/
acm_receiver.h 42 struct Decoder {
80 // sampling rate of the decoder.
95 // - acm_codec_id : ACM codec ID; -1 means external decoder.
98 // - audio_decoder : pointer to a decoder object. If it's null, then
99 // NetEq will internally create a decoder object
102 // given decoder for the given payload type. NetEq
103 // won't take ownership of the decoder; it's up to
107 // Providing an existing decoder object here is
111 // (e.g. iSAC, where the decoder needs to be paired
160 // Returns the sample rate of the decoder associated with the last incomin
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/gob/
decoder.go 20 // A Decoder manages the receipt of type and data information read from the
22 type Decoder struct {
34 // NewDecoder returns a new decoder that reads from the io.Reader.
37 func NewDecoder(r io.Reader) *Decoder {
38 dec := new(Decoder)
53 func (dec *Decoder) recvType(id typeId) {
74 func (dec *Decoder) recvMessage() bool {
90 func (dec *Decoder) readMessage(nbytes int) {
93 panic("non-empty decoder buffer")
114 func (dec *Decoder) nextInt() int64
    [all...]
  /prebuilts/go/linux-x86/src/encoding/gob/
decoder.go 20 // A Decoder manages the receipt of type and data information read from the
22 type Decoder struct {
34 // NewDecoder returns a new decoder that reads from the io.Reader.
37 func NewDecoder(r io.Reader) *Decoder {
38 dec := new(Decoder)
53 func (dec *Decoder) recvType(id typeId) {
74 func (dec *Decoder) recvMessage() bool {
90 func (dec *Decoder) readMessage(nbytes int) {
93 panic("non-empty decoder buffer")
114 func (dec *Decoder) nextInt() int64
    [all...]
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVFunction.cpp 99 SPIRVDecoder Decoder = getDecoder(I);
100 Decoder >> Type >> Id >> FCtrlMask >> FuncType;
104 Decoder.getWordCountAndOpCode();
106 if (Decoder.OpCode == OpFunctionEnd)
109 switch(Decoder.OpCode) {
111 auto Param = static_cast<SPIRVFunctionParameter *>(Decoder.getEntry());
115 Decoder.getWordCountAndOpCode();
120 decodeBB(Decoder);
132 SPIRVFunction::decodeBB(SPIRVDecoder &Decoder) {
133 SPIRVBasicBlock *BB = static_cast<SPIRVBasicBlock*>(Decoder.getEntry())
    [all...]
SPIRVDecorate.cpp 114 SPIRVDecoder Decoder = getDecoder(I);
115 Decoder >> Target >> Dec;
117 SPIRVDecorateLinkageAttr::decodeLiterals(Decoder, Literals);
119 Decoder >> Literals;
  /external/lzma/Java/SevenZip/Compression/RangeCoder/
Decoder.java 4 public class Decoder
  /external/swiftshader/third_party/LLVM/utils/TableGen/
FixedLenDecoderEmitter.h 1 //===------------ FixedLenDecoderEmitter.h - Decoder Generator --*- C++ -*-===//
10 // It contains the tablegen backend that emits the decoder functions for
33 std::string Decoder;
36 : Decoder(D) { }
  /external/vixl/src/aarch64/
decoder-aarch64.h 37 // List macro containing all visitors needed by the decoder class.
145 class Decoder {
147 Decoder() {}
161 // Register a new visitor class with the decoder.
182 // are registered in this order in the decoder, calls to
197 // of visitors stored by the decoder.
209 // Decoder class.
  /external/v8/src/ppc/
disasm-ppc.cc 46 // Decoder decodes and disassembles instructions into an output buffer.
49 class Decoder {
51 Decoder(const disasm::NameConverter& converter, Vector<char> out_buffer)
56 ~Decoder() {}
91 DISALLOW_COPY_AND_ASSIGN(Decoder);
95 // Support for assertions in the Decoder formatting functions.
101 void Decoder::PrintChar(const char ch) { out_buffer_[out_buffer_pos_++] = ch; }
105 void Decoder::Print(const char* str) {
116 void Decoder::PrintRegister(int reg) {
122 void Decoder::PrintDRegister(int reg)
    [all...]
  /external/v8/src/wasm/
decoder.h 32 class Decoder {
34 Decoder(const byte* start, const byte* end)
40 Decoder(const byte* start, const byte* pc, const byte* end)
47 virtual ~Decoder() {}
281 // Resets the boundaries of this decoder.
  /external/ksoap2/kobjects/org/ksoap2/kobjects/mime/
Decoder.java 27 public class Decoder {
118 public Decoder(InputStream is, String _bound) throws IOException {
122 public Decoder(InputStream is, String _bound, String characterEncoding) throws IOException {
  /external/lzma/CS/7zip/Compress/RangeCoder/
RangeCoder.cs 122 class Decoder
  /external/sl4a/ScriptingLayerForAndroid/src/org/apache/harmony/niochar/charset/additional/
IBM437.java 43 return new Decoder(this);
50 private static final class Decoder extends CharsetDecoder{
51 private Decoder(Charset cs){

Completed in 1377 milliseconds

1 2 3 4