Home
last modified time | relevance | path

Searched refs:TableInFirstNST (Results 1 – 11 of 11) sorted by relevance

/third_party/flatbuffers/tests/namespace_test/
Dnamespace_test2_generated.h13 struct TableInFirstNST;
31 bool operator==(const TableInFirstNST &lhs, const TableInFirstNST &rhs);
32 bool operator!=(const TableInFirstNST &lhs, const TableInFirstNST &rhs);
60 struct TableInFirstNST : public flatbuffers::NativeTable { struct
71 inline bool operator==(const TableInFirstNST &lhs, const TableInFirstNST &rhs) { argument
79 inline bool operator!=(const TableInFirstNST &lhs, const TableInFirstNST &rhs) {
85 typedef TableInFirstNST NativeTableType;
142 TableInFirstNST *UnPack(const flatbuffers::resolver_function_t *_resolver = nullptr) const;
143 …void UnPackTo(TableInFirstNST *_o, const flatbuffers::resolver_function_t *_resolver = nullptr) co…
144 …set<TableInFirstNS> Pack(flatbuffers::FlatBufferBuilder &_fbb, const TableInFirstNST* _o, const fl…
[all …]
Dnamespace_test2_generated.rs566 pub fn unpack(&self) -> TableInFirstNST { in unpack() argument
583 TableInFirstNST { in unpack()
732 pub struct TableInFirstNST { struct
738 impl Default for TableInFirstNST { implementation
748 impl TableInFirstNST { impl
1033 pub refer_to_a1: Option<Box<super::namespace_a::TableInFirstNST>>,
/third_party/flatbuffers/tests/namespace_test/NamespaceA/
DTableInFirstNS.cs55 public TableInFirstNST UnPack() { in UnPack()
56 var _o = new TableInFirstNST(); in UnPack()
60 public void UnPackTo(TableInFirstNST _o) { in UnPackTo()
73 …public static Offset<NamespaceA.TableInFirstNS> Pack(FlatBufferBuilder builder, TableInFirstNST _o… in Pack()
88 public class TableInFirstNST class
110 public TableInFirstNST() { in TableInFirstNST() method in NamespaceA.TableInFirstNST
DTableInFirstNS.go11 type TableInFirstNST struct { struct
18 func (t *TableInFirstNST) Pack(builder *flatbuffers.Builder) flatbuffers.UOffsetT { argument
35 func (rcv *TableInFirstNS) UnPackTo(t *TableInFirstNST) { argument
45 func (rcv *TableInFirstNS) UnPack() *TableInFirstNST {
47 t := &TableInFirstNST{}
DTableInFirstNS.py104 class TableInFirstNST(object): class
122 x = TableInFirstNST()
/third_party/flatbuffers/tests/namespace_test/namespace-a/
Dtable-in-first-n-s.ts99 unpack(): TableInFirstNST {
100 return new TableInFirstNST(
114 unpackTo(_o: TableInFirstNST): void {
127 export class TableInFirstNST { class
Dtable-in-first-n-s.js78 …return new TableInFirstNST((this.fooTable() !== null ? this.fooTable().unpack() : null), this.fooE…
100 export class TableInFirstNST { class
/third_party/flatbuffers/tests/namespace_test/namespace-c/
Dtable-in-c.ts6 import { TableInFirstNS, TableInFirstNST } from '../namespace-a/table-in-first-n-s';
75 public referToA1: TableInFirstNST|null = null,
/third_party/flatbuffers/tests/namespace_test/NamespaceC/
DTableInC.cs64 public NamespaceA.TableInFirstNST ReferToA1 { get; set; }
DTableInC.py92 self.referToA1 = TableInFirstNST.InitFromObj(tableInC.ReferToA1())
DTableInC.go12 ReferToA1 *NamespaceA.TableInFirstNST