encoding/xml.StartElement.Name (field)
47 uses
encoding/xml (current package)
marshal.go#L409: if startTemplate != nil && startTemplate.Name.Local == "" {
marshal.go#L479: start.Name = startTemplate.Name
marshal.go#L484: start.Name.Space, start.Name.Local = xmlname.xmlns, xmlname.name
marshal.go#L488: start.Name = v
marshal.go#L492: if start.Name.Local == "" && finfo != nil {
marshal.go#L493: start.Name.Space, start.Name.Local = finfo.xmlns, finfo.name
marshal.go#L495: if start.Name.Local == "" {
marshal.go#L500: start.Name.Local = name
marshal.go#L545: if err := p.writeEnd(start.Name); err != nil {
marshal.go#L643: start.Name = startTemplate.Name
marshal.go#L646: start.Name.Local = finfo.name
marshal.go#L647: start.Name.Space = finfo.xmlns
marshal.go#L649: start.Name.Local = typ.Name()
marshal.go#L653: start.Name.Local = typ.Elem().Name()
marshal.go#L688: return p.writeEnd(start.Name)
marshal.go#L693: if start.Name.Local == "" {
marshal.go#L697: p.tags = append(p.tags, start.Name)
marshal.go#L702: p.WriteString(start.Name.Local)
marshal.go#L704: if start.Name.Space != "" {
marshal.go#L706: p.EscapeString(start.Name.Space)
marshal.go#L1024: if err := s.p.writeStart(&StartElement{Name: Name{Local: parents[i]}}); err != nil {
read.go#L214: return fmt.Errorf("xml: %s.UnmarshalXML did not consume entire <%s> element", receiverType(val), start.Name.Local)
read.go#L413: v.Set(reflect.ValueOf(start.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#L429: if finfo.xmlns != "" && finfo.xmlns != start.Name.Space {
read.go#L431: if start.Name.Space == "" {
read.go#L434: e += start.Name.Space
read.go#L440: fv.Set(reflect.ValueOf(start.Name))
read.go#L680: if finfo.flags&fElement == 0 || len(finfo.parents) < len(parents) || finfo.xmlns != "" && finfo.xmlns != start.Name.Space {
read.go#L688: if len(finfo.parents) == len(parents) && finfo.name == start.Name.Local {
read.go#L692: if len(finfo.parents) > len(parents) && finfo.parents[len(parents)] == start.Name.Local {
xml.go#L59: Name Name
xml.go#L73: return EndElement{e.Name}
xml.go#L325: d.translate(&t1.Name, true)
xml.go#L329: d.pushElement(t1.Name)
github.com/aws/aws-sdk-go/private/protocol/query
unmarshal_error.go#L29: switch start.Name.Local {
github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil
xml_to_struct.go#L66: name := typed.Name.Local
xml_to_struct.go#L76: node.Name = typed.Name
xml_to_struct.go#L85: if s != nil && s.Name.Local == typed.Name.Local { // matching end token
xml_to_struct.go#L133: e.EncodeToken(xml.StartElement{Name: node.Name, Attr: attrs})
golang.org/x/pkgsite/internal/source
meta-tags.go#L78: if strings.EqualFold(t.Name.Local, "body") {
meta-tags.go#L81: if !strings.EqualFold(t.Name.Local, "meta") {
 |
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. |