Home
last modified time | relevance | path

Searched defs:StructOfStructs (Results 1 – 14 of 14) sorted by relevance

/external/flatbuffers/tests/MyGame/Example/
DStructOfStructs.cs12 public struct StructOfStructs : IFlatbufferObject struct
23 …public static Offset<MyGame.Example.StructOfStructs> CreateStructOfStructs(FlatBufferBuilder build… in CreateStructOfStructs()
47 …public static Offset<MyGame.Example.StructOfStructs> Pack(FlatBufferBuilder builder, StructOfStruc… in Pack()
DStructOfStructs.go36 type StructOfStructs struct { struct
37 _tab flatbuffers.Struct
40 func (rcv *StructOfStructs) Init(buf []byte, i flatbuffers.UOffsetT) {
45 func (rcv *StructOfStructs) Table() flatbuffers.Table {
49 func (rcv *StructOfStructs) A(obj *Ability) *Ability {
56 func (rcv *StructOfStructs) B(obj *Test) *Test {
63 func (rcv *StructOfStructs) C(obj *Ability) *Ability {
DStructOfStructs.kt22 class StructOfStructs : Struct() { class
DStructOfStructs.php11 class StructOfStructs extends Struct class
DStructOfStructs.java23 public final class StructOfStructs extends Struct { class
DStructOfStructs.py9 class StructOfStructs(object): class
/external/flatbuffers/tests/monster_test_serialize/my_game/example/
Dstruct_of_structs_generated.rs17 pub struct StructOfStructs(pub [u8; 20]); struct
18 impl Default for StructOfStructs { implementation
23 impl core::fmt::Debug for StructOfStructs { implementation
33 impl flatbuffers::SimpleToVerifyInSlice for StructOfStructs {} implementation
34 impl<'a> flatbuffers::Follow<'a> for StructOfStructs { implementation
41 impl<'a> flatbuffers::Follow<'a> for &'a StructOfStructs { implementation
48 impl<'b> flatbuffers::Push for StructOfStructs { implementation
52 …let src = ::core::slice::from_raw_parts(self as *const StructOfStructs as *const u8, <Self as flat… in push() constant
61 impl<'a> flatbuffers::Verifiable for StructOfStructs { implementation
71 impl Serialize for StructOfStructs { implementation
[all …]
Dstruct_of_structs_of_structs_generated.rs83 a: &StructOfStructs, in new()
94 pub fn a(&self) -> &StructOfStructs { in a()
98 unsafe { &*(self.0[0..].as_ptr() as *const StructOfStructs) } in a() constant
102 pub fn set_a(&mut self, x: &StructOfStructs) { in set_a()
/external/flatbuffers/tests/monster_test/my_game/example/
Dstruct_of_structs_generated.rs15 pub struct StructOfStructs(pub [u8; 20]); struct
16 impl Default for StructOfStructs { implementation
21 impl core::fmt::Debug for StructOfStructs { implementation
31 impl flatbuffers::SimpleToVerifyInSlice for StructOfStructs {} implementation
32 impl<'a> flatbuffers::Follow<'a> for StructOfStructs { implementation
39 impl<'a> flatbuffers::Follow<'a> for &'a StructOfStructs { implementation
46 impl<'b> flatbuffers::Push for StructOfStructs { implementation
50 …let src = ::core::slice::from_raw_parts(self as *const StructOfStructs as *const u8, <Self as flat… in push() constant
59 impl<'a> flatbuffers::Verifiable for StructOfStructs { implementation
69 impl<'a> StructOfStructs { implementation
[all …]
Dstruct_of_structs_of_structs_generated.rs70 a: &StructOfStructs, in new()
81 pub fn a(&self) -> &StructOfStructs { in a()
85 unsafe { &*(self.0[0..].as_ptr() as *const StructOfStructs) } in a() constant
89 pub fn set_a(&mut self, x: &StructOfStructs) { in set_a()
/external/flatbuffers/tests/ts/my-game/example/
Dstruct-of-structs.ts11 export class StructOfStructs implements flatbuffers.IUnpackableObject<StructOfStructsT> { class
Dstruct-of-structs.d.ts4 export declare class StructOfStructs implements flatbuffers.IUnpackableObject<StructOfStructsT> { class
Dstruct-of-structs.js4 export class StructOfStructs { class
/external/flatbuffers/tests/
Dmonster_test_generated.py508 class StructOfStructs(object): class