Searched refs:just_bool (Results 1 – 11 of 11) sorted by relevance
/external/flatbuffers/tests/optional_scalars/optional_scalars/ |
D | scalar_stuff_generated.rs | 108 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/ |
D | optional_scalars_generated.h | 92 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()
|
D | optional_scalars.json | 17 just_bool: true,
|
D | optional_scalars_defaults.json | 32 just_bool: true,
|
D | optional_scalars_generated.lobster | 74 def just_bool() -> bool: 184 def add_just_bool(just_bool:bool): 185 b_.PrependBoolSlot(30, just_bool, 0)
|
D | optional_scalars.fbs | 47 just_bool: bool;
|
D | lobstertest.lobster | 146 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/ |
D | optional_scalars_generated.h | 89 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()
|
D | optional_scalars2_generated.h | 82 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/ |
D | optional_scalars_test.rs | 82 just_bool, 139 just_bool: false, in object_api_defaults()
|
/external/flatbuffers/tests/optional_scalars/ |
D | ScalarStuff.cs | 91 bool just_bool = false, in CreateScalarStuff() 127 ScalarStuff.AddJustBool(builder, just_bool); in CreateScalarStuff()
|