encoding/xml.Decoder.syntaxError (method)
24 uses
encoding/xml (current package)
xml.go#L291: err = d.syntaxError("unexpected EOF")
xml.go#L474: func (d *Decoder) syntaxError(msg string) error {
xml.go#L489: d.err = d.syntaxError("unexpected end element " + name.Local + ">")
xml.go#L498: d.err = d.syntaxError("element <" + s.name.Local + "> closed by " + name.Local + ">")
xml.go#L501: d.err = d.syntaxError("element <" + s.name.Local + "> in space " + s.name.Space +
xml.go#L591: d.err = d.syntaxError("expected element name after ")
xml.go#L600: d.err = d.syntaxError("invalid characters between " + name.Local + " and >")
xml.go#L610: d.err = d.syntaxError("expected target name after ")
xml.go#L668: d.err = d.syntaxError("invalid sequence xml.go#L681: d.err = d.syntaxError(
xml.go#L700: d.err = d.syntaxError("invalid xml.go#L786: d.err = d.syntaxError("expected element name after <")
xml.go#L803: d.err = d.syntaxError("expected /> in element")
xml.go#L816: d.err = d.syntaxError("expected attribute name in element")
xml.go#L826: d.err = d.syntaxError("attribute name without = in element")
xml.go#L859: d.err = d.syntaxError("unquoted or missing attribute value in element")
xml.go#L949: d.err = d.syntaxError("unexpected EOF")
xml.go#L986: d.err = d.syntaxError("unexpected EOF in CDATA section")
xml.go#L1000: d.err = d.syntaxError("unescaped ]]> not in CDATA section")
xml.go#L1007: d.err = d.syntaxError("unescaped < inside quoted string")
xml.go#L1104: d.err = d.syntaxError("invalid character entity " + ent)
xml.go#L1127: d.err = d.syntaxError("invalid UTF-8")
xml.go#L1132: d.err = d.syntaxError(fmt.Sprintf("illegal character code %U", r))
xml.go#L1181: d.err = d.syntaxError("invalid XML name: " + string(b))
 |
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. |