Home
last modified time | relevance | path

Searched refs:FinishedBytes (Results 1 – 6 of 6) sorted by relevance

/third_party/flatbuffers/go/
Dgrpc.go13 return v.(*Builder).FinishedBytes(), nil
Dbuilder.go72 func (b *Builder) FinishedBytes() []byte { func
/third_party/flatbuffers/docs/source/
DGoApi_generated.txt31 // FinishedBytes() instead.
61 func (b *Builder) FinishedBytes() []byte
62 FinishedBytes returns a pointer to the written data in the byte buffer.
DTutorial.md2066 buf := builder.FinishedBytes() // Of type `byte[]`.
/third_party/flatbuffers/tests/
Dgo_test.go505 monster2 := example.GetRootAsMonster(builder.FinishedBytes(), 0).UnPack()
1280 vec3Bytes := b.FinishedBytes()
1297 statBytes := b.FinishedBytes()
1503 b.FinishedBytes()
1631 empty = make([]byte, len(builder.FinishedBytes()))
1632 copy(empty, builder.FinishedBytes())
1647 nonempty = make([]byte, len(builder.FinishedBytes()))
1648 copy(nonempty, builder.FinishedBytes())
/third_party/flatbuffers/samples/
Dsample_binary.go83 buf := builder.FinishedBytes()