/aosp_15_r20/external/flatbuffers/tests/MyGame/Example/ |
H A D | TestSimpleTableWithEnum.cs | 38 public TestSimpleTableWithEnumT UnPack() { in UnPack() 39 var _o = new TestSimpleTableWithEnumT(); in UnPack() 43 public void UnPackTo(TestSimpleTableWithEnumT _o) { in UnPackTo() 46 …ame.Example.TestSimpleTableWithEnum> Pack(FlatBufferBuilder builder, TestSimpleTableWithEnumT _o) { in Pack() 54 internal partial class TestSimpleTableWithEnumT class 59 public TestSimpleTableWithEnumT() { in TestSimpleTableWithEnumT() method in MyGame.Example.TestSimpleTableWithEnumT
|
H A D | TestSimpleTableWithEnum.go | 9 type TestSimpleTableWithEnumT struct { struct 13 func (t *TestSimpleTableWithEnumT) Pack(builder *flatbuffers.Builder) flatbuffers.UOffsetT { argument 20 func (rcv *TestSimpleTableWithEnum) UnPackTo(t *TestSimpleTableWithEnumT) { argument 24 func (rcv *TestSimpleTableWithEnum) UnPack() *TestSimpleTableWithEnumT { 26 t := &TestSimpleTableWithEnumT{}
|
H A D | TestSimpleTableWithEnum.java | 41 public TestSimpleTableWithEnumT unpack() { in unpack() 42 TestSimpleTableWithEnumT _o = new TestSimpleTableWithEnumT(); in unpack() 46 public void unpackTo(TestSimpleTableWithEnumT _o) { in unpackTo() 50 public static int pack(FlatBufferBuilder builder, TestSimpleTableWithEnumT _o) { in pack()
|
H A D | AnyUniqueAliases.cs | 29 …internal MyGame.Example.TestSimpleTableWithEnumT AsTS() { return this.As<MyGame.Example.TestSimple… in AsTS() 30 …internal static AnyUniqueAliasesUnion FromTS(MyGame.Example.TestSimpleTableWithEnumT _ts) { return… in FromTS() 80 …queAliases.TS: _o.Value = serializer.Deserialize<MyGame.Example.TestSimpleTableWithEnumT>(reader);… in ReadJson()
|
H A D | Any.cs | 29 …ternal MyGame.Example.TestSimpleTableWithEnumT AsTestSimpleTableWithEnum() { return this.As<MyGame… in AsTestSimpleTableWithEnum() 30 …internal static AnyUnion FromTestSimpleTableWithEnum(MyGame.Example.TestSimpleTableWithEnumT _test… in FromTestSimpleTableWithEnum() 80 …TableWithEnum: _o.Value = serializer.Deserialize<MyGame.Example.TestSimpleTableWithEnumT>(reader);… in ReadJson()
|
H A D | TestSimpleTableWithEnumT.java | 10 class TestSimpleTableWithEnumT { class 18 public TestSimpleTableWithEnumT() { in TestSimpleTableWithEnumT() method in TestSimpleTableWithEnumT
|
H A D | AnyUniqueAliasesUnion.java | 25 …MyGame.Example.TestSimpleTableWithEnumT asTS() { return (MyGame.Example.TestSimpleTableWithEnumT) … in asTS()
|
H A D | AnyUnion.java | 25 …MyGame.Example.TestSimpleTableWithEnumT asTestSimpleTableWithEnum() { return (MyGame.Example.TestS… in asTestSimpleTableWithEnum()
|
H A D | TestSimpleTableWithEnum.py | 48 class TestSimpleTableWithEnumT(object): class 62 x = TestSimpleTableWithEnumT()
|
/aosp_15_r20/external/flatbuffers/tests/monster_test/my_game/example/ |
H A D | test_simple_table_with_enum_generated.rs | 48 pub fn unpack(&self) -> TestSimpleTableWithEnumT { in unpack() argument 50 TestSimpleTableWithEnumT { in unpack() 118 pub struct TestSimpleTableWithEnumT { struct 121 impl Default for TestSimpleTableWithEnumT { argument 128 impl TestSimpleTableWithEnumT { implementation
|
H A D | any_unique_aliases_generated.rs | 115 TS(Box<TestSimpleTableWithEnumT>), 162 pub fn take_ts(&mut self) -> Option<Box<TestSimpleTableWithEnumT>> { in take_ts() argument 175 pub fn as_ts(&self) -> Option<&TestSimpleTableWithEnumT> { in as_ts() argument 179 pub fn as_ts_mut(&mut self) -> Option<&mut TestSimpleTableWithEnumT> { in as_ts_mut() argument
|
H A D | any_generated.rs | 115 TestSimpleTableWithEnum(Box<TestSimpleTableWithEnumT>), 162 pub fn take_test_simple_table_with_enum(&mut self) -> Option<Box<TestSimpleTableWithEnumT>> { in take_test_simple_table_with_enum() argument 175 pub fn as_test_simple_table_with_enum(&self) -> Option<&TestSimpleTableWithEnumT> { in as_test_simple_table_with_enum() argument 179 pub fn as_test_simple_table_with_enum_mut(&mut self) -> Option<&mut TestSimpleTableWithEnumT> { in as_test_simple_table_with_enum_mut() argument
|
/aosp_15_r20/external/flatbuffers/tests/monster_test_serialize/my_game/example/ |
H A D | test_simple_table_with_enum_generated.rs | 50 pub fn unpack(&self) -> TestSimpleTableWithEnumT { in unpack() argument 52 TestSimpleTableWithEnumT { in unpack() 131 pub struct TestSimpleTableWithEnumT { struct 134 impl Default for TestSimpleTableWithEnumT { argument 141 impl TestSimpleTableWithEnumT { impl
|
H A D | any_unique_aliases_generated.rs | 126 TS(Box<TestSimpleTableWithEnumT>), 173 pub fn take_ts(&mut self) -> Option<Box<TestSimpleTableWithEnumT>> { in take_ts() argument 186 pub fn as_ts(&self) -> Option<&TestSimpleTableWithEnumT> { in as_ts() argument 190 pub fn as_ts_mut(&mut self) -> Option<&mut TestSimpleTableWithEnumT> { in as_ts_mut() argument
|
H A D | any_generated.rs | 126 TestSimpleTableWithEnum(Box<TestSimpleTableWithEnumT>), 173 pub fn take_test_simple_table_with_enum(&mut self) -> Option<Box<TestSimpleTableWithEnumT>> { in take_test_simple_table_with_enum() argument 186 pub fn as_test_simple_table_with_enum(&self) -> Option<&TestSimpleTableWithEnumT> { in as_test_simple_table_with_enum() argument 190 pub fn as_test_simple_table_with_enum_mut(&mut self) -> Option<&mut TestSimpleTableWithEnumT> { in as_test_simple_table_with_enum_mut() argument
|
/aosp_15_r20/external/flatbuffers/tests/my-game/example/ |
H A D | test-simple-table-with-enum.ts | 73 unpack(): TestSimpleTableWithEnumT { 74 return new TestSimpleTableWithEnumT( 80 unpackTo(_o: TestSimpleTableWithEnumT): void { 85 export class TestSimpleTableWithEnumT { class
|
H A D | test-simple-table-with-enum.js | 58 return new TestSimpleTableWithEnumT(this.color()); 64 export class TestSimpleTableWithEnumT { class
|
/aosp_15_r20/external/flatbuffers/tests/monster_test_suffix/filesuffix_only/ |
H A D | monster_test_suffix.h | 38 struct TestSimpleTableWithEnumT; 78 bool operator==(const TestSimpleTableWithEnumT &lhs, const TestSimpleTableWithEnumT &rhs); 79 bool operator!=(const TestSimpleTableWithEnumT &lhs, const TestSimpleTableWithEnumT &rhs); 293 template<> struct AnyUnionTraits<MyGame::Example::TestSimpleTableWithEnumT> { 339 MyGame::Example::TestSimpleTableWithEnumT *AsTestSimpleTableWithEnum() { 341 reinterpret_cast<MyGame::Example::TestSimpleTableWithEnumT *>(value) : nullptr; 343 const MyGame::Example::TestSimpleTableWithEnumT *AsTestSimpleTableWithEnum() const { 345 reinterpret_cast<const MyGame::Example::TestSimpleTableWithEnumT *>(value) : nullptr; 369 return *(reinterpret_cast<const MyGame::Example::TestSimpleTableWithEnumT *>(lhs.value)) == 370 *(reinterpret_cast<const MyGame::Example::TestSimpleTableWithEnumT *>(rhs.value)); [all …]
|
/aosp_15_r20/external/flatbuffers/tests/monster_test_suffix/ext_only/ |
H A D | monster_test_generated.hpp | 38 struct TestSimpleTableWithEnumT; 78 bool operator==(const TestSimpleTableWithEnumT &lhs, const TestSimpleTableWithEnumT &rhs); 79 bool operator!=(const TestSimpleTableWithEnumT &lhs, const TestSimpleTableWithEnumT &rhs); 293 template<> struct AnyUnionTraits<MyGame::Example::TestSimpleTableWithEnumT> { 339 MyGame::Example::TestSimpleTableWithEnumT *AsTestSimpleTableWithEnum() { in AsTestSimpleTableWithEnum() 341 reinterpret_cast<MyGame::Example::TestSimpleTableWithEnumT *>(value) : nullptr; in AsTestSimpleTableWithEnum() 343 const MyGame::Example::TestSimpleTableWithEnumT *AsTestSimpleTableWithEnum() const { in AsTestSimpleTableWithEnum() 345 reinterpret_cast<const MyGame::Example::TestSimpleTableWithEnumT *>(value) : nullptr; in AsTestSimpleTableWithEnum() 369 return *(reinterpret_cast<const MyGame::Example::TestSimpleTableWithEnumT *>(lhs.value)) == in operator ==() 370 *(reinterpret_cast<const MyGame::Example::TestSimpleTableWithEnumT *>(rhs.value)); in operator ==() [all …]
|
/aosp_15_r20/external/flatbuffers/tests/ |
H A D | monster_test_generated.h | 38 struct TestSimpleTableWithEnumT; 78 bool operator==(const TestSimpleTableWithEnumT &lhs, const TestSimpleTableWithEnumT &rhs); 79 bool operator!=(const TestSimpleTableWithEnumT &lhs, const TestSimpleTableWithEnumT &rhs); 293 template<> struct AnyUnionTraits<MyGame::Example::TestSimpleTableWithEnumT> { 339 MyGame::Example::TestSimpleTableWithEnumT *AsTestSimpleTableWithEnum() { 341 reinterpret_cast<MyGame::Example::TestSimpleTableWithEnumT *>(value) : nullptr; 343 const MyGame::Example::TestSimpleTableWithEnumT *AsTestSimpleTableWithEnum() const { 345 reinterpret_cast<const MyGame::Example::TestSimpleTableWithEnumT *>(value) : nullptr; 369 return *(reinterpret_cast<const MyGame::Example::TestSimpleTableWithEnumT *>(lhs.value)) == 370 *(reinterpret_cast<const MyGame::Example::TestSimpleTableWithEnumT *>(rhs.value)); [all …]
|
H A D | monster_test_generated.ts | 16 export { TestSimpleTableWithEnum, TestSimpleTableWithEnumT } from './my-game/example/test-simple-ta…
|
H A D | monster_test.ts | 14 export { TestSimpleTableWithEnum, TestSimpleTableWithEnumT } from './my-game/example/test-simple-ta…
|
H A D | monster_test.js | 14 export { TestSimpleTableWithEnum, TestSimpleTableWithEnumT } from './my-game/example/test-simple-ta…
|
/aosp_15_r20/external/flatbuffers/tests/monster_test_suffix/ |
H A D | monster_test_suffix.hpp | 38 struct TestSimpleTableWithEnumT; 78 bool operator==(const TestSimpleTableWithEnumT &lhs, const TestSimpleTableWithEnumT &rhs); 79 bool operator!=(const TestSimpleTableWithEnumT &lhs, const TestSimpleTableWithEnumT &rhs); 293 template<> struct AnyUnionTraits<MyGame::Example::TestSimpleTableWithEnumT> { 339 MyGame::Example::TestSimpleTableWithEnumT *AsTestSimpleTableWithEnum() { in AsTestSimpleTableWithEnum() 341 reinterpret_cast<MyGame::Example::TestSimpleTableWithEnumT *>(value) : nullptr; in AsTestSimpleTableWithEnum() 343 const MyGame::Example::TestSimpleTableWithEnumT *AsTestSimpleTableWithEnum() const { in AsTestSimpleTableWithEnum() 345 reinterpret_cast<const MyGame::Example::TestSimpleTableWithEnumT *>(value) : nullptr; in AsTestSimpleTableWithEnum() 369 return *(reinterpret_cast<const MyGame::Example::TestSimpleTableWithEnumT *>(lhs.value)) == in operator ==() 370 *(reinterpret_cast<const MyGame::Example::TestSimpleTableWithEnumT *>(rhs.value)); in operator ==() [all …]
|
/aosp_15_r20/external/flatbuffers/tests/cpp17/generated_cpp17/ |
H A D | monster_test_generated.h | 38 struct TestSimpleTableWithEnumT; 262 template<> struct AnyUnionTraits<MyGame::Example::TestSimpleTableWithEnumT> { 308 MyGame::Example::TestSimpleTableWithEnumT *AsTestSimpleTableWithEnum() { 310 reinterpret_cast<MyGame::Example::TestSimpleTableWithEnumT *>(value) : nullptr; 312 const MyGame::Example::TestSimpleTableWithEnumT *AsTestSimpleTableWithEnum() const { 314 reinterpret_cast<const MyGame::Example::TestSimpleTableWithEnumT *>(value) : nullptr; 389 template<> struct AnyUniqueAliasesUnionTraits<MyGame::Example::TestSimpleTableWithEnumT> { 435 MyGame::Example::TestSimpleTableWithEnumT *AsTS() { 437 reinterpret_cast<MyGame::Example::TestSimpleTableWithEnumT *>(value) : nullptr; 439 const MyGame::Example::TestSimpleTableWithEnumT *AsTS() const { [all …]
|