type html/template.Template

65 uses

	html/template (current package)
		escape.go#L21: func escapeTemplate(tmpl *Template, node parse.Node, name string) error {
		escape.go#L915: func (e *escaper) arbitraryTemplate() *Template {
		template.go#L21: type Template struct {
		template.go#L39: 	set     map[string]*Template
		template.go#L46: func (t *Template) Templates() []*Template {
		template.go#L51: 	m := make([]*Template, 0, len(ns.set))
		template.go#L76: func (t *Template) Option(opt ...string) *Template {
		template.go#L83: func (t *Template) checkCanParse() error {
		template.go#L96: func (t *Template) escape() error {
		template.go#L120: func (t *Template) Execute(wr io.Writer, data any) error {
		template.go#L134: func (t *Template) ExecuteTemplate(wr io.Writer, name string, data any) error {
		template.go#L145: func (t *Template) lookupAndEscapeTemplate(name string) (tmpl *Template, err error) {
		template.go#L171: func (t *Template) DefinedTemplates() string {
		template.go#L186: func (t *Template) Parse(text string) (*Template, error) {
		template.go#L217: func (t *Template) AddParseTree(name string, tree *parse.Tree) (*Template, error) {
		template.go#L228: 	ret := &Template{
		template.go#L246: func (t *Template) Clone() (*Template, error) {
		template.go#L256: 	ns := &nameSpace{set: make(map[string]*Template)}
		template.go#L258: 	ret := &Template{
		template.go#L272: 		ret.set[name] = &Template{
		template.go#L284: func New(name string) *Template {
		template.go#L285: 	ns := &nameSpace{set: make(map[string]*Template)}
		template.go#L287: 	tmpl := &Template{
		template.go#L304: func (t *Template) New(name string) *Template {
		template.go#L311: func (t *Template) new(name string) *Template {
		template.go#L312: 	tmpl := &Template{
		template.go#L327: func (t *Template) Name() string {
		template.go#L345: func (t *Template) Funcs(funcMap FuncMap) *Template {
		template.go#L355: func (t *Template) Delims(left, right string) *Template {
		template.go#L362: func (t *Template) Lookup(name string) *Template {
		template.go#L372: func Must(t *Template, err error) *Template {
		template.go#L388: func ParseFiles(filenames ...string) (*Template, error) {
		template.go#L400: func (t *Template) ParseFiles(filenames ...string) (*Template, error) {
		template.go#L406: func parseFiles(t *Template, readFile func(string) (string, []byte, error), filenames ...string) (*Template, error) {
		template.go#L427: 		var tmpl *Template
		template.go#L453: func ParseGlob(pattern string) (*Template, error) {
		template.go#L467: func (t *Template) ParseGlob(pattern string) (*Template, error) {
		template.go#L472: func parseGlob(t *Template, pattern string) (*Template, error) {
		template.go#L497: func ParseFS(fs fs.FS, patterns ...string) (*Template, error) {
		template.go#L505: func (t *Template) ParseFS(fs fs.FS, patterns ...string) (*Template, error) {
		template.go#L509: func parseFS(t *Template, fsys fs.FS, patterns []string) (*Template, error) {

	golang.org/x/net/trace
		events.go#L419: var eventsTmplCache *template.Template
		events.go#L422: func eventsTmpl() *template.Template {
		histogram.go#L331: var distTmplCache *template.Template
		histogram.go#L334: func distTmpl() *template.Template {
		trace.go#L956: var pageTmplCache *template.Template
		trace.go#L959: func pageTmpl() *template.Template {