Lines Matching refs:rroot
788 // will keep rroot valid as resizingbuf resizes.
789 auto rroot = flatbuffers::piv(
792 SetString(schema, "totally new string", GetFieldS(**rroot, name_field),
794 // Here resizingbuf has changed, but rroot is still valid.
795 TEST_EQ_STR(GetFieldS(**rroot, name_field)->c_str(), "totally new string");
799 flatbuffers::GetFieldV<uint8_t>(**rroot, inventory_field), resizingbuf);
814 **rroot, testarrayofstring_field),
848 SetFieldT(*rroot, name_field, string_ptr);
849 TEST_EQ_STR(GetFieldS(**rroot, name_field)->c_str(), "hank");