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#L331: func (b *B) launch() {
		benchmark.go#L367: func (b *B) Elapsed() time.Duration {
		benchmark.go#L384: func (b *B) ReportMetric(n float64, unit string) {
		benchmark.go#L394: func (b *B) stopOrScaleBLoop() bool {
		benchmark.go#L414: func (b *B) loopSlowPath() bool {
		benchmark.go#L502: func (b *B) Loop() bool {
		benchmark.go#L717: 	main := &B{
		benchmark.go#L724: 		benchFunc: func(b *B) {
		benchmark.go#L740: func (s *benchState) processBench(b *B) {
		benchmark.go#L752: 				b = &B{
		benchmark.go#L808: func (b *B) Run(name string, f func(b *B)) bool {
		benchmark.go#L824: 	sub := &B{
		benchmark.go#L877: func (b *B) add(other BenchmarkResult) {
		benchmark.go#L897: func (b *B) trimOutput() {
		benchmark.go#L950: func (b *B) RunParallel(body func(*PB)) {
		benchmark.go#L994: func (b *B) SetParallelism(p int) {
		benchmark.go#L1008: func Benchmark(f func(b *B)) BenchmarkResult {
		benchmark.go#L1009: 	b := &B{
		testing.go#L922: 	_ TB = (*B)(nil)