Home | History | Annotate | Download | only in app

Lines Matching refs:Title

69 	Seq            int64 // sequences of the bug with the same title
70 Title string
306 return bug.Title
308 return fmt.Sprintf("%v (%v)", bug.Title, bug.Seq+1)
318 title := display[match[2]:match[3]]
322 return "", 0, fmt.Errorf("failed to parse bug title: %v", err)
325 return "", 0, fmt.Errorf("failed to parse bug title: seq=%v", seq)
327 return title, seq - 1, nil
339 bug.DupOf, bugKeyHash(bug.Namespace, bug.Title, bug.Seq), err)
345 func bugKeyHash(ns, title string, seq int64) string {
346 return hash.String([]byte(fmt.Sprintf("%v-%v-%v-%v", config.Namespaces[ns].Key, ns, title, seq)))