Home | History | Annotate | Download | only in doc

Lines Matching full:funcs

99 		docPkg.Funcs = append(docPkg.Funcs, typ.Funcs...)
224 pkg.funcSummary(pkg.doc.Funcs)
276 func (pkg *Package) funcSummary(funcs []*doc.Func) {
277 for _, fun := range funcs {
322 // findFuncs finds the doc.Funcs that describes the symbol.
323 func (pkg *Package) findFuncs(symbol string) (funcs []*doc.Func) {
324 for _, fun := range pkg.doc.Funcs {
326 funcs = append(funcs, fun)
415 if len(typ.Consts) > 0 || len(typ.Vars) > 0 || len(typ.Funcs) > 0 || len(typ.Methods) > 0 {
420 pkg.funcSummary(typ.Funcs)