/external/flatbuffers/include/flatbuffers/ |
reflection_generated.h | 753 const Object *root_table() const { function in struct:reflection::FLATBUFFERS_FINAL_CLASS 769 verifier.VerifyTable(root_table()) && 789 void add_root_table(flatbuffers::Offset<Object> root_table) { 790 fbb_.AddOffset(Schema::VT_ROOT_TABLE, root_table); 812 flatbuffers::Offset<Object> root_table = 0) { 814 builder_.add_root_table(root_table); 828 flatbuffers::Offset<Object> root_table = 0) { 835 root_table);
|
/external/flatbuffers/tests/ |
test.cpp | 474 auto root_table = schema.root_table(); local 475 TEST_EQ_STR(root_table->name()->c_str(), "MyGame.Example.Monster"); 476 auto fields = root_table->fields(); 500 TEST_EQ(flatbuffers::Verify(schema, *schema.root_table(), flatbuf, length), 546 TEST_EQ(flatbuffers::Verify(schema, *schema.root_table(), flatbuf, length), 612 TEST_EQ(flatbuffers::Verify(schema, *schema.root_table(), resizingbuf.data(), 625 auto root_offset = flatbuffers::CopyTable(fbb, schema, *root_table, 633 TEST_EQ(flatbuffers::Verify(schema, *schema.root_table(), [all...] |