Home
last modified time | relevance | path

Searched refs:just_bool (Results 1 – 11 of 11) sorted by relevance

/external/flatbuffers/tests/optional_scalars/optional_scalars/
Dscalar_stuff_generated.rs108 builder.add_just_bool(args.just_bool); in create()
149 let just_bool = self.just_bool(); in unpack() localVariable
186 just_bool, in unpack()
316 pub fn just_bool(&self) -> bool { in just_bool() method
419 pub just_bool: bool, field
460 just_bool: false, in default()
596 pub fn add_just_bool(&mut self, just_bool: bool) { in add_just_bool()
597 self.fbb_.push_slot::<bool>(ScalarStuff::VT_JUST_BOOL, just_bool, false); in add_just_bool()
667 ds.field("just_bool", &self.just_bool()); in fmt()
709 pub just_bool: bool, field
[all …]
/external/flatbuffers/tests/
Doptional_scalars_generated.h92 bool just_bool = false; member
324 bool just_bool() const { in just_bool() function
499 void add_just_bool(bool just_bool) { in add_just_bool()
500 fbb_.AddElement<uint8_t>(ScalarStuff::VT_JUST_BOOL, static_cast<uint8_t>(just_bool), 0); in add_just_bool()
560 bool just_bool = false,
596 builder_.add_just_bool(just_bool);
641 (lhs.just_bool == rhs.just_bool) &&
693 { auto _e = just_bool(); _o->just_bool = _e; } in UnPackTo()
739 auto _just_bool = _o->just_bool; in CreateScalarStuff()
Doptional_scalars.json17 just_bool: true,
Doptional_scalars_defaults.json32 just_bool: true,
Doptional_scalars_generated.lobster74 def just_bool() -> bool:
184 def add_just_bool(just_bool:bool):
185 b_.PrependBoolSlot(30, just_bool, 0)
Doptional_scalars.fbs47 just_bool: bool;
Dlobstertest.lobster146 assert root.just_bool() == true and root.default_bool() == true
164 assert root.just_bool() == false and root.default_bool() == true
/external/flatbuffers/tests/cpp17/generated_cpp17/
Doptional_scalars_generated.h89 bool just_bool = false; member
322 bool just_bool() const { in just_bool() function
390 else if constexpr (Index == 30) return just_bool(); in get_field()
537 void add_just_bool(bool just_bool) { in add_just_bool()
538 fbb_.AddElement<uint8_t>(ScalarStuff::VT_JUST_BOOL, static_cast<uint8_t>(just_bool), 0); in add_just_bool()
598 bool just_bool = false,
634 builder_.add_just_bool(just_bool);
733 { auto _e = just_bool(); _o->just_bool = _e; } in UnPackTo()
779 auto _just_bool = _o->just_bool; in CreateScalarStuff()
Doptional_scalars2_generated.h82 bool just_bool = false; member
315 bool just_bool() const { in just_bool() function
490 void add_just_bool(bool just_bool) { in add_just_bool()
491 fbb_.AddElement<uint8_t>(ScalarStuff::VT_JUST_BOOL, static_cast<uint8_t>(just_bool), 0); in add_just_bool()
551 bool just_bool = false,
587 builder_.add_just_bool(just_bool);
643 { auto _e = just_bool(); _o->just_bool = _e; } in UnPackTo()
689 auto _just_bool = _o->just_bool; in CreateScalarStuff()
/external/flatbuffers/tests/rust_usage_test/tests/
Doptional_scalars_test.rs82 just_bool,
139 just_bool: false, in object_api_defaults()
/external/flatbuffers/tests/optional_scalars/
DScalarStuff.cs91 bool just_bool = false, in CreateScalarStuff()
127 ScalarStuff.AddJustBool(builder, just_bool); in CreateScalarStuff()