HomeSort by relevance Sort by last modified time
    Searched defs:Decoder (Results 26 - 50 of 109) sorted by null

12 3 4 5

  /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){
  /frameworks/base/core/java/android/net/metrics/
DhcpErrorEvent.java 103 return String.format("DhcpErrorEvent(%s)", Decoder.constants.get(errorCode));
106 final static class Decoder {
  /frameworks/base/tests/HierarchyViewerTest/src/com/android/test/hierarchyviewer/
Decoder.java 8 public class Decoder {
26 public Decoder(byte[] buf) {
30 public Decoder(ByteBuffer buf) {
  /prebuilts/go/darwin-x86/src/encoding/json/
stream.go 13 // A Decoder reads and decodes JSON values from an input stream.
14 type Decoder struct {
27 // NewDecoder returns a new decoder that reads from r.
29 // The decoder introduces its own buffering and may
31 func NewDecoder(r io.Reader) *Decoder {
32 return &Decoder{r: r}
35 // UseNumber causes the Decoder to unmarshal a number into an interface{} as a
37 func (dec *Decoder) UseNumber() { dec.d.useNumber = true }
39 // DisallowUnknownFields causes the Decoder to return an error when the destination
42 func (dec *Decoder) DisallowUnknownFields() { dec.d.disallowUnknownFields = true
    [all...]
  /prebuilts/go/linux-x86/src/encoding/json/
stream.go 13 // A Decoder reads and decodes JSON values from an input stream.
14 type Decoder struct {
27 // NewDecoder returns a new decoder that reads from r.
29 // The decoder introduces its own buffering and may
31 func NewDecoder(r io.Reader) *Decoder {
32 return &Decoder{r: r}
35 // UseNumber causes the Decoder to unmarshal a number into an interface{} as a
37 func (dec *Decoder) UseNumber() { dec.d.useNumber = true }
39 // DisallowUnknownFields causes the Decoder to return an error when the destination
42 func (dec *Decoder) DisallowUnknownFields() { dec.d.disallowUnknownFields = true
    [all...]
  /external/v8/src/s390/
disasm-s390.cc 44 // Decoder decodes and disassembles instructions into an output buffer.
47 class Decoder {
49 Decoder(const disasm::NameConverter& converter, Vector<char> out_buffer)
54 ~Decoder() {}
89 DISALLOW_COPY_AND_ASSIGN(Decoder);
92 // Support for assertions in the Decoder formatting functions.
97 void Decoder::PrintChar(const char ch) { out_buffer_[out_buffer_pos_++] = ch; }
100 void Decoder::Print(const char* str) {
110 void Decoder::PrintRegister(int reg) {
115 void Decoder::PrintDRegister(int reg)
    [all...]
  /external/v8/src/mips/
disasm-mips.cc 42 // Decoder decodes and disassembles instructions into an output buffer.
45 class Decoder {
47 Decoder(const disasm::NameConverter& converter,
55 ~Decoder() {}
131 DISALLOW_COPY_AND_ASSIGN(Decoder);
135 // Support for assertions in the Decoder formatting functions.
141 void Decoder::PrintChar(const char ch) {
147 void Decoder::Print(const char* str) {
158 void Decoder::PrintRegister(int reg) {
163 void Decoder::PrintRs(Instruction* instr)
    [all...]
  /external/v8/src/mips64/
disasm-mips64.cc 43 // Decoder decodes and disassembles instructions into an output buffer.
46 class Decoder {
48 Decoder(const disasm::NameConverter& converter,
56 ~Decoder() {}
139 DISALLOW_COPY_AND_ASSIGN(Decoder);
143 // Support for assertions in the Decoder formatting functions.
149 void Decoder::PrintChar(const char ch) {
155 void Decoder::Print(const char* str) {
166 void Decoder::PrintRegister(int reg) {
171 void Decoder::PrintRs(Instruction* instr)
    [all...]
  /frameworks/av/media/libmediaplayer2/nuplayer2/
NuPlayer2Decoder.cpp 59 NuPlayer2::Decoder::Decoder(
93 mComponentName("decoder") {
97 NuPlayer2::Decoder::~Decoder() {
106 sp<AMessage> NuPlayer2::Decoder::getStats() const {
113 status_t NuPlayer2::Decoder::setVideoSurface(const sp<ANativeWindowWrapper> &nww) {
130 void NuPlayer2::Decoder::onMessageReceived(const sp<AMessage> &msg) {
187 ALOGE("Decoder (%s) reported error : 0x%x",
287 void NuPlayer2::Decoder::onConfigure(const sp<AMessage> &format)
    [all...]
NuPlayer2Decoder.h 31 struct NuPlayer2::Decoder : public DecoderBase {
32 Decoder(const sp<AMessage> &notify,
48 virtual ~Decoder();
145 DISALLOW_EVIL_CONSTRUCTORS(Decoder);
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerDecoder.cpp 59 NuPlayer::Decoder::Decoder(
93 mComponentName("decoder") {
100 NuPlayer::Decoder::~Decoder() {
109 sp<AMessage> NuPlayer::Decoder::getStats() const {
116 status_t NuPlayer::Decoder::setVideoSurface(const sp<Surface> &surface) {
132 void NuPlayer::Decoder::onMessageReceived(const sp<AMessage> &msg) {
189 ALOGE("Decoder (%s) reported error : 0x%x",
279 void NuPlayer::Decoder::onConfigure(const sp<AMessage> &format)
    [all...]
NuPlayerDecoder.h 28 struct NuPlayer::Decoder : public DecoderBase {
29 Decoder(const sp<AMessage> &notify,
45 virtual ~Decoder();
145 DISALLOW_EVIL_CONSTRUCTORS(Decoder);
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/HiiDatabaseDxe/
Image.c 787 FALSE to locate image decoder instance to decode image.
818 EFI_HII_IMAGE_DECODER_PROTOCOL *Decoder;
851 Decoder = LocateHiiImageDecoder (CurrentImageBlock->BlockType);
852 if (Decoder == NULL) {
864 Status = Decoder->DecodeImage (
865 Decoder,
873 // Spec requires to use the first capable image decoder instance.
874 // The first image decoder instance may fail to decode the image.
    [all...]
  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
CharsetCallback.java 129 * Decoder Callback interface
132 public interface Decoder {
141 public CoderResult call(CharsetDecoderICU decoder, Object context,
186 public static final Decoder TO_U_CALLBACK_SKIP = new Decoder() {
188 public CoderResult call(CharsetDecoderICU decoder, Object context,
232 public static final Decoder TO_U_CALLBACK_SUBSTITUTE = new Decoder() {
234 public CoderResult call(CharsetDecoderICU decoder, Object context,
238 CharsetICU cs = (CharsetICU) decoder.charset()
    [all...]
  /external/lzma/CS/7zip/Compress/LZMA/
LzmaDecoder.cs 9 public class Decoder : ICoder, ISetDecoderProperties // ,System.IO.Stream
42 public uint Decode(RangeCoder.Decoder rangeDecoder, uint posState)
69 public byte DecodeNormal(RangeCoder.Decoder rangeDecoder)
78 public byte DecodeWithMatchByte(RangeCoder.Decoder rangeDecoder, byte matchByte)
128 public byte DecodeNormal(RangeCoder.Decoder rangeDecoder, uint pos, byte prevByte)
131 public byte DecodeWithMatchByte(RangeCoder.Decoder rangeDecoder, uint pos, byte prevByte, byte matchByte)
136 RangeCoder.Decoder m_RangeDecoder = new RangeCoder.Decoder();
160 public Decoder()
  /external/pdfium/core/fpdfapi/page/
cpdf_streamparser.cpp 68 const ByteString& decoder,
72 if (decoder == "CCITTFaxDecode" || decoder == "CCF") {
77 if (decoder == "ASCII85Decode" || decoder == "A85")
79 if (decoder == "ASCIIHexDecode" || decoder == "AHx")
81 if (decoder == "FlateDecode" || decoder == "Fl") {
85 if (decoder == "LZWDecode" || decoder == "LZW")
    [all...]
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVType.cpp 288 auto Decoder = getDecoder(I);
290 Decoder >> PointerId >> SC;
  /external/webrtc/webrtc/
video_receive_stream.h 33 struct Decoder {
36 // The actual decoder instance.
37 VideoDecoder* decoder = nullptr; member in struct:webrtc::VideoReceiveStream::Decoder
39 // Received RTP packets with this payload type will be sent to this decoder
53 // Decoder stats.
84 std::vector<Decoder> decoders;
  /frameworks/base/core/java/android/util/
Base64.java 29 * Default values for encoder/decoder flags.
53 * Encoder/decoder flag bit to indicate using the "URL and
158 Decoder decoder = new Decoder(flags, new byte[len*3/4]); local
160 if (!decoder.process(input, offset, len, true)) {
165 if (decoder.op == decoder.output.length) {
166 return decoder.output;
171 byte[] temp = new byte[decoder.op]
    [all...]
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/http2/hpack/
hpack.go 77 // A Decoder is the decoding context for incremental processing of
79 type Decoder struct {
97 // NewDecoder returns a new decoder with the provided maximum dynamic
100 func NewDecoder(maxDynamicTableSize uint32, emitFunc func(f HeaderField)) *Decoder {
101 d := &Decoder{
111 // ErrStringLength is returned by Decoder.Write when the max string length
112 // (as configured by Decoder.SetMaxStringLength) would be violated.
119 func (d *Decoder) SetMaxStringLength(n int) {
126 func (d *Decoder) SetEmitFunc(emitFunc func(f HeaderField)) {
134 // while still decoding and keeping in-sync with decoder state, bu
    [all...]
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/http2/hpack/
hpack.go 77 // A Decoder is the decoding context for incremental processing of
79 type Decoder struct {
97 // NewDecoder returns a new decoder with the provided maximum dynamic
100 func NewDecoder(maxDynamicTableSize uint32, emitFunc func(f HeaderField)) *Decoder {
101 d := &Decoder{
111 // ErrStringLength is returned by Decoder.Write when the max string length
112 // (as configured by Decoder.SetMaxStringLength) would be violated.
119 func (d *Decoder) SetMaxStringLength(n int) {
126 func (d *Decoder) SetEmitFunc(emitFunc func(f HeaderField)) {
134 // while still decoding and keeping in-sync with decoder state, bu
    [all...]
  /external/v8/src/arm/
disasm-arm.cc 47 // Decoder decodes and disassembles instructions into an output buffer.
50 class Decoder {
52 Decoder(const disasm::NameConverter& converter,
60 ~Decoder() {}
125 DISALLOW_COPY_AND_ASSIGN(Decoder);
129 // Support for assertions in the Decoder formatting functions.
135 void Decoder::PrintChar(const char ch) {
141 void Decoder::Print(const char* str) {
160 void Decoder::PrintCondition(Instruction* instr) {
166 void Decoder::PrintRegister(int reg)
    [all...]
  /external/lzma/CPP/7zip/UI/Common/
LoadCodecs.h 72 CLSID Decoder;
  /libcore/ojluni/src/main/java/java/util/
Base64.java 48 * character. The decoder rejects data that contains characters
55 * The decoder rejects data that contains characters outside the
132 int[] base64 = Decoder.fromBase64;
145 * Returns a {@link Decoder} that decodes using the
148 * @return A Base64 decoder.
150 public static Decoder getDecoder() {
151 return Decoder.RFC4648;
155 * Returns a {@link Decoder} that decodes using the
159 * @return A Base64 decoder.
161 public static Decoder getUrlDecoder()
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/xml/
xml.go 40 // In tokens returned by Decoder.Token, the Space identifier
139 // Decoder.
155 // A Decoder represents an XML parser reading a particular input stream.
157 type Decoder struct {
229 func NewDecoder(r io.Reader) *Decoder {
230 d := &Decoder{
241 func NewTokenDecoder(t TokenReader) *Decoder {
242 // Is it already a Decoder?
243 if d, ok := t.(*Decoder); ok {
246 d := &Decoder{
    [all...]

Completed in 1990 milliseconds

12 3 4 5