/external/flatbuffers/tests/namespace_test/ |
D | namespace_test1_generated.rs | 98 pub struct StructInNestedNS { struct 102 impl flatbuffers::SafeSliceAccess for StructInNestedNS {} implementation 103 impl<'a> flatbuffers::Follow<'a> for StructInNestedNS { implementation 104 type Inner = &'a StructInNestedNS; 107 <&'a StructInNestedNS>::follow(buf, loc) in follow() 110 impl<'a> flatbuffers::Follow<'a> for &'a StructInNestedNS { implementation 111 type Inner = &'a StructInNestedNS; 114 flatbuffers::follow_cast_ref::<StructInNestedNS>(buf, loc) in follow() 117 impl<'b> flatbuffers::Push for StructInNestedNS { implementation 118 type Output = StructInNestedNS; [all …]
|
D | namespace_test1_generated.js | 120 NamespaceA.NamespaceB.StructInNestedNS = function() { class in NamespaceA.NamespaceB 137 NamespaceA.NamespaceB.StructInNestedNS.prototype.__init = function(i, bb) { 146 NamespaceA.NamespaceB.StructInNestedNS.prototype.a = function() { 154 NamespaceA.NamespaceB.StructInNestedNS.prototype.mutate_a = function(value) { 168 NamespaceA.NamespaceB.StructInNestedNS.prototype.b = function() { 176 NamespaceA.NamespaceB.StructInNestedNS.prototype.mutate_b = function(value) { 193 NamespaceA.NamespaceB.StructInNestedNS.createStructInNestedNS = function(builder, a, b) {
|
D | namespace_test1_generated.h | 14 struct StructInNestedNS; 53 FLATBUFFERS_MANUALLY_ALIGNED_STRUCT(4) StructInNestedNS FLATBUFFERS_FINAL_CLASS { 59 StructInNestedNS() { in StructInNestedNS() function 60 memset(static_cast<void *>(this), 0, sizeof(StructInNestedNS)); in StructInNestedNS() 62 StructInNestedNS(int32_t _a, int32_t _b) in StructInNestedNS() function 79 FLATBUFFERS_STRUCT_END(StructInNestedNS, 8);
|
D | namespace_test1_namespace_a.namespace_b_generated.dart | 126 class StructInNestedNS { 127 StructInNestedNS._(this._bc, this._bcOffset); 129 static const fb.Reader<StructInNestedNS> reader = const _StructInNestedNSReader(); 139 return 'StructInNestedNS{a: $a, b: $b}'; 143 class _StructInNestedNSReader extends fb.StructReader<StructInNestedNS> { 150 StructInNestedNS createObject(fb.BufferContext bc, int offset) => 151 new StructInNestedNS._(bc, offset);
|
D | namespace_test2_generated.h | 62 const NamespaceA::NamespaceB::StructInNestedNS *foo_struct() const { in foo_struct() 63 return GetStruct<const NamespaceA::NamespaceB::StructInNestedNS *>(VT_FOO_STRUCT); in foo_struct() 65 NamespaceA::NamespaceB::StructInNestedNS *mutable_foo_struct() { in mutable_foo_struct() 66 return GetStruct<NamespaceA::NamespaceB::StructInNestedNS *>(VT_FOO_STRUCT); in mutable_foo_struct() 73 VerifyField<NamespaceA::NamespaceB::StructInNestedNS>(verifier, VT_FOO_STRUCT) && in Verify() 87 void add_foo_struct(const NamespaceA::NamespaceB::StructInNestedNS *foo_struct) { in add_foo_struct() 106 const NamespaceA::NamespaceB::StructInNestedNS *foo_struct = 0) {
|
D | namespace_test1_generated.lobster | 14 struct StructInNestedNS 29 struct StructInNestedNS : flatbuffers_handle
|
D | namespace_test2_generated.rs | 71 pub fn foo_struct(&self) -> Option<&'a namespace_b::StructInNestedNS> { in foo_struct() argument 72 self._tab.get::<namespace_b::StructInNestedNS>(TableInFirstNS::VT_FOO_STRUCT, None) in foo_struct() 79 pub foo_struct: Option<&'a namespace_b::StructInNestedNS>, 105 pub fn add_foo_struct(&mut self, foo_struct: &'b namespace_b::StructInNestedNS) { in add_foo_struct() argument 106 …self.fbb_.push_slot_always::<&namespace_b::StructInNestedNS>(TableInFirstNS::VT_FOO_STRUCT, foo_st… in add_foo_struct()
|
D | namespace_test1_generated.ts | 99 export class StructInNestedNS { class 108 __init(i:number, bb:flatbuffers.ByteBuffer):StructInNestedNS {
|
D | namespace_test2_generated.ts | 68 …21360535654258.NamespaceA.NamespaceB.StructInNestedNS):NS8755221360535654258.NamespaceA.NamespaceB… 70 …return offset ? (obj || new NS8755221360535654258.NamespaceA.NamespaceB.StructInNestedNS).__init(t…
|
D | namespace_test1.fbs | 13 struct StructInNestedNS
|
D | namespace_test2.fbs | 9 foo_struct:NamespaceB.StructInNestedNS;
|
D | namespace_test2_namespace_a_generated.dart | 26 …namespace_a_namespace_b.StructInNestedNS get fooStruct => namespace_a_namespace_b.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.lua | 7 local StructInNestedNS = {} -- the module 10 function StructInNestedNS.New() 24 function StructInNestedNS.CreateStructInNestedNS(builder, a, b) 31 return StructInNestedNS -- return the module
|
D | StructInNestedNS.cs | 11 public struct StructInNestedNS : IFlatbufferObject struct 16 public StructInNestedNS __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } in __assign() argument 23 …public static Offset<StructInNestedNS> CreateStructInNestedNS(FlatBufferBuilder builder, int A, in… in CreateStructInNestedNS() argument 27 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 | 23 …StructInNestedNS? FooStruct { get { int o = __p.__offset(8); return o != 0 ? (NamespaceA.Namespace… 28 …ddFooStruct(FlatBufferBuilder builder, Offset<NamespaceA.NamespaceB.StructInNestedNS> fooStructOff… in AddFooStruct()
|
D | TableInFirstNS.py | 44 from .StructInNestedNS import StructInNestedNS 45 obj = StructInNestedNS()
|
D | TableInFirstNS.go | 56 …FirstNS) FooStruct(obj *NamespaceA__NamespaceB.StructInNestedNS) *NamespaceA__NamespaceB.StructInN… 61 obj = new(NamespaceA__NamespaceB.StructInNestedNS)
|
D | TableInFirstNS.php | 53 $obj = new StructInNestedNS();
|