Home
last modified time | relevance | path

Searched refs:SecondTableInAT (Results 1 – 7 of 7) sorted by relevance

/external/flatbuffers/tests/namespace_test/
Dnamespace_test2_generated.h29 struct SecondTableInAT;
43 bool operator==(const SecondTableInAT &lhs, const SecondTableInAT &rhs);
44 bool operator!=(const SecondTableInAT &lhs, const SecondTableInAT &rhs);
170 flatbuffers::unique_ptr<NamespaceA::SecondTableInAT> refer_to_a2;
259 struct SecondTableInAT : public flatbuffers::NativeTable { struct
262 SecondTableInAT() { in SecondTableInAT() argument
266 inline bool operator==(const SecondTableInAT &lhs, const SecondTableInAT &rhs) {
271 inline bool operator!=(const SecondTableInAT &lhs, const SecondTableInAT &rhs) {
277 typedef SecondTableInAT NativeTableType;
297 SecondTableInAT *UnPack(const flatbuffers::resolver_function_t *_resolver = nullptr) const;
[all …]
/external/flatbuffers/tests/namespace_test/NamespaceA/
DSecondTableInA.cs37 public SecondTableInAT UnPack() { in UnPack()
38 var _o = new SecondTableInAT(); in UnPack()
42 public void UnPackTo(SecondTableInAT _o) { in UnPackTo()
45 …public static Offset<NamespaceA.SecondTableInA> Pack(FlatBufferBuilder builder, SecondTableInAT _o… in Pack()
54 public class SecondTableInAT class
59 public SecondTableInAT() { in SecondTableInAT() method in NamespaceA.SecondTableInAT
DSecondTableInA.go11 type SecondTableInAT struct { struct
15 func (t *SecondTableInAT) Pack(builder *flatbuffers.Builder) flatbuffers.UOffsetT { argument
23 func (rcv *SecondTableInA) UnPackTo(t *SecondTableInAT) { argument
27 func (rcv *SecondTableInA) UnPack() *SecondTableInAT {
29 t := &SecondTableInAT{}
DSecondTableInA.py42 class SecondTableInAT(object): class
56 x = SecondTableInAT()
/external/flatbuffers/tests/namespace_test/NamespaceC/
DTableInC.py79 self.referToA2 = SecondTableInAT.InitFromObj(tableInC.ReferToA2())
DTableInC.go13 ReferToA2 *NamespaceA.SecondTableInAT
DTableInC.cs66 public NamespaceA.SecondTableInAT ReferToA2 { get; set; }