Home
last modified time | relevance | path

Searched defs:StructInNestedNS (Results 1 – 8 of 8) sorted by relevance

/external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/
DStructInNestedNS.cs11 public struct StructInNestedNS : IFlatbufferObject struct
13 private Struct __p;
14 public ByteBuffer ByteBuffer { get { return __p.bb; } }
15 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; } in __init()
16 public StructInNestedNS __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } in __assign()
18 public int A { get { return __p.bb.GetInt(__p.bb_pos + 0); } }
19 public void MutateA(int a) { __p.bb.PutInt(__p.bb_pos + 0, a); } in MutateA()
20 public int B { get { return __p.bb.GetInt(__p.bb_pos + 4); } }
21 public void MutateB(int b) { __p.bb.PutInt(__p.bb_pos + 4, b); } in MutateB()
23 …c static Offset<StructInNestedNS> CreateStructInNestedNS(FlatBufferBuilder builder, int A, int B) { in CreateStructInNestedNS()
DStructInNestedNS.go9 type StructInNestedNS struct { struct
10 _tab flatbuffers.Struct
13 func (rcv *StructInNestedNS) Init(buf []byte, i flatbuffers.UOffsetT) {
18 func (rcv *StructInNestedNS) Table() flatbuffers.Table {
22 func (rcv *StructInNestedNS) A() int32 {
25 func (rcv *StructInNestedNS) MutateA(n int32) bool {
29 func (rcv *StructInNestedNS) B() int32 {
32 func (rcv *StructInNestedNS) MutateB(n int32) bool {
DStructInNestedNS.py7 class StructInNestedNS(object): class
DStructInNestedNS.php11 class StructInNestedNS extends Struct class
DStructInNestedNS.java11 public final class StructInNestedNS extends Struct { class
/external/flatbuffers/tests/namespace_test/
Dnamespace_test1_generated.h54 StructInNestedNS() { in StructInNestedNS() function
57 StructInNestedNS(int32_t _a, int32_t _b) in StructInNestedNS() function
Dnamespace_test1_generated.ts100 export class StructInNestedNS { class
Dnamespace_test1_generated.js109 NamespaceA.NamespaceB.StructInNestedNS = function() { class in NamespaceA.NamespaceB