Searched defs:TableInNestedNS (Results 1 - 6 of 6) sorted by relevance

/external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/
H A DTableInNestedNS.py7 class TableInNestedNS(object): class in inherits:object
13 x = TableInNestedNS()
17 # TableInNestedNS
21 # TableInNestedNS
H A DTableInNestedNS.java11 public final class TableInNestedNS extends Table { class in inherits:Table
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)); }
15 public TableInNestedNS __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
23 TableInNestedNS.addFoo(builder, foo);
24 return TableInNestedNS.endTableInNestedNS(builder);
H A DTableInNestedNS.php11 class TableInNestedNS extends Table class
15 * @return TableInNestedNS
19 $obj = new TableInNestedNS();
26 * @return TableInNestedNS
55 * @return TableInNestedNS
H A DTableInNestedNS.cs9 public struct TableInNestedNS : IFlatbufferObject struct in namespace:NamespaceA.NamespaceB
13 public static TableInNestedNS GetRootAsTableInNestedNS(ByteBuffer _bb) { return GetRootAsTableInNestedNS(_bb, new TableInNestedNS()); }
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; }
21 public static Offset<TableInNestedNS> CreateTableInNestedNS(FlatBufferBuilder builder,
24 TableInNestedNS.AddFoo(builder, foo);
25 return TableInNestedNS.EndTableInNestedNS(builder);
30 public static Offset<TableInNestedNS> EndTableInNestedN
[all...]
/external/flatbuffers/tests/namespace_test/
H A Dnamespace_test1_generated.js27 NamespaceA.NamespaceB.TableInNestedNS = function() {
42 * @returns {NamespaceA.NamespaceB.TableInNestedNS}
44 NamespaceA.NamespaceB.TableInNestedNS.prototype.__init = function(i, bb) {
52 * @param {NamespaceA.NamespaceB.TableInNestedNS=} obj
53 * @returns {NamespaceA.NamespaceB.TableInNestedNS}
55 NamespaceA.NamespaceB.TableInNestedNS.getRootAsTableInNestedNS = function(bb, obj) {
56 return (obj || new NamespaceA.NamespaceB.TableInNestedNS).__init(bb.readInt32(bb.position()) + bb.position(), bb);
62 NamespaceA.NamespaceB.TableInNestedNS.prototype.foo = function() {
71 NamespaceA.NamespaceB.TableInNestedNS.prototype.mutate_foo = function(value) {
85 NamespaceA.NamespaceB.TableInNestedNS
[all...]
/external/flatbuffers/tests/namespace_test/NamespaceA/
H A DTableInFirstNS.py26 from .TableInNestedNS import TableInNestedNS namespace
27 obj = TableInNestedNS()

Completed in 902 milliseconds