time.Time.AddDate (method)

7 uses

	time (current package)
		time.go#L906: func (t Time) AddDate(years int, months int, days int) Time {

	crypto/x509
		parser.go#L197: 				t = t.AddDate(-100, 0, 0)

	encoding/asn1
		asn1.go#L359: 		ret = ret.AddDate(-100, 0, 0)

	github.com/robfig/cron/v3
		spec.go#L104: 		t = t.AddDate(0, 1, 0)
		spec.go#L122: 		t = t.AddDate(0, 0, 1)

	go.pact.im/x/clock/fakeclock
		fakeclock.go#L131: 	c.now = c.now.AddDate(years, months, days)

	vendor/golang.org/x/crypto/cryptobyte
		asn1.go#L520: 		res = res.AddDate(-100, 0, 0)