HomeSort by relevance Sort by last modified time
    Searched refs:__assign (Results 1 - 24 of 24) sorted by null

  /external/flatbuffers/tests/MyGame/Example2/
Monster.java 13 public static Monster getRootAsMonster(ByteBuffer _bb, Monster obj) { _bb.order(ByteOrder.LITTLE_ENDIAN); return (obj.__assign(_bb.getInt(_bb.position()) + _bb.position(), _bb)); }
15 public Monster __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } method in class:Monster
Monster.cs 14 public static Monster GetRootAsMonster(ByteBuffer _bb, Monster obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
16 public Monster __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } method in struct:MyGame.Example2.Monster
  /external/flatbuffers/tests/namespace_test/NamespaceA/
TableInFirstNS.java 13 public static TableInFirstNS getRootAsTableInFirstNS(ByteBuffer _bb, TableInFirstNS obj) { _bb.order(ByteOrder.LITTLE_ENDIAN); return (obj.__assign(_bb.getInt(_bb.position()) + _bb.position(), _bb)); }
15 public TableInFirstNS __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } method in class:TableInFirstNS
18 public NamespaceA.NamespaceB.TableInNestedNS fooTable(NamespaceA.NamespaceB.TableInNestedNS obj) { int o = __offset(4); return o != 0 ? obj.__assign(__indirect(o + bb_pos), bb) : null; }
22 public NamespaceA.NamespaceB.StructInNestedNS fooStruct(NamespaceA.NamespaceB.StructInNestedNS obj) { int o = __offset(8); return o != 0 ? obj.__assign(o + bb_pos, bb) : null; }
SecondTableInA.java 13 public static SecondTableInA getRootAsSecondTableInA(ByteBuffer _bb, SecondTableInA obj) { _bb.order(ByteOrder.LITTLE_ENDIAN); return (obj.__assign(_bb.getInt(_bb.position()) + _bb.position(), _bb)); }
15 public SecondTableInA __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } method in class:SecondTableInA
18 public NamespaceC.TableInC referToC(NamespaceC.TableInC obj) { int o = __offset(4); return o != 0 ? obj.__assign(__indirect(o + bb_pos), bb) : null; }
TableInFirstNS.cs 14 public static TableInFirstNS GetRootAsTableInFirstNS(ByteBuffer _bb, TableInFirstNS obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
16 public TableInFirstNS __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } method in struct:NamespaceA.TableInFirstNS
18 public NamespaceA.NamespaceB.TableInNestedNS? FooTable { get { int o = __p.__offset(4); return o != 0 ? (NamespaceA.NamespaceB.TableInNestedNS?)(new NamespaceA.NamespaceB.TableInNestedNS()).__assign(__p.__indirect(o + __p.bb_pos), __p.bb) : null; } }
21 public NamespaceA.NamespaceB.StructInNestedNS? FooStruct { get { int o = __p.__offset(8); return o != 0 ? (NamespaceA.NamespaceB.StructInNestedNS?)(new NamespaceA.NamespaceB.StructInNestedNS()).__assign(o + __p.bb_pos, __p.bb) : null; } }
SecondTableInA.cs 14 public static SecondTableInA GetRootAsSecondTableInA(ByteBuffer _bb, SecondTableInA obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
16 public SecondTableInA __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } method in struct:NamespaceA.SecondTableInA
18 public NamespaceC.TableInC? ReferToC { get { int o = __p.__offset(4); return o != 0 ? (NamespaceC.TableInC?)(new NamespaceC.TableInC()).__assign(__p.__indirect(o + __p.bb_pos), __p.bb) : null; } }
  /external/flatbuffers/tests/namespace_test/NamespaceC/
TableInC.java 13 public static TableInC getRootAsTableInC(ByteBuffer _bb, TableInC obj) { _bb.order(ByteOrder.LITTLE_ENDIAN); return (obj.__assign(_bb.getInt(_bb.position()) + _bb.position(), _bb)); }
15 public TableInC __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } method in class:TableInC
18 public NamespaceA.TableInFirstNS referToA1(NamespaceA.TableInFirstNS obj) { int o = __offset(4); return o != 0 ? obj.__assign(__indirect(o + bb_pos), bb) : null; }
20 public NamespaceA.SecondTableInA referToA2(NamespaceA.SecondTableInA obj) { int o = __offset(6); return o != 0 ? obj.__assign(__indirect(o + bb_pos), bb) : null; }
TableInC.cs 14 public static TableInC GetRootAsTableInC(ByteBuffer _bb, TableInC obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
16 public TableInC __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } method in struct:NamespaceC.TableInC
18 public NamespaceA.TableInFirstNS? ReferToA1 { get { int o = __p.__offset(4); return o != 0 ? (NamespaceA.TableInFirstNS?)(new NamespaceA.TableInFirstNS()).__assign(__p.__indirect(o + __p.bb_pos), __p.bb) : null; } }
19 public NamespaceA.SecondTableInA? ReferToA2 { get { int o = __p.__offset(6); return o != 0 ? (NamespaceA.SecondTableInA?)(new NamespaceA.SecondTableInA()).__assign(__p.__indirect(o + __p.bb_pos), __p.bb) : null; } }
  /external/flatbuffers/tests/MyGame/Example/
TestSimpleTableWithEnum.java 13 public static TestSimpleTableWithEnum getRootAsTestSimpleTableWithEnum(ByteBuffer _bb, TestSimpleTableWithEnum obj) { _bb.order(ByteOrder.LITTLE_ENDIAN); return (obj.__assign(_bb.getInt(_bb.position()) + _bb.position(), _bb)); }
15 public TestSimpleTableWithEnum __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } method in class:TestSimpleTableWithEnum
Test.java 13 public Test __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } method in class:Test
Stat.java 13 public static Stat getRootAsStat(ByteBuffer _bb, Stat obj) { _bb.order(ByteOrder.LITTLE_ENDIAN); return (obj.__assign(_bb.getInt(_bb.position()) + _bb.position(), _bb)); }
15 public Stat __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } method in class:Stat
Vec3.java 13 public Vec3 __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } method in class:Vec3
26 public Test test3(Test obj) { return obj.__assign(bb_pos + 26, bb); }
TestSimpleTableWithEnum.cs 14 public static TestSimpleTableWithEnum GetRootAsTestSimpleTableWithEnum(ByteBuffer _bb, TestSimpleTableWithEnum obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
16 public TestSimpleTableWithEnum __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } method in struct:MyGame.Example.TestSimpleTableWithEnum
Vec3.cs 14 public Vec3 __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } method in struct:MyGame.Example.Vec3
26 public Test Test3 { get { return (new Test()).__assign(__p.bb_pos + 26, __p.bb); } }
Monster.java 16 public static Monster getRootAsMonster(ByteBuffer _bb, Monster obj) { _bb.order(ByteOrder.LITTLE_ENDIAN); return (obj.__assign(_bb.getInt(_bb.position()) + _bb.position(), _bb)); }
19 public Monster __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } method in class:Monster
22 public Vec3 pos(Vec3 obj) { int o = __offset(4); return o != 0 ? obj.__assign(o + bb_pos, bb) : null; }
39 public Test test4(Test obj, int j) { int o = __offset(22); return o != 0 ? obj.__assign(__vector(o) + j * 4, bb) : null; }
48 public Monster testarrayoftables(Monster obj, int j) { int o = __offset(26); return o != 0 ? obj.__assign(__indirect(__vector(o) + j * 4), bb) : null; }
51 public Monster enemy(Monster obj) { int o = __offset(28); return o != 0 ? obj.__assign(__indirect(o + bb_pos), bb) : null; }
56 public Monster testnestedflatbufferAsMonster(Monster obj) { int o = __offset(30); return o != 0 ? obj.__assign(__indirect(__vector(o)), bb) : null; }
59 public Stat testempty(Stat obj) { int o = __offset(32); return o != 0 ? obj.__assign(__indirect(o + bb_pos), bb) : null; }
160 return new Monster().__assign(tableOffset, bb);
Test.cs 14 public Test __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } method in struct:MyGame.Example.Test
Stat.cs 14 public static Stat GetRootAsStat(ByteBuffer _bb, Stat obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
16 public Stat __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } method in struct:MyGame.Example.Stat
Monster.cs 15 public static Monster GetRootAsMonster(ByteBuffer _bb, Monster obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
18 public Monster __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } method in struct:MyGame.Example.Monster
20 public Vec3? Pos { get { int o = __p.__offset(4); return o != 0 ? (Vec3?)(new Vec3()).__assign(o + __p.bb_pos, __p.bb) : null; } }
36 public Test? Test4(int j) { int o = __p.__offset(22); return o != 0 ? (Test?)(new Test()).__assign(__p.__vector(o) + j * 4, __p.bb) : null; }
42 public Monster? Testarrayoftables(int j) { int o = __p.__offset(26); return o != 0 ? (Monster?)(new Monster()).__assign(__p.__indirect(__p.__vector(o) + j * 4), __p.bb) : null; }
44 public Monster? Enemy { get { int o = __p.__offset(28); return o != 0 ? (Monster?)(new Monster()).__assign(__p.__indirect(o + __p.bb_pos), __p.bb) : null; } }
48 public Monster? GetTestnestedflatbufferAsMonster() { int o = __p.__offset(30); return o != 0 ? (Monster?)(new Monster()).__assign(__p.__indirect(__p.__vector(o)), __p.bb) : null; }
50 public Stat? Testempty { get { int o = __p.__offset(32); return o != 0 ? (Stat?)(new Stat()).__assign(__p.__indirect(o + __p.bb_pos), __p.bb) : null; } }
153 return new Monster().__assign(tableOffset, bb);
  /external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/
TableInNestedNS.java 13 public static TableInNestedNS getRootAsTableInNestedNS(ByteBuffer _bb, TableInNestedNS obj) { _bb.order(ByteOrder.LITTLE_ENDIAN); return (obj.__assign(_bb.getInt(_bb.position()) + _bb.position(), _bb)); }
15 public TableInNestedNS __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } method in class:TableInNestedNS
StructInNestedNS.java 13 public StructInNestedNS __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } method in class:StructInNestedNS
StructInNestedNS.cs 14 public StructInNestedNS __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } method in struct:NamespaceA.NamespaceB.StructInNestedNS
TableInNestedNS.cs 14 public static TableInNestedNS GetRootAsTableInNestedNS(ByteBuffer _bb, TableInNestedNS obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
16 public TableInNestedNS __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } method in struct:NamespaceA.NamespaceB.TableInNestedNS
  /external/noto-fonts/emoji-compat/src/java/android/support/text/emoji/flatbuffer/
MetadataList.java 37 return (obj.__assign(_bb.getInt(_bb.position()) + _bb.position(), _bb));
45 public MetadataList __assign(int _i, ByteBuffer _bb) { method in class:MetadataList
61 return o != 0 ? obj.__assign(__indirect(__vector(o) + j * 4), bb) : null;
MetadataItem.java 37 return (obj.__assign(_bb.getInt(_bb.position()) + _bb.position(), _bb));
45 public MetadataItem __assign(int _i, ByteBuffer _bb) { method in class:MetadataItem

Completed in 180 milliseconds