Home
last modified time | relevance | path

Searched refs:fixed_count (Results 1 – 9 of 9) sorted by relevance

/external/nanopb-c/tests/fixed_count/
Dfixed_count.proto9 repeated int32 data = 1 [(nanopb).max_count = 3, (nanopb).fixed_count = true];
14 repeated Message1 data = 1 [(nanopb).max_count = 2, (nanopb).fixed_count = true];
19 repeated Message2 data1 = 1 [(nanopb).max_count = 2, (nanopb).fixed_count = true];
20 repeated Message2 data2 = 2 [(nanopb).max_count = 2, (nanopb).fixed_count = true];
DSConscript5 env.NanopbProto("fixed_count")
6 env.Object("fixed_count.pb.c")
9 "fixed_count.pb.c",
/external/nanopb-c/generator/
Dnanopb_generator.py279 self.fixed_count = False
310 self.fixed_count = field_options.fixed_count
340 if field_options.fixed_count and self.max_count is None:
426 not self.fixed_count):
503 if not self.fixed_count:
567 elif self.fixed_count:
574 if not self.fixed_count:
704 self.fixed_count = False
/external/nanopb-c/docs/
Dconcepts.rst153 5) If *(nanopb).fixed_count* is set to *true* and *(nanopb).max_count* is also set, the field for t…
169 repeated int32 data = 1 [(nanopb).max_count = 5, (nanopb).fixed_count true]; | int32_t data[5];
177 Note: When using the *fixed_count* option, the decoder assumes the repeated elements are
179 another *fixed_count* non-packed field.
Dreference.rst100 fixed_count Generate arrays with constant length
/external/nanopb-c/generator/proto/
Dnanopb.proto85 optional bool fixed_count = 16 [default = false]; field
/external/nanopb-c/generator/nanopb/
Doptions.proto93 optional bool fixed_count = 16 [default = false]; field
/external/pdfium/xfa/fgas/crt/
Dcfgas_formatstring.cpp1885 int fixed_count = 0; in FormatStrNum() local
1894 fixed_count++; in FormatStrNum()
1901 while (fixed_count > 1) { in FormatStrNum()
1903 fixed_count--; in FormatStrNum()
/external/nanopb-c/
DCHANGELOG.txt11 Add fixed_count option (#260)