Home
last modified time | relevance | path

Searched refs:fixed_count (Results 1 – 15 of 15) 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/pigweed/pw_protobuf/pw_protobuf_test_protos/
Drepeated.options17 pw.protobuf.test.RepeatedTest.doubles max_count:2 fixed_count:true
18 pw.protobuf.test.RepeatedTest.uint64s max_count:4 fixed_count:true
/external/nanopb-c/tests/regression/issue_376/
Dfixed_array.options1 SubMessage.data fixed_count:true,max_count:8
/external/nanopb-c/generator/
Dnanopb_generator.py299 self.fixed_count = False
330 self.fixed_count = field_options.fixed_count
360 if field_options.fixed_count and self.max_count is None:
446 not self.fixed_count):
523 if not self.fixed_count:
587 elif self.fixed_count:
594 if not self.fixed_count:
736 self.fixed_count = False
/external/pigweed/pw_protobuf/pw_protobuf_codegen_protos/
Dcodegen_options.proto24 bool fixed_count = 2; field
/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.rst104 fixed_count Generate arrays with constant length
/external/nanopb-c/generator/proto/
Dnanopb.proto91 optional bool fixed_count = 16 [default = false]; field
/external/nanopb-c/generator/nanopb/
Doptions.proto93 optional bool fixed_count = 16 [default = false]; field
/external/exfatprogs/fsck/
Dfsck.c59 long fixed_count; member
1168 exfat_stat.fixed_count++; in read_children()
1459 exfat_stat.error_count, exfat_stat.fixed_count); in exfat_show_info()
/external/pdfium/xfa/fgas/crt/
Dcfgas_stringformatter.cpp1885 int fixed_count = 0; in FormatNum() local
1894 fixed_count++; in FormatNum()
1900 while (fixed_count > 1) { in FormatNum()
1902 fixed_count--; in FormatNum()
/external/nanopb-c/
DCHANGELOG.txt59 Add fixed_count option (#260)
/external/pigweed/pw_protobuf/
Ddocs.rst687 fuzzy_friends.Dog.paws max_count:4 fixed_count:true
709 * ``fixed_count``:
861 ``max_count`` and ``fixed_count:true`` are set.
872 Register.cash_in max_count:32 fixed_count:true
/external/pigweed/pw_protobuf/py/pw_protobuf/
Dcodegen_pwpb.py419 return options.fixed_count