Home
last modified time | relevance | path

Searched refs:AnyT (Results 1 – 9 of 9) sorted by relevance

/external/flatbuffers/tests/MyGame/Example/
DAny.go43 type AnyT struct { struct
48 func (t *AnyT) Pack(builder *flatbuffers.Builder) flatbuffers.UOffsetT { argument
63 func (rcv Any) UnPack(table flatbuffers.Table) *AnyT {
67 return &AnyT{ Type: AnyMonster, Value: x.UnPack() }
70 return &AnyT{ Type: AnyTestSimpleTableWithEnum, Value: x.UnPack() }
73 return &AnyT{ Type: AnyMyGame_Example2_Monster, Value: x.UnPack() }
DMonster.go19 Test *AnyT `json:"test"`
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.conv/
Dp4.cpp3 struct AnyT { struct
8 void test_cvqual_ref(AnyT any) { in test_cvqual_ref()
/external/flatbuffers/tests/private_annotation_test/
Dany_generated.rs108 pub(crate) enum AnyT { enum
113 impl Default for AnyT { implementation
118 impl AnyT { implementation
/external/flatbuffers/tests/monster_test/my_game/example/
Dany_generated.rs112 pub enum AnyT { enum
118 impl Default for AnyT { implementation
123 impl AnyT { implementation
Dmonster_generated.rs168 Any::NONE => AnyT::NONE, in unpack()
169 Any::Monster => AnyT::Monster(Box::new( in unpack()
174 Any::TestSimpleTableWithEnum => AnyT::TestSimpleTableWithEnum(Box::new( in unpack()
179 Any::MyGame_Example2_Monster => AnyT::MyGameExample2Monster(Box::new( in unpack()
184 _ => AnyT::NONE, in unpack()
1270 pub test: AnyT,
1324 test: AnyT::NONE, in default()
/external/flatbuffers/tests/monster_test_serialize/my_game/example/
Dany_generated.rs123 pub enum AnyT { enum
129 impl Default for AnyT { implementation
134 impl AnyT { implementation
Dmonster_generated.rs170 Any::NONE => AnyT::NONE, in unpack()
171 Any::Monster => AnyT::Monster(Box::new( in unpack()
176 Any::TestSimpleTableWithEnum => AnyT::TestSimpleTableWithEnum(Box::new( in unpack()
181 Any::MyGame_Example2_Monster => AnyT::MyGameExample2Monster(Box::new( in unpack()
186 _ => AnyT::NONE, in unpack()
1489 pub test: AnyT,
1543 test: AnyT::NONE, in default()
/external/flatbuffers/tests/rust_usage_test/tests/
Dintegration_test.rs170 test: AnyT::NONE, in object_api_defaults()