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

1 2 3 4 5

  /external/apache-http/src/org/apache/commons/codec/
Encoder.java 22 * Encoder provides this common generic interface whic allows a user to pass a
23 * generic Object to any Encoder implementation in the codec package.</p>
26 * @version $Id: Encoder.java,v 1.10 2004/02/29 04:08:31 tobrien Exp $
33 public interface Encoder {
44 * @throws EncoderException an encoder exception is
45 * thrown if the encoder experiences a failure
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
Encoder.java 10 public interface Encoder
  /external/glide/library/src/main/java/com/bumptech/glide/load/
Encoder.java 10 public interface Encoder<T> {
22 * Returns an ID identifying any transformation this encoder may apply to the given data that will be mixed in to
26 * If the encoder does not transform the data in a way that significantly affects the cached result (ie performs
  /external/sl4a/Common/src/org/apache/commons/codec/
Encoder.java 23 * Encoder provides this common generic interface whic allows a user to pass a
24 * generic Object to any Encoder implementation in the codec package.</p>
26 * @version $Id: Encoder.java 634915 2008-03-08 09:30:25Z bayard $
28 public interface Encoder {
39 * @throws EncoderException an encoder exception is
40 * thrown if the encoder experiences a failure
  /prebuilts/go/darwin-x86/src/encoding/gob/
encoder.go 14 // An Encoder manages the transmission of type and data information to the
16 type Encoder struct {
32 // NewEncoder returns a new encoder that will transmit on the io.Writer.
33 func NewEncoder(w io.Writer) *Encoder {
34 enc := new(Encoder)
41 // writer() returns the innermost writer the encoder is using
42 func (enc *Encoder) writer() io.Writer {
46 // pushWriter adds a writer to the encoder.
47 func (enc *Encoder) pushWriter(w io.Writer) {
52 func (enc *Encoder) popWriter()
    [all...]
  /prebuilts/go/linux-x86/src/encoding/gob/
encoder.go 14 // An Encoder manages the transmission of type and data information to the
16 type Encoder struct {
32 // NewEncoder returns a new encoder that will transmit on the io.Writer.
33 func NewEncoder(w io.Writer) *Encoder {
34 enc := new(Encoder)
41 // writer() returns the innermost writer the encoder is using
42 func (enc *Encoder) writer() io.Writer {
46 // pushWriter adds a writer to the encoder.
47 func (enc *Encoder) pushWriter(w io.Writer) {
52 func (enc *Encoder) popWriter()
    [all...]
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/http2/hpack/
encode.go 16 type Encoder struct {
22 // maxSizeLimit is the maximum table size this encoder
23 // supports. This will protect the encoder from too large
33 // NewEncoder returns a new Encoder which performs HPACK encoding. An
35 func NewEncoder(w io.Writer) *Encoder {
36 e := &Encoder{
49 func (e *Encoder) WriteField(f HeaderField) error {
90 func (e *Encoder) searchTable(f HeaderField) (i uint64, nameValueMatch bool) {
119 func (e *Encoder) SetMaxDynamicTableSize(v uint32) {
137 func (e *Encoder) SetMaxDynamicTableSizeLimit(v uint32)
    [all...]
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/http2/hpack/
encode.go 16 type Encoder struct {
22 // maxSizeLimit is the maximum table size this encoder
23 // supports. This will protect the encoder from too large
33 // NewEncoder returns a new Encoder which performs HPACK encoding. An
35 func NewEncoder(w io.Writer) *Encoder {
36 e := &Encoder{
49 func (e *Encoder) WriteField(f HeaderField) error {
90 func (e *Encoder) searchTable(f HeaderField) (i uint64, nameValueMatch bool) {
119 func (e *Encoder) SetMaxDynamicTableSize(v uint32) {
137 func (e *Encoder) SetMaxDynamicTableSizeLimit(v uint32)
    [all...]
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVDecorate.cpp 98 SPIRVEncoder Encoder = getEncoder(O);
99 Encoder << Target << Dec;
101 SPIRVDecorateLinkageAttr::encodeLiterals(Encoder, Literals);
103 Encoder << Literals;
  /prebuilts/go/darwin-x86/src/image/png/
writer.go 17 // Encoder configures encoding PNG images.
18 type Encoder struct {
22 type encoder struct { type
23 enc *Encoder
82 func (e *encoder) writeChunk(b []byte, name string) {
112 func (e *encoder) writeIHDR() {
146 func (e *encoder) writePLTEAndTRNS(p color.Palette) {
168 // An encoder is an io.Writer that satisfies writes by writing PNG IDAT chunks,
173 // No other code should treat an encoder as an io.Writer.
174 func (e *encoder) Write(b []byte) (int, error)
    [all...]
  /prebuilts/go/linux-x86/src/image/png/
writer.go 17 // Encoder configures encoding PNG images.
18 type Encoder struct {
22 type encoder struct { type
23 enc *Encoder
82 func (e *encoder) writeChunk(b []byte, name string) {
112 func (e *encoder) writeIHDR() {
146 func (e *encoder) writePLTEAndTRNS(p color.Palette) {
168 // An encoder is an io.Writer that satisfies writes by writing PNG IDAT chunks,
173 // No other code should treat an encoder as an io.Writer.
174 func (e *encoder) Write(b []byte) (int, error)
    [all...]
  /external/libvpx/libvpx/test/
encode_test_driver.h 51 explicit CxDataIterator(vpx_codec_ctx_t *encoder)
52 : encoder_(encoder), iter_(NULL) {}
87 class Encoder {
89 Encoder(vpx_codec_enc_cfg_t cfg, unsigned long deadline,
95 virtual ~Encoder() { vpx_codec_destroy(&encoder_); }
162 // Flush the encoder on EOS
172 // Common test functionality for all Encoder tests.
175 // encoder tests. It provides hooks which can be overridden by subclasses
196 // Set encoder flag.
213 Encoder * /*encoder*/) {
    [all...]
  /external/lzma/CS/7zip/Compress/RangeCoder/
RangeCoder.cs 5 class Encoder
  /external/lzma/Java/SevenZip/Compression/RangeCoder/
Encoder.java 4 public class Encoder
77 if ((Range & Encoder.kTopMask) == 0)
  /external/sl4a/ScriptingLayerForAndroid/src/org/apache/harmony/niochar/charset/additional/
IBM437.java 47 return new Encoder(this);
149 private static final class Encoder extends CharsetEncoder{
150 private Encoder(Charset cs){
  /prebuilts/go/darwin-x86/src/encoding/json/
stream.go 167 // An Encoder writes JSON values to an output stream.
168 type Encoder struct {
178 // NewEncoder returns a new encoder that writes to w.
179 func NewEncoder(w io.Writer) *Encoder {
180 return &Encoder{w: w, escapeHTML: true}
188 func (enc *Encoder) Encode(v interface{}) error {
225 // SetIndent instructs the encoder to format each subsequent encoded
228 func (enc *Encoder) SetIndent(prefix, indent string) {
240 func (enc *Encoder) SetEscapeHTML(on bool) {
512 // Callers that create an Encoder and then invoke EncodeToken directly
    [all...]
  /prebuilts/go/linux-x86/src/encoding/json/
stream.go 167 // An Encoder writes JSON values to an output stream.
168 type Encoder struct {
178 // NewEncoder returns a new encoder that writes to w.
179 func NewEncoder(w io.Writer) *Encoder {
180 return &Encoder{w: w, escapeHTML: true}
188 func (enc *Encoder) Encode(v interface{}) error {
225 // SetIndent instructs the encoder to format each subsequent encoded
228 func (enc *Encoder) SetIndent(prefix, indent string) {
240 func (enc *Encoder) SetEscapeHTML(on bool) {
512 // Callers that create an Encoder and then invoke EncodeToken directly
    [all...]
  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
CharsetCallback.java 146 * Encoder Callback interface
149 public interface Encoder {
157 public CoderResult call(CharsetEncoderICU encoder, Object context,
165 public static final Encoder FROM_U_CALLBACK_SKIP = new Encoder() {
167 public CoderResult call(CharsetEncoderICU encoder, Object context,
207 public static final Encoder FROM_U_CALLBACK_SUBSTITUTE = new Encoder(){
209 public CoderResult call(CharsetEncoderICU encoder, Object context,
215 return encoder.cbFromUWriteSub(encoder, source, target, offsets)
    [all...]
  /frameworks/base/core/java/android/util/
Base64.java 29 * Default values for encoder/decoder flags.
34 * Encoder flag bit to omit the padding '=' characters at the end
40 * Encoder flag bit to omit all line terminators (i.e., the output
46 * Encoder flag bit to indicate lines should be terminated with a
53 * Encoder/decoder flag bit to indicate using the "URL and
510 Encoder encoder = new Encoder(flags, null); local
516 if (encoder.do_padding) {
529 if (encoder.do_newline && len > 0)
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/xml/
marshal.go 97 MarshalXML(e *Encoder, start StartElement) error
128 // An Encoder writes XML data to an output stream.
129 type Encoder struct {
133 // NewEncoder returns a new encoder that writes to w.
134 func NewEncoder(w io.Writer) *Encoder {
135 e := &Encoder{printer{Writer: bufio.NewWriter(w)}}
136 e.p.encoder = e
140 // Indent sets the encoder to generate XML in which each element
143 func (enc *Encoder) Indent(prefix, indent string) {
154 func (enc *Encoder) Encode(v interface{}) error
    [all...]
  /prebuilts/go/linux-x86/src/encoding/xml/
marshal.go 97 MarshalXML(e *Encoder, start StartElement) error
128 // An Encoder writes XML data to an output stream.
129 type Encoder struct {
133 // NewEncoder returns a new encoder that writes to w.
134 func NewEncoder(w io.Writer) *Encoder {
135 e := &Encoder{printer{Writer: bufio.NewWriter(w)}}
136 e.p.encoder = e
140 // Indent sets the encoder to generate XML in which each element
143 func (enc *Encoder) Indent(prefix, indent string) {
154 func (enc *Encoder) Encode(v interface{}) error
    [all...]
  /external/libmojo/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
Encoder.java 23 public class Encoder {
26 * Container class for all state that must be shared between the main encoder and any used sub
27 * encoder.
105 * The encoder state shared by the main encoder and all its sub-encoder.
125 public Encoder(Core core, int sizeHint) {
132 private Encoder(EncoderState bufferInformation) {
138 * Returns a new encoder that will append to the current buffer.
140 public Encoder getEncoderAtDataOffset(DataHeader dataHeader)
    [all...]
  /external/lzma/CPP/7zip/UI/Common/
LoadCodecs.h 19 CLSID Encoder;
  /libcore/ojluni/src/main/java/java/util/
Base64.java 47 * The encoder does not add any line feed (line separator)
54 * encoder does not add any line feed (line separator) character.
82 * Returns a {@link Encoder} that encodes using the
85 * @return A Base64 encoder.
87 public static Encoder getEncoder() {
88 return Encoder.RFC4648;
92 * Returns a {@link Encoder} that encodes using the
96 * @return A Base64 encoder.
98 public static Encoder getUrlEncoder() {
99 return Encoder.RFC4648_URLSAFE
    [all...]
  /external/lzma/CS/7zip/Compress/LZMA/
LzmaEncoder.cs 9 public class Encoder : ICoder, ISetCoderProperties, IWriteCoderProperties
21 static Encoder()
78 public void Encode(RangeCoder.Encoder rangeEncoder, byte symbol)
89 public void EncodeMatched(RangeCoder.Encoder rangeEncoder, byte matchByte, byte symbol)
196 public void Encode(RangeCoder.Encoder rangeEncoder, UInt32 symbol, UInt32 posState)
271 public new void Encode(RangeCoder.Encoder rangeEncoder, UInt32 symbol, UInt32 posState)
305 RangeCoder.Encoder _rangeEncoder = new RangeCoder.Encoder();
382 public Encoder()
    [all...]

Completed in 850 milliseconds

1 2 3 4 5