/external/flatbuffers/tests/namespace_test/ |
D | namespace_test1_generated.h | 14 struct StructInNestedNS; 39 MANUALLY_ALIGNED_STRUCT(4) StructInNestedNS FLATBUFFERS_FINAL_CLASS { 45 StructInNestedNS() { in StructInNestedNS() function 46 memset(this, 0, sizeof(StructInNestedNS)); in StructInNestedNS() 48 StructInNestedNS(const StructInNestedNS &_o) { in StructInNestedNS() function 49 memcpy(this, &_o, sizeof(StructInNestedNS)); in StructInNestedNS() 51 StructInNestedNS(int32_t _a, int32_t _b) in StructInNestedNS() function 68 STRUCT_END(StructInNestedNS, 8);
|
D | namespace_test1_generated.js | 109 NamespaceA.NamespaceB.StructInNestedNS = function() { class in NamespaceA.NamespaceB 126 NamespaceA.NamespaceB.StructInNestedNS.prototype.__init = function(i, bb) { 135 NamespaceA.NamespaceB.StructInNestedNS.prototype.a = function() { 143 NamespaceA.NamespaceB.StructInNestedNS.prototype.mutate_a = function(value) { 157 NamespaceA.NamespaceB.StructInNestedNS.prototype.b = function() { 165 NamespaceA.NamespaceB.StructInNestedNS.prototype.mutate_b = function(value) { 182 NamespaceA.NamespaceB.StructInNestedNS.createStructInNestedNS = function(builder, a, b) {
|
D | namespace_test2_generated.h | 45 const NamespaceA::NamespaceB::StructInNestedNS *foo_struct() const { in foo_struct() 46 return GetStruct<const NamespaceA::NamespaceB::StructInNestedNS *>(VT_FOO_STRUCT); in foo_struct() 48 NamespaceA::NamespaceB::StructInNestedNS *mutable_foo_struct() { in mutable_foo_struct() 49 return GetStruct<NamespaceA::NamespaceB::StructInNestedNS *>(VT_FOO_STRUCT); in mutable_foo_struct() 56 VerifyField<NamespaceA::NamespaceB::StructInNestedNS>(verifier, VT_FOO_STRUCT) && in Verify() 70 void add_foo_struct(const NamespaceA::NamespaceB::StructInNestedNS *foo_struct) { in add_foo_struct() 89 const NamespaceA::NamespaceB::StructInNestedNS *foo_struct = 0) {
|
D | namespace_test1.fbs | 13 struct StructInNestedNS
|
D | namespace_test2.fbs | 9 foo_struct:NamespaceB.StructInNestedNS;
|
D | namespace_test2_generated.js | 94 …return offset ? (obj || new NamespaceA.NamespaceB.StructInNestedNS).__init(this.bb_pos + offset, t…
|
/external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/ |
D | StructInNestedNS.go | 9 type StructInNestedNS struct { struct 13 func (rcv *StructInNestedNS) Init(buf []byte, i flatbuffers.UOffsetT) { argument 18 func (rcv *StructInNestedNS) Table() flatbuffers.Table { argument 22 func (rcv *StructInNestedNS) A() int32 { argument 25 func (rcv *StructInNestedNS) MutateA(n int32) bool { argument 29 func (rcv *StructInNestedNS) B() int32 { argument 32 func (rcv *StructInNestedNS) MutateB(n int32) bool { argument
|
D | StructInNestedNS.cs | 9 public struct StructInNestedNS : IFlatbufferObject struct 14 public StructInNestedNS __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } in __assign() argument 21 …public static Offset<StructInNestedNS> CreateStructInNestedNS(FlatBufferBuilder builder, int A, in… in CreateStructInNestedNS() argument 25 return new Offset<StructInNestedNS>(builder.Offset); in CreateStructInNestedNS()
|
D | StructInNestedNS.php | 11 class StructInNestedNS extends Struct class 16 * @return StructInNestedNS
|
D | StructInNestedNS.java | 11 public final class StructInNestedNS extends Struct { class 13 public StructInNestedNS __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } in __assign()
|
D | StructInNestedNS.py | 7 class StructInNestedNS(object): class
|
/external/flatbuffers/tests/namespace_test/NamespaceA/ |
D | TableInFirstNS.java | 21 …public NamespaceA.NamespaceB.StructInNestedNS fooStruct() { return fooStruct(new NamespaceA.Namesp… in fooStruct() 22 …public NamespaceA.NamespaceB.StructInNestedNS fooStruct(NamespaceA.NamespaceB.StructInNestedNS obj… in fooStruct()
|
D | TableInFirstNS.cs | 21 …StructInNestedNS? FooStruct { get { int o = __p.__offset(8); return o != 0 ? (NamespaceA.Namespace… 26 …ddFooStruct(FlatBufferBuilder builder, Offset<NamespaceA.NamespaceB.StructInNestedNS> fooStructOff… in AddFooStruct()
|
D | TableInFirstNS.py | 44 from .StructInNestedNS import StructInNestedNS 45 obj = StructInNestedNS()
|
D | TableInFirstNS.go | 54 func (rcv *TableInFirstNS) FooStruct(obj *StructInNestedNS) *StructInNestedNS { 59 obj = new(StructInNestedNS)
|
D | TableInFirstNS.php | 53 $obj = new StructInNestedNS();
|