Home
last modified time | relevance | path

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

/external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/
DTableInNestedNS.cs11 public struct TableInNestedNS : IFlatbufferObject struct
13 private Table __p;
14 public ByteBuffer ByteBuffer { get { return __p.bb; } }
15 …tAsTableInNestedNS(ByteBuffer _bb) { return GetRootAsTableInNestedNS(_bb, new TableInNestedNS()); } in GetRootAsTableInNestedNS()
16 … _bb, TableInNestedNS obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); } in GetRootAsTableInNestedNS()
17 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; } in __init()
18 public TableInNestedNS __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } in __assign()
20 …nt Foo { get { int o = __p.__offset(4); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
21 …ffset(4); if (o != 0) { __p.bb.PutInt(o + __p.bb_pos, foo); return true; } else { return false; } } in MutateFoo()
23 public static Offset<TableInNestedNS> CreateTableInNestedNS(FlatBufferBuilder builder, in CreateTableInNestedNS()
[all …]
DTableInNestedNS.go9 type TableInNestedNS struct { struct
10 _tab flatbuffers.Table
20 func (rcv *TableInNestedNS) Init(buf []byte, i flatbuffers.UOffsetT) {
25 func (rcv *TableInNestedNS) Table() flatbuffers.Table {
29 func (rcv *TableInNestedNS) Foo() int32 {
37 func (rcv *TableInNestedNS) MutateFoo(n int32) bool {
DTableInNestedNS.py7 class TableInNestedNS(object): class
DTableInNestedNS.php11 class TableInNestedNS extends Table class
DTableInNestedNS.java11 public final class TableInNestedNS extends Table { class
/external/flatbuffers/tests/namespace_test/
Dnamespace_test1_generated.rs159 pub struct TableInNestedNS<'a> { struct
160 pub _tab: flatbuffers::Table<'a>,
163 impl<'a> flatbuffers::Follow<'a> for TableInNestedNS<'a> { implementation
173 impl<'a> TableInNestedNS<'a> { impl
Dnamespace_test1_generated.ts17 export class TableInNestedNS { class
Dnamespace_test1_generated.js27 NamespaceA.NamespaceB.TableInNestedNS = function() { class in NamespaceA.NamespaceB