Home | History | Annotate | Download | only in report

Lines Matching refs:Title

31 	// Title contains a representative description of the first oops.
32 Title string
109 rep.Title = sanitizeTitle(replaceTable(dynamicTitleReplacement, rep.Title))
170 func sanitizeTitle(title string) string {
172 res := make([]byte, 0, len(title))
174 for i := 0; i < len(title) && i < maxTitleLen; i++ {
175 ch := title[i]
209 title *regexp.Regexp
210 // If title is matched but report is not, the report is considered corrupted.
212 // Format string to create report title.
213 // Strings captured by title (or by report if present) are passed as input.
287 match := f.title.FindSubmatchIndex(output)
327 // a title of an oops but not full report regexp or stack trace,
330 corrupted = "matched title but not report regexp"
458 title, corrupted, _ := extractDescription(output[rep.StartPos:], oops, params)
459 rep.Title = title