Lines Matching refs:builder
14 FooTestSchemaBuilder builder(fb_builder); in GetTable()
15 builder.add_foo_int_private(123); in GetTable()
16 builder.add_foo_int_opaque(123); in GetTable()
17 builder.add_foo_int_anonymized(123); in GetTable()
18 builder.add_foo_int_any(123); in GetTable()
19 builder.add_foo_int_string(int_string); in GetTable()
21 builder.add_foo_float_private(123.456); in GetTable()
22 builder.add_foo_float_opaque(123.456); in GetTable()
23 builder.add_foo_float_anonymized(123.456); in GetTable()
24 builder.add_foo_float_any(123.456); in GetTable()
25 builder.add_foo_float_string(float_string); in GetTable()
27 auto foo_table = builder.Finish(); in GetTable()
29 …return [foo_table](DumpsysTestDataRootBuilder* builder) { builder->add_foo_module_data(foo_table);… in GetTable()