/aosp_15_r20/external/flatbuffers/tests/monster_test_serialize/my_game/example/ |
H A D | struct_of_structs_of_structs_generated.rs | 17 pub struct StructOfStructsOfStructs(pub [u8; 20]); struct 18 impl Default for StructOfStructsOfStructs { implementation 23 impl core::fmt::Debug for StructOfStructsOfStructs { implementation 31 impl flatbuffers::SimpleToVerifyInSlice for StructOfStructsOfStructs {} implementation 32 impl flatbuffers::SafeSliceAccess for StructOfStructsOfStructs {} implementation 33 impl<'a> flatbuffers::Follow<'a> for StructOfStructsOfStructs { implementation 34 type Inner = &'a StructOfStructsOfStructs; 37 <&'a StructOfStructsOfStructs>::follow(buf, loc) in follow() 40 impl<'a> flatbuffers::Follow<'a> for &'a StructOfStructsOfStructs { implementation 41 type Inner = &'a StructOfStructsOfStructs; [all …]
|
/aosp_15_r20/external/flatbuffers/tests/monster_test/my_game/example/ |
H A D | struct_of_structs_of_structs_generated.rs | 15 pub struct StructOfStructsOfStructs(pub [u8; 20]); struct 16 impl Default for StructOfStructsOfStructs { implementation 21 impl core::fmt::Debug for StructOfStructsOfStructs { implementation 29 impl flatbuffers::SimpleToVerifyInSlice for StructOfStructsOfStructs {} implementation 30 impl flatbuffers::SafeSliceAccess for StructOfStructsOfStructs {} implementation 31 impl<'a> flatbuffers::Follow<'a> for StructOfStructsOfStructs { implementation 32 type Inner = &'a StructOfStructsOfStructs; 35 <&'a StructOfStructsOfStructs>::follow(buf, loc) in follow() 38 impl<'a> flatbuffers::Follow<'a> for &'a StructOfStructsOfStructs { implementation 39 type Inner = &'a StructOfStructsOfStructs; [all …]
|
/aosp_15_r20/external/flatbuffers/tests/MyGame/Example/ |
H A D | StructOfStructsOfStructs.go | 17 func (rcv *StructOfStructsOfStructs) UnPackTo(t *StructOfStructsOfStructsT) { 21 func (rcv *StructOfStructsOfStructs) UnPack() *StructOfStructsOfStructsT { 28 type StructOfStructsOfStructs struct { struct 32 func (rcv *StructOfStructsOfStructs) Init(buf []byte, i flatbuffers.UOffsetT) { argument 37 func (rcv *StructOfStructsOfStructs) Table() flatbuffers.Table { argument 41 func (rcv *StructOfStructsOfStructs) A(obj *StructOfStructs) *StructOfStructs { argument
|
H A D | StructOfStructsOfStructs.java | 11 public final class StructOfStructsOfStructs extends Struct { class 13 public StructOfStructsOfStructs __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } in __assign() 37 public StructOfStructsOfStructs get(int j) { return get(new StructOfStructsOfStructs(), j); } in get() 38 …public StructOfStructsOfStructs get(StructOfStructsOfStructs obj, int j) { return obj.__assign(__… in get()
|
H A D | StructOfStructsOfStructs.cs | 12 public struct StructOfStructsOfStructs : IFlatbufferObject struct 17 public StructOfStructsOfStructs __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } in __assign() 21 …public static Offset<MyGame.Example.StructOfStructsOfStructs> CreateStructOfStructsOfStructs(FlatB… in CreateStructOfStructsOfStructs() argument 34 return new Offset<MyGame.Example.StructOfStructsOfStructs>(builder.Offset); in CreateStructOfStructsOfStructs() 44 …public static Offset<MyGame.Example.StructOfStructsOfStructs> Pack(FlatBufferBuilder builder, Stru… in Pack() argument 45 if (_o == null) return default(Offset<MyGame.Example.StructOfStructsOfStructs>); in Pack()
|
H A D | StructOfStructsOfStructs.lua | 15 local StructOfStructsOfStructs = {} 18 function StructOfStructsOfStructs.New() 33 function StructOfStructsOfStructs.CreateStructOfStructsOfStructs(builder, a_a_id, a_a_distance, a_b… 49 return StructOfStructsOfStructs
|
H A D | StructOfStructsOfStructs.php | 11 class StructOfStructsOfStructs extends Struct class 16 * @return StructOfStructsOfStructs
|
H A D | StructOfStructsOfStructs.kt | 10 class StructOfStructsOfStructs : Struct() { class 15 fun __assign(_i: Int, _bb: ByteBuffer) : StructOfStructsOfStructs { in __assign()
|
H A D | StructOfStructsOfStructs.py | 9 class StructOfStructsOfStructs(object): class 55 structOfStructsOfStructs = StructOfStructsOfStructs()
|
/aosp_15_r20/external/flatbuffers/tests/my-game/example/ |
H A D | struct-of-structs-of-structs.ts | 8 export class StructOfStructsOfStructs { class 11 __init(i:number, bb:flatbuffers.ByteBuffer):StructOfStructsOfStructs { 65 return StructOfStructsOfStructs.createStructOfStructsOfStructs(builder,
|
/aosp_15_r20/external/flatbuffers/tests/ |
H A D | monster_test_generated.ts | 14 export { StructOfStructsOfStructs, StructOfStructsOfStructsT } from './my-game/example/struct-of-st…
|
H A D | monster_test.ts | 12 export { StructOfStructsOfStructs, StructOfStructsOfStructsT } from './my-game/example/struct-of-st…
|
H A D | monster_test.js | 12 export { StructOfStructsOfStructs, StructOfStructsOfStructsT } from './my-game/example/struct-of-st…
|
H A D | monster_test_generated.h | 46 struct StructOfStructsOfStructs; 86 bool operator==(const StructOfStructsOfStructs &lhs, const StructOfStructsOfStructs &rhs); 87 bool operator!=(const StructOfStructsOfStructs &lhs, const StructOfStructsOfStructs &rhs); 907 FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(4) StructOfStructsOfStructs FLATBUFFERS_FINAL_CLASS { 915 StructOfStructsOfStructs() 918 StructOfStructsOfStructs(const MyGame::Example::StructOfStructs &_a) 928 FLATBUFFERS_STRUCT_END(StructOfStructsOfStructs, 20); 930 inline bool operator==(const StructOfStructsOfStructs &lhs, const StructOfStructsOfStructs &rhs) { 935 inline bool operator!=(const StructOfStructsOfStructs &lhs, const StructOfStructsOfStructs &rhs) {
|
H A D | monster_test_my_game.example_generated.dart | 858 class StructOfStructsOfStructs { 859 StructOfStructsOfStructs._(this._bc, this._bcOffset); 861 static const fb.Reader<StructOfStructsOfStructs> reader = _StructOfStructsOfStructsReader(); 870 return 'StructOfStructsOfStructs{a: ${a}}'; 900 class _StructOfStructsOfStructsReader extends fb.StructReader<StructOfStructsOfStructs> { 907 StructOfStructsOfStructs createObject(fb.BufferContext bc, int offset) => 908 StructOfStructsOfStructs._(bc, offset);
|
H A D | monster_test.fbs | 73 struct StructOfStructsOfStructs {
|
H A D | monster_test_generated.lobster | 64 class StructOfStructsOfStructs 198 class StructOfStructsOfStructs : flatbuffers_handle
|
H A D | monster_test_generated.py | 546 class StructOfStructsOfStructs(object): class 591 structOfStructsOfStructs = StructOfStructsOfStructs()
|
/aosp_15_r20/external/flatbuffers/tests/monster_test_suffix/filesuffix_only/ |
H A D | monster_test_suffix.h | 46 struct StructOfStructsOfStructs; 86 bool operator==(const StructOfStructsOfStructs &lhs, const StructOfStructsOfStructs &rhs); 87 bool operator!=(const StructOfStructsOfStructs &lhs, const StructOfStructsOfStructs &rhs); 907 FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(4) StructOfStructsOfStructs FLATBUFFERS_FINAL_CLASS { 915 StructOfStructsOfStructs() 918 StructOfStructsOfStructs(const MyGame::Example::StructOfStructs &_a) 928 FLATBUFFERS_STRUCT_END(StructOfStructsOfStructs, 20); 930 inline bool operator==(const StructOfStructsOfStructs &lhs, const StructOfStructsOfStructs &rhs) { 935 inline bool operator!=(const StructOfStructsOfStructs &lhs, const StructOfStructsOfStructs &rhs) {
|
/aosp_15_r20/external/flatbuffers/tests/monster_test_suffix/ext_only/ |
H A D | monster_test_generated.hpp | 46 struct StructOfStructsOfStructs; 86 bool operator==(const StructOfStructsOfStructs &lhs, const StructOfStructsOfStructs &rhs); 87 bool operator!=(const StructOfStructsOfStructs &lhs, const StructOfStructsOfStructs &rhs); 907 FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(4) StructOfStructsOfStructs FLATBUFFERS_FINAL_CLASS { 915 StructOfStructsOfStructs() 918 StructOfStructsOfStructs(const MyGame::Example::StructOfStructs &_a) 928 FLATBUFFERS_STRUCT_END(StructOfStructsOfStructs, 20); 930 inline bool operator==(const StructOfStructsOfStructs &lhs, const StructOfStructsOfStructs &rhs) { 935 inline bool operator!=(const StructOfStructsOfStructs &lhs, const StructOfStructsOfStructs &rhs) {
|
/aosp_15_r20/external/flatbuffers/tests/monster_test_suffix/ |
H A D | monster_test_suffix.hpp | 46 struct StructOfStructsOfStructs; 86 bool operator==(const StructOfStructsOfStructs &lhs, const StructOfStructsOfStructs &rhs); 87 bool operator!=(const StructOfStructsOfStructs &lhs, const StructOfStructsOfStructs &rhs); 907 FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(4) StructOfStructsOfStructs FLATBUFFERS_FINAL_CLASS { 915 StructOfStructsOfStructs() 918 StructOfStructsOfStructs(const MyGame::Example::StructOfStructs &_a) 928 FLATBUFFERS_STRUCT_END(StructOfStructsOfStructs, 20); 930 inline bool operator==(const StructOfStructsOfStructs &lhs, const StructOfStructsOfStructs &rhs) { 935 inline bool operator!=(const StructOfStructsOfStructs &lhs, const StructOfStructsOfStructs &rhs) {
|
/aosp_15_r20/external/flatbuffers/tests/cpp17/generated_cpp17/ |
H A D | monster_test_generated.h | 46 struct StructOfStructsOfStructs; 830 FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(4) StructOfStructsOfStructs FLATBUFFERS_FINAL_CLASS { 839 StructOfStructsOfStructs() 842 StructOfStructsOfStructs(const MyGame::Example::StructOfStructs &_a) 857 FLATBUFFERS_STRUCT_END(StructOfStructsOfStructs, 20); 859 struct StructOfStructsOfStructs::Traits { 860 using type = StructOfStructsOfStructs;
|