text/template.common.tmpl (field)

13 uses

	text/template (current package)
		exec.go#L184: 		tmpl = t.tmpl[name]
		exec.go#L233: 	for name, tmpl := range t.tmpl {
		exec.go#L404: 	tmpl := s.tmpl.tmpl[t.Name]
		template.go#L15: 	tmpl   map[string]*Template // Map from name to defined templates.
		template.go#L72: 		c.tmpl = make(map[string]*Template)
		template.go#L91: 	for k, v := range t.tmpl {
		template.go#L93: 			nt.tmpl[t.name] = nt
		template.go#L98: 		nt.tmpl[k] = tmpl
		template.go#L145: 	m := make([]*Template, 0, len(t.tmpl))
		template.go#L146: 	for _, v := range t.tmpl {
		template.go#L185: 	return t.tmpl[name]
		template.go#L222: 	if old := t.tmpl[new.name]; old != nil && parse.IsEmptyTree(tree.Root) && old.Tree != nil {
		template.go#L227: 	t.tmpl[new.name] = new