Home
last modified time | relevance | path

Searched refs:sortMons (Results 1 – 2 of 2) sorted by relevance

/external/flatbuffers/tests/FlatBuffers.Test/
DFlatBuffersExampleTests.cs53 var sortMons = Monster.CreateMySortedVectorOfTables(fbb, off); in CanCreateNewFlatBufferFromScratch()
95 Monster.AddTestarrayoftables(fbb, sortMons); in CanCreateNewFlatBufferFromScratch()
126 Assert.IsTrue(Monster.LookupByKey(sortMons, "Frodo", fbb.DataBuffer) != null); in CanCreateNewFlatBufferFromScratch()
127 Assert.IsTrue(Monster.LookupByKey(sortMons, "Barney", fbb.DataBuffer) != null); in CanCreateNewFlatBufferFromScratch()
128 Assert.IsTrue(Monster.LookupByKey(sortMons, "Wilma", fbb.DataBuffer)!= null); in CanCreateNewFlatBufferFromScratch()
/external/flatbuffers/tests/
DJavaTest.java65 int sortMons = fbb.createSortedVectorOfTables(new Monster(), off); in main() local
100 Monster.addTestarrayoftables(fbb, sortMons); in main()
145 TestEq(Monster.lookupByKey(sortMons, "Frodo", fbb.dataBuffer()).name(), "Frodo"); in main()
146 TestEq(Monster.lookupByKey(sortMons, "Barney", fbb.dataBuffer()).name(), "Barney"); in main()
147 TestEq(Monster.lookupByKey(sortMons, "Wilma", fbb.dataBuffer()).name(), "Wilma"); in main()