html/template.Template.Name (method)

9 uses

	html/template (current package)
		template.go#L102: 			return fmt.Errorf("template: %q is an incomplete or empty template", t.Name())
		template.go#L104: 		if err := escapeTemplate(t, t.text.Root, t.Name()); err != nil {
		template.go#L250: 		return nil, fmt.Errorf("html/template: cannot Clone %q after it has executed", t.Name())
		template.go#L264: 	ret.set[ret.Name()] = ret
		template.go#L269: 			return nil, fmt.Errorf("html/template: cannot Clone %q after it has executed", t.Name())
		template.go#L280: 	return ret.set[ret.Name()], nil
		template.go#L319: 		emptyTmpl := New(existing.Name())
		template.go#L327: func (t *Template) Name() string {
		template.go#L431: 		if name == t.Name() {