Home | History | Annotate | Download | only in dwarf

Lines Matching defs:Field

22 	field    []afield
80 a.field = make([]afield, n)
81 for i := range a.field {
82 a.field[i].attr = Attr(b.uint())
83 a.field[i].fmt = format(b.uint())
84 a.field[i].class = formToClass(a.field[i].fmt, a.field[i].attr, vers, &b)
214 Field []Field
217 // A Field is a single attribute/value pair in an Entry.
240 type Field struct {
349 // AttrField returns the Field associated with attribute Attr in
351 func (e *Entry) AttrField(a Attr) *Field {
352 for i, f := range e.Field {
354 return &e.Field[i]
381 Field: make([]Field, len(a.field)),
383 for i := range e.Field {
384 e.Field[i].Attr = a.field[i].attr
385 e.Field[i].Class = a.field[i].class
386 fmt := a.field[i].fmt
500 e.Field[i].Val = val
511 // If an entry has children, its Children field will be true, and the children