HomeSort by relevance Sort by last modified time
    Searched defs:SecondTableInA (Results 1 - 6 of 6) sorted by null

  /external/flatbuffers/tests/namespace_test/NamespaceA/
SecondTableInA.java 11 public final class SecondTableInA extends Table {
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)); }
15 public SecondTableInA __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
23 SecondTableInA.addReferToC(builder, refer_to_cOffset);
24 return SecondTableInA.endSecondTableInA(builder);
SecondTableInA.go 9 type SecondTableInA struct {
13 func GetRootAsSecondTableInA(buf []byte, offset flatbuffers.UOffsetT) *SecondTableInA {
15 x := &SecondTableInA{}
20 func (rcv *SecondTableInA) Init(buf []byte, i flatbuffers.UOffsetT) {
25 func (rcv *SecondTableInA) Table() flatbuffers.Table {
29 func (rcv *SecondTableInA) ReferToC(obj *TableInC) *TableInC {
SecondTableInA.py 7 class SecondTableInA(object):
13 x = SecondTableInA()
17 # SecondTableInA
21 # SecondTableInA
SecondTableInA.cs 9 public struct SecondTableInA : IFlatbufferObject
13 public static SecondTableInA GetRootAsSecondTableInA(ByteBuffer _bb) { return GetRootAsSecondTableInA(_bb, new SecondTableInA()); }
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; }
20 public static Offset<SecondTableInA> CreateSecondTableInA(FlatBufferBuilder builder,
23 SecondTableInA.AddReferToC(builder, refer_to_cOffset);
24 return SecondTableInA.EndSecondTableInA(builder);
29 public static Offset<SecondTableInA> EndSecondTableInA(FlatBufferBuilder builder)
    [all...]
SecondTableInA.php 11 class SecondTableInA extends Table
15 * @return SecondTableInA
19 $obj = new SecondTableInA();
26 * @return SecondTableInA
53 * @return SecondTableInA
  /external/flatbuffers/tests/namespace_test/
namespace_test2_generated.js 182 * @param {NamespaceA.SecondTableInA=} obj
183 * @returns {NamespaceA.SecondTableInA}
187 return offset ? (obj || new NamespaceA.SecondTableInA).__init(this.bb.__indirect(this.bb_pos + offset), this.bb) : null;
225 NamespaceA.SecondTableInA = function() {
240 * @returns {NamespaceA.SecondTableInA}
242 NamespaceA.SecondTableInA.prototype.__init = function(i, bb) {
250 * @param {NamespaceA.SecondTableInA=} obj
251 * @returns {NamespaceA.SecondTableInA}
253 NamespaceA.SecondTableInA.getRootAsSecondTableInA = function(bb, obj) {
254 return (obj || new NamespaceA.SecondTableInA).__init(bb.readInt32(bb.position()) + bb.position(), bb)
    [all...]

Completed in 87 milliseconds