Home
last modified time | relevance | path

Searched defs:Encoder (Results 1 – 25 of 89) sorted by relevance

1234

/external/golang-protobuf/internal/encoding/json/
Dencode.go33 type Encoder struct { struct
34 indent string
35 lastKind kind
36 indents []byte
37 out []byte
56 func (e *Encoder) Bytes() []byte {
61 func (e *Encoder) WriteNull() {
67 func (e *Encoder) WriteBool(b bool) {
78 func (e *Encoder) WriteString(s string) error {
140 func (e *Encoder) WriteFloat(n float64, bitSize int) {
[all …]
/external/golang-protobuf/internal/encoding/text/
Dencode.go31 type Encoder struct { struct
32 encoderState
34 indent string
35 delims [2]byte
36 outputASCII bool
78 func (e *Encoder) Bytes() []byte {
83 func (e *Encoder) StartMessage() {
89 func (e *Encoder) EndMessage() {
95 func (e *Encoder) WriteName(s string) {
102 func (e *Encoder) WriteBool(b bool) {
[all …]
/external/bazelbuild-rules_android/src/common/golang/
Dmarshal.go41 type Encoder struct { struct
42 *xml.Encoder anonMember
43 p printer
44 prefixURI map[string]string
45 state []state
46 uriPrefix *uriPrefixMap
50 func ChildEncoder(w io.Writer, parent *Encoder) *Encoder {
75 func (enc *Encoder) EncodeToken(t xml.Token) error {
94 func (enc *Encoder) writeStart(start *xml.StartElement) error {
130 func (enc *Encoder) writeEnd(name xml.Name) error {
[all …]
/external/webrtc/test/scenario/
Dscenario_config.h117 struct Encoder { struct
121 enum class ContentType {
124 } content_type = ContentType::kVideo;
125 enum Implementation { kFake, kSoftware, kHardware } implementation = kFake;
126 struct Fake {
128 } fake;
130 using Codec = VideoCodecType;
131 Codec codec = Codec::kVideoCodecGeneric;
132 absl::optional<DataRate> max_data_rate;
133 absl::optional<DataRate> min_data_rate;
[all …]
/external/rust/crates/h2/src/codec/
Dframed_write.rs31 struct Encoder<B> { struct
33 hpack: hpack::Encoder, argument
38 buf: Cursor<BytesMut>,
41 next: Option<Next<B>>,
44 last_data_frame: Option<frame::Data<B>>,
47 max_frame_size: FrameSize,
50 chain_threshold: usize,
53 min_buffer_capacity: usize,
179 impl<B> Encoder<B> implementation
307 impl<B> Encoder<B> { impl
/external/rust/crates/const-oid/src/
Dencoder.rs10 pub(crate) struct Encoder { struct
34 impl Encoder { argument
/external/pigweed/pw_protobuf/
Dvarint_size_test.cc22 TEST(Encoder, SizeTypeIsConfigured) { in TEST() argument
26 TEST(Encoder, NestedWriteSmallerThanVarintSize) { in TEST() argument
40 TEST(Encoder, NestedWriteLargerThanVarintSizeReturnsResourceExhausted) { in TEST() argument
57 TEST(Encoder, NestedMessageLargerThanVarintSizeReturnsResourceExhausted) { in TEST() argument
/external/v4l2_codec2/
DREADME.md290 ### Supported Codecs
299 ### Supported Parameters:
330 ### Supported Input Pixel Formats:
337 ### Additional Features:
/external/rust/crates/ciborium-ll/src/
Denc.rs9 pub struct Encoder<W: Write>(W); struct
11 impl<W: Write> From<W> for Encoder<W> { implementation
18 impl<W: Write> Write for Encoder<W> { implementation
30 impl<W: Write> Encoder<W> { impl
/external/rust/crates/tonic/src/codec/
Dmod.rs44 type Encoder: Encoder<Item = Self::Encode, Error = Status> + Send + 'static; typedef
49 fn encoder(&mut self) -> Self::Encoder; in encoder()
55 pub trait Encoder { interface
/external/rust/crates/tokio-util/src/codec/
Dencoder.rs8 pub trait Encoder<Item> { interface
/external/rust/crates/pdl-compiler/src/backends/rust/
Dserializer.rs78 struct Encoder { struct
89 impl Encoder { argument
/external/rust/crates/quiche/src/h3/qpack/
Dencoder.rs37 pub struct Encoder {} struct
39 impl Encoder { impl
/external/rust/crates/hyper/src/proto/h1/
Dencode.rs14 pub(crate) struct Encoder { struct
29 /// An Encoder for when Transfer-Encoding includes `chunked`. argument
51 impl Encoder { implementation
52 fn new(kind: Kind) -> Encoder { in new()
62 pub(crate) fn length(len: u64) -> Encoder { in length()
/external/rust/crates/h2/src/hpack/
Dencoder.rs8 pub struct Encoder { struct
19 impl Encoder { impl
20 pub fn new(max_size: usize, capacity: usize) -> Encoder { in new()
185 impl Default for Encoder { implementation
696 fn encode(e: &mut Encoder, hdrs: Vec<Header<Option<HeaderName>>>) -> BytesMut { in encode()
/external/libvpx/test/
Dencode_api_test.cc469 struct Encoder { in TEST() struct
470 ~Encoder() { EXPECT_EQ(vpx_codec_destroy(&ctx), VPX_CODEC_OK); } in TEST()
471 vpx_codec_ctx_t ctx = {}; in TEST()
747 struct Encoder { in TEST() struct
748 ~Encoder() { EXPECT_EQ(vpx_codec_destroy(&ctx), VPX_CODEC_OK); } in TEST()
749 vpx_codec_ctx_t ctx = {}; in TEST()
779 struct Encoder { in TEST() struct
780 ~Encoder() { EXPECT_EQ(vpx_codec_destroy(&ctx), VPX_CODEC_OK); } in TEST()
781 vpx_codec_ctx_t ctx = {}; in TEST()
867 struct Encoder { in TEST() struct
[all …]
/external/rust/crates/toml/tests/
Dencoder.rs4 pub struct Encoder; struct
6 impl toml_test_harness::Encoder for Encoder { implementation
/external/owasp/java-encoder/core/src/main/java/org/owasp/encoder/
DEncoder.java69 public abstract class Encoder { class
90 Encoder() {} in Encoder() method in Encoder
/external/crosvm/devices/src/virtio/video/encoder/backend/
Dmod.rs68 pub trait Encoder { trait
/external/brotli/java/org/brotli/wrapper/enc/
DEncoder.java18 public class Encoder { class
69 Encoder(WritableByteChannel destination, Parameters params, int inputBufferSize) in Encoder() method in Encoder
/external/owasp/java-encoder/core/src/site/markdown/
Dindex.md14 ### Usage
/external/bazelbuild-rules_android/src/tools/ak/bucketize/
Dbucketize.go220 func parseRes(ctx context.Context, parentEnc *xml2.Encoder, pi *res.PathInfo, dec *xml.Decoder, vrC…
329 func extractElement(parentEnc *xml2.Encoder, dec *xml.Decoder, se xml.Token) (*bytes.Buffer, error)…
343 func copyTag(enc *xml2.Encoder, dec *xml.Decoder) error {
/external/sl4a/Common/src/org/apache/commons/codec/
DEncoder.java28 public interface Encoder { interface
/external/apache-http/src/org/apache/commons/codec/
DEncoder.java33 public interface Encoder { interface
/external/rust/crates/toml_edit/tests/
Dencoder.rs2 pub struct Encoder; struct
4 impl toml_test_harness::Encoder for Encoder { implementation

1234