Home | History | Annotate | Download | only in doc

Lines Matching refs:funcs

144 		docPkg.Funcs = append(docPkg.Funcs, typ.Funcs...)
387 pkg.funcSummary(pkg.doc.Funcs, false)
451 func (pkg *Package) funcSummary(funcs []*doc.Func, showConstructors bool) {
458 for _, f := range typ.Funcs {
464 for _, fun := range funcs {
492 for _, constructor := range typ.Funcs {
526 // findFuncs finds the doc.Funcs that describes the symbol.
527 func (pkg *Package) findFuncs(symbol string) (funcs []*doc.Func) {
528 for _, fun := range pkg.doc.Funcs {
530 funcs = append(funcs, fun)
637 if len(typ.Consts) > 0 || len(typ.Vars) > 0 || len(typ.Funcs) > 0 || len(typ.Methods) > 0 {
642 pkg.funcSummary(typ.Funcs, true)