Home | History | Annotate | Download | only in flag

Lines Matching defs:uint64Value

165 type uint64Value uint64
167 func newUint64Value(val uint64, p *uint64) *uint64Value {
169 return (*uint64Value)(p)
172 func (i *uint64Value) Set(s string) error {
174 *i = uint64Value(v)
178 func (i *uint64Value) Get() interface{} { return uint64(*i) }
180 func (i *uint64Value) String() string { return strconv.FormatUint(uint64(*i), 10) }
455 case *uintValue, *uint64Value: