github.com/google/safehtml/template.Template.Name (method)

9 uses

	github.com/google/safehtml/template (current package)
		template.go#L108: 			return fmt.Errorf("template: %q is an incomplete or empty template", t.Name())
		template.go#L110: 		if err := escapeTemplate(t, t.text.Root, t.Name()); err != nil {
		template.go#L296: 		return nil, fmt.Errorf("html/template: cannot Clone %q after it has executed", t.Name())
		template.go#L310: 	ret.set[ret.Name()] = ret
		template.go#L315: 			return nil, fmt.Errorf("html/template: cannot Clone %q after it has executed", t.Name())
		template.go#L326: 	return ret.set[ret.Name()], nil
		template.go#L365: 		emptyTmpl := New(existing.Name())
		template.go#L373: func (t *Template) Name() string {
		template.go#L548: 		if name == t.Name() {