Home
last modified time | relevance | path

Searched defs:TestSimpleTableWithEnum (Results 1 – 12 of 12) sorted by relevance

/external/flatbuffers/tests/MyGame/Example/
DTestSimpleTableWithEnum.cs11 internal partial struct TestSimpleTableWithEnum : IFlatbufferObject struct
13 private Table __p;
14 public ByteBuffer ByteBuffer { get { return __p.bb; } }
15 …um(ByteBuffer _bb) { return GetRootAsTestSimpleTableWithEnum(_bb, new TestSimpleTableWithEnum()); } in GetRootAsTestSimpleTableWithEnum()
16 …stSimpleTableWithEnum obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); } in GetRootAsTestSimpleTableWithEnum()
17 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; } in __init()
18 public TestSimpleTableWithEnum __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } in __assign()
20 … int o = __p.__offset(4); return o != 0 ? (Color)__p.bb.GetSbyte(o + __p.bb_pos) : Color.Green; } }
21 …f (o != 0) { __p.bb.PutSbyte(o + __p.bb_pos, (sbyte)color); return true; } else { return false; } } in MutateColor()
23 …lic static Offset<TestSimpleTableWithEnum> CreateTestSimpleTableWithEnum(FlatBufferBuilder builder, in CreateTestSimpleTableWithEnum()
[all …]
DTestSimpleTableWithEnum.go9 type TestSimpleTableWithEnum struct { struct
10 _tab flatbuffers.Table
20 func (rcv *TestSimpleTableWithEnum) Init(buf []byte, i flatbuffers.UOffsetT) {
25 func (rcv *TestSimpleTableWithEnum) Table() flatbuffers.Table {
29 func (rcv *TestSimpleTableWithEnum) Color() Color {
37 func (rcv *TestSimpleTableWithEnum) MutateColor(n Color) bool {
DAny.py8 TestSimpleTableWithEnum = 2 variable in Any
DAny.cs12 TestSimpleTableWithEnum = 2, enumerator
DAny.php10 const TestSimpleTableWithEnum = 2; define in MyGame\\Example\\Any
DAny.java9 public static final byte TestSimpleTableWithEnum = 2; field in Any
DTestSimpleTableWithEnum.py7 class TestSimpleTableWithEnum(object): class
DTestSimpleTableWithEnum.php11 class TestSimpleTableWithEnum extends Table class
DTestSimpleTableWithEnum.java11 final class TestSimpleTableWithEnum extends Table { class
/external/flatbuffers/tests/
Dmonster_test_generated.ts20 TestSimpleTableWithEnum= 2, enumerator
229 export class TestSimpleTableWithEnum { class
Dmonster_test_generated.rs245 TestSimpleTableWithEnum = 2, enumerator
664 pub struct TestSimpleTableWithEnum<'a> { struct
665 pub _tab: flatbuffers::Table<'a>,
668 impl<'a> flatbuffers::Follow<'a> for TestSimpleTableWithEnum<'a> { implementation
678 impl<'a> TestSimpleTableWithEnum<'a> { impl
Dmonster_test_generated.js42 TestSimpleTableWithEnum: 2, 2: 'TestSimpleTableWithEnum', property
273 MyGame.Example.TestSimpleTableWithEnum = function() { class in MyGame.Example