HomeSort by relevance Sort by last modified time
    Searched refs:_bb (Results 1 - 25 of 67) sorted by null

1 2 3

  /external/flatbuffers/tests/MyGame/Example2/
Monster.java 12 public static Monster getRootAsMonster(ByteBuffer _bb) { return getRootAsMonster(_bb, new Monster()); }
13 public static Monster getRootAsMonster(ByteBuffer _bb, Monster obj) { _bb.order(ByteOrder.LITTLE_ENDIAN); return (obj.__assign(_bb.getInt(_bb.position()) + _bb.position(), _bb)); }
14 public void __init(int _i, ByteBuffer _bb) { bb_pos = _i; bb = _bb; vtable_start = bb_pos - bb.getInt(bb_pos); vtable_size = bb.getShort(vtable_start);
    [all...]
Monster.cs 15 public static Monster GetRootAsMonster(ByteBuffer _bb) { return GetRootAsMonster(_bb, new Monster()); }
16 public static Monster GetRootAsMonster(ByteBuffer _bb, Monster obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
17 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; }
18 public Monster __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this;
    [all...]
  /external/flatbuffers/tests/MyGame/
InParentNamespace.java 12 public static InParentNamespace getRootAsInParentNamespace(ByteBuffer _bb) { return getRootAsInParentNamespace(_bb, new InParentNamespace()); }
13 public static InParentNamespace getRootAsInParentNamespace(ByteBuffer _bb, InParentNamespace obj) { _bb.order(ByteOrder.LITTLE_ENDIAN); return (obj.__assign(_bb.getInt(_bb.position()) + _bb.position(), _bb)); }
14 public void __init(int _i, ByteBuffer _bb) { bb_pos = _i; bb = _bb; vtable_start = bb_pos - bb.getInt(bb_pos); vtable_size = bb.getShort(vtable_start);
    [all...]
InParentNamespace.cs 15 public static InParentNamespace GetRootAsInParentNamespace(ByteBuffer _bb) { return GetRootAsInParentNamespace(_bb, new InParentNamespace()); }
16 public static InParentNamespace GetRootAsInParentNamespace(ByteBuffer _bb, InParentNamespace obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
17 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; }
18 public InParentNamespace __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this;
    [all...]
  /external/flatbuffers/net/FlatBuffers/
IFlatbufferObject.cs 24 void __init(int _i, ByteBuffer _bb);
FlatBufferBuilder.cs 34 private ByteBuffer _bb; field in class:FlatBuffers.FlatBufferBuilder
62 _bb = new ByteBuffer(initialSize);
71 _bb = buffer;
81 _space = _bb.Length;
82 _bb.Reset();
102 public int Offset { get { return _bb.Length - _space; } }
106 _bb.PutByte(_space -= size, 0, size);
113 _bb.GrowFront(_bb.Length << 1);
129 ((~((int)_bb.Length - _space + additionalBytes)) + 1)
    [all...]
  /external/flatbuffers/tests/MyGame/Example/
TestSimpleTableWithEnum.java 12 public static TestSimpleTableWithEnum getRootAsTestSimpleTableWithEnum(ByteBuffer _bb) { return getRootAsTestSimpleTableWithEnum(_bb, new TestSimpleTableWithEnum()); }
13 public static TestSimpleTableWithEnum getRootAsTestSimpleTableWithEnum(ByteBuffer _bb, TestSimpleTableWithEnum obj) { _bb.order(ByteOrder.LITTLE_ENDIAN); return (obj.__assign(_bb.getInt(_bb.position()) + _bb.position(), _bb)); }
14 public void __init(int _i, ByteBuffer _bb) { bb_pos = _i; bb = _bb; vtable_start = bb_pos - bb.getInt(bb_pos); vtable_size = bb.getShort(vtable_start);
    [all...]
Referrable.java 12 public static Referrable getRootAsReferrable(ByteBuffer _bb) { return getRootAsReferrable(_bb, new Referrable()); }
13 public static Referrable getRootAsReferrable(ByteBuffer _bb, Referrable obj) { _bb.order(ByteOrder.LITTLE_ENDIAN); return (obj.__assign(_bb.getInt(_bb.position()) + _bb.position(), _bb)); }
14 public void __init(int _i, ByteBuffer _bb) { bb_pos = _i; bb = _bb; vtable_start = bb_pos - bb.getInt(bb_pos); vtable_size = bb.getShort(vtable_start);
    [all...]
Stat.java 12 public static Stat getRootAsStat(ByteBuffer _bb) { return getRootAsStat(_bb, new Stat()); }
13 public static Stat getRootAsStat(ByteBuffer _bb, Stat obj) { _bb.order(ByteOrder.LITTLE_ENDIAN); return (obj.__assign(_bb.getInt(_bb.position()) + _bb.position(), _bb)); }
14 public void __init(int _i, ByteBuffer _bb) { bb_pos = _i; bb = _bb; vtable_start = bb_pos - bb.getInt(bb_pos); vtable_size = bb.getShort(vtable_start);
    [all...]
Ability.java 12 public void __init(int _i, ByteBuffer _bb) { bb_pos = _i; bb = _bb; }
13 public Ability __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
Test.java 12 public void __init(int _i, ByteBuffer _bb) { bb_pos = _i; bb = _bb; }
13 public Test __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
TestSimpleTableWithEnum.cs 15 public static TestSimpleTableWithEnum GetRootAsTestSimpleTableWithEnum(ByteBuffer _bb) { return GetRootAsTestSimpleTableWithEnum(_bb, new TestSimpleTableWithEnum()); }
16 public static TestSimpleTableWithEnum GetRootAsTestSimpleTableWithEnum(ByteBuffer _bb, TestSimpleTableWithEnum obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
17 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; }
18 public TestSimpleTableWithEnum __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this;
    [all...]
  /external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/
TableInNestedNS.java 12 public static TableInNestedNS getRootAsTableInNestedNS(ByteBuffer _bb) { return getRootAsTableInNestedNS(_bb, new TableInNestedNS()); }
13 public static TableInNestedNS getRootAsTableInNestedNS(ByteBuffer _bb, TableInNestedNS obj) { _bb.order(ByteOrder.LITTLE_ENDIAN); return (obj.__assign(_bb.getInt(_bb.position()) + _bb.position(), _bb)); }
14 public void __init(int _i, ByteBuffer _bb) { bb_pos = _i; bb = _bb; vtable_start = bb_pos - bb.getInt(bb_pos); vtable_size = bb.getShort(vtable_start);
    [all...]
StructInNestedNS.java 12 public void __init(int _i, ByteBuffer _bb) { bb_pos = _i; bb = _bb; }
13 public StructInNestedNS __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
TableInNestedNS.cs 15 public static TableInNestedNS GetRootAsTableInNestedNS(ByteBuffer _bb) { return GetRootAsTableInNestedNS(_bb, new TableInNestedNS()); }
16 public static TableInNestedNS GetRootAsTableInNestedNS(ByteBuffer _bb, TableInNestedNS obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
17 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; }
18 public TableInNestedNS __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this;
    [all...]
  /external/flatbuffers/tests/namespace_test/NamespaceA/
SecondTableInA.java 12 public static SecondTableInA getRootAsSecondTableInA(ByteBuffer _bb) { return getRootAsSecondTableInA(_bb, new SecondTableInA()); }
13 public static SecondTableInA getRootAsSecondTableInA(ByteBuffer _bb, SecondTableInA obj) { _bb.order(ByteOrder.LITTLE_ENDIAN); return (obj.__assign(_bb.getInt(_bb.position()) + _bb.position(), _bb)); }
14 public void __init(int _i, ByteBuffer _bb) { bb_pos = _i; bb = _bb; vtable_start = bb_pos - bb.getInt(bb_pos); vtable_size = bb.getShort(vtable_start);
    [all...]
TableInFirstNS.java 12 public static TableInFirstNS getRootAsTableInFirstNS(ByteBuffer _bb) { return getRootAsTableInFirstNS(_bb, new TableInFirstNS()); }
13 public static TableInFirstNS getRootAsTableInFirstNS(ByteBuffer _bb, TableInFirstNS obj) { _bb.order(ByteOrder.LITTLE_ENDIAN); return (obj.__assign(_bb.getInt(_bb.position()) + _bb.position(), _bb)); }
14 public void __init(int _i, ByteBuffer _bb) { bb_pos = _i; bb = _bb; vtable_start = bb_pos - bb.getInt(bb_pos); vtable_size = bb.getShort(vtable_start);
    [all...]
SecondTableInA.cs 15 public static SecondTableInA GetRootAsSecondTableInA(ByteBuffer _bb) { return GetRootAsSecondTableInA(_bb, new SecondTableInA()); }
16 public static SecondTableInA GetRootAsSecondTableInA(ByteBuffer _bb, SecondTableInA obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
17 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; }
18 public SecondTableInA __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this;
    [all...]
  /external/flatbuffers/tests/union_vector/
Attacker.java 10 public static Attacker getRootAsAttacker(ByteBuffer _bb) { return getRootAsAttacker(_bb, new Attacker()); }
11 public static Attacker getRootAsAttacker(ByteBuffer _bb, Attacker obj) { _bb.order(ByteOrder.LITTLE_ENDIAN); return (obj.__assign(_bb.getInt(_bb.position()) + _bb.position(), _bb)); }
12 public void __init(int _i, ByteBuffer _bb) { bb_pos = _i; bb = _bb; vtable_start = bb_pos - bb.getInt(bb_pos); vtable_size = bb.getShort(vtable_start);
    [all...]
BookReader.java 10 public void __init(int _i, ByteBuffer _bb) { bb_pos = _i; bb = _bb; }
11 public BookReader __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
Rapunzel.java 10 public void __init(int _i, ByteBuffer _bb) { bb_pos = _i; bb = _bb; }
11 public Rapunzel __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
Attacker.cs 12 public static Attacker GetRootAsAttacker(ByteBuffer _bb) { return GetRootAsAttacker(_bb, new Attacker()); }
13 public static Attacker GetRootAsAttacker(ByteBuffer _bb, Attacker obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
14 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; }
15 public Attacker __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this;
    [all...]
Movie.java 10 public static Movie getRootAsMovie(ByteBuffer _bb) { return getRootAsMovie(_bb, new Movie()); }
11 public static Movie getRootAsMovie(ByteBuffer _bb, Movie obj) { _bb.order(ByteOrder.LITTLE_ENDIAN); return (obj.__assign(_bb.getInt(_bb.position()) + _bb.position(), _bb)); }
12 public static boolean MovieBufferHasIdentifier(ByteBuffer _bb) { return __has_identifier(_bb, "MOVI");
    [all...]
  /external/flatbuffers/tests/namespace_test/NamespaceC/
TableInC.java 12 public static TableInC getRootAsTableInC(ByteBuffer _bb) { return getRootAsTableInC(_bb, new TableInC()); }
13 public static TableInC getRootAsTableInC(ByteBuffer _bb, TableInC obj) { _bb.order(ByteOrder.LITTLE_ENDIAN); return (obj.__assign(_bb.getInt(_bb.position()) + _bb.position(), _bb)); }
14 public void __init(int _i, ByteBuffer _bb) { bb_pos = _i; bb = _bb; vtable_start = bb_pos - bb.getInt(bb_pos); vtable_size = bb.getShort(vtable_start);
    [all...]
  /external/noto-fonts/emoji-compat/src/java/androidx/text/emoji/flatbuffer/
MetadataList.java 31 public static MetadataList getRootAsMetadataList(ByteBuffer _bb) {
32 return getRootAsMetadataList(_bb, new MetadataList());
35 public static MetadataList getRootAsMetadataList(ByteBuffer _bb, MetadataList obj) {
36 _bb.order(ByteOrder.LITTLE_ENDIAN);
37 return (obj.__assign(_bb.getInt(_bb.position()) + _bb.position(), _bb));
40 public void __init(int _i, ByteBuffer _bb) {
42 bb = _bb;
    [all...]

Completed in 266 milliseconds

1 2 3