Home
last modified time | relevance | path

Searched refs:StructInNestedNS (Results 1 – 16 of 16) sorted by relevance

/external/flatbuffers/tests/namespace_test/
Dnamespace_test1_generated.h14 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);
Dnamespace_test1_generated.js109 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) {
Dnamespace_test2_generated.h45 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) {
Dnamespace_test1.fbs13 struct StructInNestedNS
Dnamespace_test2.fbs9 foo_struct:NamespaceB.StructInNestedNS;
Dnamespace_test2_generated.js94 …return offset ? (obj || new NamespaceA.NamespaceB.StructInNestedNS).__init(this.bb_pos + offset, t…
/external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/
DStructInNestedNS.go9 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
DStructInNestedNS.cs9 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()
DStructInNestedNS.php11 class StructInNestedNS extends Struct class
16 * @return StructInNestedNS
DStructInNestedNS.java11 public final class StructInNestedNS extends Struct { class
13 public StructInNestedNS __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } in __assign()
DStructInNestedNS.py7 class StructInNestedNS(object): class
/external/flatbuffers/tests/namespace_test/NamespaceA/
DTableInFirstNS.java21 …public NamespaceA.NamespaceB.StructInNestedNS fooStruct() { return fooStruct(new NamespaceA.Namesp… in fooStruct()
22 …public NamespaceA.NamespaceB.StructInNestedNS fooStruct(NamespaceA.NamespaceB.StructInNestedNS obj… in fooStruct()
DTableInFirstNS.cs21StructInNestedNS? FooStruct { get { int o = __p.__offset(8); return o != 0 ? (NamespaceA.Namespace…
26 …ddFooStruct(FlatBufferBuilder builder, Offset<NamespaceA.NamespaceB.StructInNestedNS> fooStructOff… in AddFooStruct()
DTableInFirstNS.py44 from .StructInNestedNS import StructInNestedNS
45 obj = StructInNestedNS()
DTableInFirstNS.go54 func (rcv *TableInFirstNS) FooStruct(obj *StructInNestedNS) *StructInNestedNS {
59 obj = new(StructInNestedNS)
DTableInFirstNS.php53 $obj = new StructInNestedNS();