Home
last modified time | relevance | path

Searched refs:TableInNestedNST (Results 1 – 8 of 8) sorted by relevance

/external/flatbuffers/tests/namespace_test/
Dnamespace_test1_generated.h14 struct TableInNestedNST;
18 bool operator==(const TableInNestedNST &lhs, const TableInNestedNST &rhs);
19 bool operator!=(const TableInNestedNST &lhs, const TableInNestedNST &rhs);
102 struct TableInNestedNST : public flatbuffers::NativeTable { struct
105 TableInNestedNST() in TableInNestedNST() function
110 inline bool operator==(const TableInNestedNST &lhs, const TableInNestedNST &rhs) {
115 inline bool operator!=(const TableInNestedNST &lhs, const TableInNestedNST &rhs) {
121 typedef TableInNestedNST NativeTableType;
140 TableInNestedNST *UnPack(const flatbuffers::resolver_function_t *_resolver = nullptr) const;
141 …void UnPackTo(TableInNestedNST *_o, const flatbuffers::resolver_function_t *_resolver = nullptr) c…
[all …]
Dnamespace_test2_generated.h62 flatbuffers::unique_ptr<NamespaceA::NamespaceB::TableInNestedNST> foo_table;
340 …_e) _o->foo_table = flatbuffers::unique_ptr<NamespaceA::NamespaceB::TableInNestedNST>(_e->UnPack(_… in UnPackTo()
/external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/
DTableInNestedNS.cs38 public TableInNestedNST UnPack() { in UnPack()
39 var _o = new TableInNestedNST(); in UnPack()
43 public void UnPackTo(TableInNestedNST _o) { in UnPackTo()
46 …ffset<NamespaceA.NamespaceB.TableInNestedNS> Pack(FlatBufferBuilder builder, TableInNestedNST _o) { in Pack()
54 public class TableInNestedNST class
59 public TableInNestedNST() { in TableInNestedNST() method in NamespaceA.NamespaceB.TableInNestedNST
DTableInNestedNS.go9 type TableInNestedNST struct { struct
13 func (t *TableInNestedNST) Pack(builder *flatbuffers.Builder) flatbuffers.UOffsetT { argument
20 func (rcv *TableInNestedNS) UnPackTo(t *TableInNestedNST) { argument
24 func (rcv *TableInNestedNS) UnPack() *TableInNestedNST {
26 t := &TableInNestedNST{}
DTableInNestedNS.py35 class TableInNestedNST(object): class
49 x = TableInNestedNST()
/external/flatbuffers/tests/namespace_test/NamespaceA/
DTableInFirstNS.py86 self.fooTable = TableInNestedNST.InitFromObj(tableInFirstNS.FooTable())
DTableInFirstNS.go12 FooTable *NamespaceA__NamespaceB.TableInNestedNST
DTableInFirstNS.cs59 public NamespaceA.NamespaceB.TableInNestedNST FooTable { get; set; }