Lines Matching refs:Title
335 presentCommits[com.Title] = true
336 bugFixedBy[com.BugID] = append(bugFixedBy[com.BugID], com.Title)
388 bugKey := datastore.NewKey(c, "Bug", bugKeyHash(bug.Namespace, bug.Title, bug.Seq), 0, nil)
448 log.Infof(c, "bug %q is fixed with %q", bug.Title, fixCommits)
496 mgr.FailedBuildBug = bugKeyHash(bug.Namespace, bug.Title, bug.Seq)
521 req.Title = limitLength(req.Title, maxTextLen)
527 req.Title = corruptedReportTitle
530 bug, bugKey, err := findBugForCrash(c, ns, req.Title)
563 log.Infof(c, "not saving crash for %q", bug.Title)
703 log.Infof(c, "deleted %v crashes for bug %q", len(crashes), bug.Title)
711 req.Title = limitLength(req.Title, maxTextLen)
713 bug, bugKey, err := findBugForCrash(c, ns, req.Title)
718 return nil, fmt.Errorf("%v: can't find bug for crash %q", ns, req.Title)
751 req.Title = limitLength(req.Title, maxTextLen)
753 bug, _, err := findBugForCrash(c, ns, req.Title)
758 return nil, fmt.Errorf("%v: can't find bug for crash %q", ns, req.Title)
813 bugHash := bugKeyHash(ns, req.Title, seq)
822 Title: req.Title,
887 bug.Title != corruptedReportTitle &&