Home
last modified time | relevance | path

Searched defs:StructInNestedNS (Results 1 – 10 of 10) sorted by relevance

/external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/
DStructInNestedNS.cs11 public struct StructInNestedNS : IFlatbufferObject struct
13 private Struct __p;
14 public ByteBuffer ByteBuffer { get { return __p.bb; } }
15 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; } in __init()
16 public StructInNestedNS __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } in __assign()
18 public int A { get { return __p.bb.GetInt(__p.bb_pos + 0); } }
19 public void MutateA(int a) { __p.bb.PutInt(__p.bb_pos + 0, a); } in MutateA()
20 public int B { get { return __p.bb.GetInt(__p.bb_pos + 4); } }
21 public void MutateB(int b) { __p.bb.PutInt(__p.bb_pos + 4, b); } in MutateB()
23 …c static Offset<StructInNestedNS> CreateStructInNestedNS(FlatBufferBuilder builder, int A, int B) { in CreateStructInNestedNS()
DStructInNestedNS.go9 type StructInNestedNS struct { struct
10 _tab flatbuffers.Struct
13 func (rcv *StructInNestedNS) Init(buf []byte, i flatbuffers.UOffsetT) {
18 func (rcv *StructInNestedNS) Table() flatbuffers.Table {
22 func (rcv *StructInNestedNS) A() int32 {
25 func (rcv *StructInNestedNS) MutateA(n int32) bool {
29 func (rcv *StructInNestedNS) B() int32 {
32 func (rcv *StructInNestedNS) MutateB(n int32) bool {
DStructInNestedNS.py7 class StructInNestedNS(object): class
DStructInNestedNS.php11 class StructInNestedNS extends Struct class
DStructInNestedNS.java11 public final class StructInNestedNS extends Struct { class
/external/flatbuffers/tests/namespace_test/
Dnamespace_test1_generated.rs98 pub struct StructInNestedNS { struct
99 a_: i32,
100 b_: i32,
102 impl flatbuffers::SafeSliceAccess for StructInNestedNS {} implementation
103 impl<'a> flatbuffers::Follow<'a> for StructInNestedNS { implementation
110 impl<'a> flatbuffers::Follow<'a> for &'a StructInNestedNS { implementation
117 impl<'b> flatbuffers::Push for StructInNestedNS { implementation
122 ::std::slice::from_raw_parts(self as *const StructInNestedNS as *const u8, Self::size()) in push() constant
127 impl<'b> flatbuffers::Push for &'b StructInNestedNS { implementation
133 … ::std::slice::from_raw_parts(*self as *const StructInNestedNS as *const u8, Self::size()) in push() constant
[all …]
Dnamespace_test1_generated.h59 StructInNestedNS() { in StructInNestedNS() function
62 StructInNestedNS(int32_t _a, int32_t _b) in StructInNestedNS() function
Dnamespace_test1_generated.ts99 export class StructInNestedNS { class
Dnamespace_test1_generated.js120 NamespaceA.NamespaceB.StructInNestedNS = function() { class in NamespaceA.NamespaceB
Dnamespace_test2_generated.rs71 pub fn foo_struct(&self) -> Option<&'a namespace_b::StructInNestedNS> { in foo_struct()
105 pub fn add_foo_struct(&mut self, foo_struct: &'b namespace_b::StructInNestedNS) { in add_foo_struct()