type testing.B

32 uses

	testing (current package)
		benchmark.go#L78: 	F    func(b *B)
		benchmark.go#L94: type B struct {
		benchmark.go#L101: 	benchFunc        func(b *B)
		benchmark.go#L138: func (b *B) StartTimer() {
		benchmark.go#L151: func (b *B) StopTimer() {
		benchmark.go#L166: func (b *B) ResetTimer() {
		benchmark.go#L187: func (b *B) SetBytes(n int64) { b.bytes = n }
		benchmark.go#L192: func (b *B) ReportAllocs() {
		benchmark.go#L197: func (b *B) runN(n int) {
		benchmark.go#L231: func (b *B) run1() bool {
		benchmark.go#L275: func (b *B) run() {
		benchmark.go#L295: func (b *B) doBench() BenchmarkResult {
		benchmark.go#L328: func (b *B) launch() {
		benchmark.go#L364: func (b *B) Elapsed() time.Duration {
		benchmark.go#L381: func (b *B) ReportMetric(n float64, unit string) {
		benchmark.go#L391: func (b *B) stopOrScaleBLoop() bool {
		benchmark.go#L409: func (b *B) loopSlowPath() bool {
		benchmark.go#L497: func (b *B) Loop() bool {
		benchmark.go#L712: 	main := &B{
		benchmark.go#L719: 		benchFunc: func(b *B) {
		benchmark.go#L735: func (s *benchState) processBench(b *B) {
		benchmark.go#L747: 				b = &B{
		benchmark.go#L803: func (b *B) Run(name string, f func(b *B)) bool {
		benchmark.go#L819: 	sub := &B{
		benchmark.go#L872: func (b *B) add(other BenchmarkResult) {
		benchmark.go#L892: func (b *B) trimOutput() {
		benchmark.go#L945: func (b *B) RunParallel(body func(*PB)) {
		benchmark.go#L989: func (b *B) SetParallelism(p int) {
		benchmark.go#L1003: func Benchmark(f func(b *B)) BenchmarkResult {
		benchmark.go#L1004: 	b := &B{
		testing.go#L913: 	_ TB = (*B)(nil)