Home | History | Annotate | Download | only in datastore

Lines Matching refs:IntID

27 	intID     int64
44 // IntID returns the key's integer ID, which may be 0.
45 func (k *Key) IntID() int64 {
46 return k.intID
65 // In particular, whether the key has a zero StringID and a zero IntID.
67 return k.stringID == "" && k.intID == 0
79 if k.stringID != "" && k.intID != 0 {
97 if k.kind != o.kind || k.stringID != o.stringID || k.intID != o.intID || k.appID != o.appID || k.namespace != o.namespace {
124 b.WriteString(strconv.FormatInt(k.intID, 10))
141 IntID int64
154 IntID: k.intID,
168 intID: gk.IntID,
251 // Either one or both of stringID and intID must be zero. If both are zero,
254 func NewKey(c context.Context, kind, stringID string, intID int64, parent *Key) *Key {
267 intID: intID,