encoding/xml.fieldInfo.name (field)
27 uses
encoding/xml (current package)
marshal.go#L483: if xmlname.name != "" {
marshal.go#L484: start.Name.Space, start.Name.Local = xmlname.xmlns, xmlname.name
marshal.go#L493: start.Name.Space, start.Name.Local = finfo.xmlns, finfo.name
marshal.go#L519: name := Name{Space: finfo.xmlns, Local: finfo.name}
marshal.go#L645: } else if finfo != nil && finfo.name != "" {
marshal.go#L646: start.Name.Local = finfo.name
read.go#L426: if finfo.name != "" && finfo.name != start.Name.Local {
read.go#L427: return UnmarshalError("expected element type <" + finfo.name + "> but have <" + start.Name.Local + ">")
read.go#L430: e := "expected element <" + finfo.name + "> in name space " + finfo.xmlns + " but have "
read.go#L453: if a.Name.Local == finfo.name && (finfo.xmlns == "" || finfo.xmlns == a.Name.Space) {
read.go#L688: if len(finfo.parents) == len(parents) && finfo.name == start.Name.Local {
typeinfo.go#L23: name string
typeinfo.go#L182: finfo.name = tag
typeinfo.go#L191: finfo.xmlns, finfo.name = xmlname.xmlns, xmlname.name
typeinfo.go#L193: finfo.name = f.Name
typeinfo.go#L206: finfo.name = parents[len(parents)-1]
typeinfo.go#L220: if xmlname != nil && xmlname.name != finfo.name {
typeinfo.go#L222: finfo.name, typ, f.Name, xmlname.name, ftyp)
typeinfo.go#L244: if err == nil && finfo.name != "" {
typeinfo.go#L287: if oldf.parents[len(newf.parents)] == newf.name {
typeinfo.go#L291: if newf.parents[len(oldf.parents)] == oldf.name {
typeinfo.go#L295: if newf.name == oldf.name {
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |