const golang.org/x/net/html.whitespace
16 uses
golang.org/x/net/html (current package)
doctype.go#L20: space := strings.IndexAny(s, whitespace)
doctype.go#L30: s = strings.TrimLeft(s[space:], whitespace)
doctype.go#L41: s = strings.TrimLeft(s, whitespace)
parse.go#L512: const whitespace = " \t\r\n\f"
parse.go#L518: p.tok.Data = strings.TrimLeft(p.tok.Data, whitespace)
parse.go#L548: p.tok.Data = strings.TrimLeft(p.tok.Data, whitespace)
parse.go#L583: p.tok.Data = strings.TrimLeft(p.tok.Data, whitespace)
parse.go#L626: s := strings.TrimLeft(p.tok.Data, whitespace)
parse.go#L749: s := strings.TrimLeft(p.tok.Data, whitespace)
parse.go#L772: s := strings.TrimLeft(p.tok.Data, whitespace)
parse.go#L868: if p.framesetOK && strings.TrimLeft(d, whitespace) != "" {
parse.go#L1404: if strings.Trim(p.tok.Data, whitespace) == "" {
parse.go#L1552: s := strings.TrimLeft(p.tok.Data, whitespace)
parse.go#L1945: s := strings.TrimLeft(p.tok.Data, whitespace)
parse.go#L2072: s := strings.TrimLeft(p.tok.Data, whitespace)
parse.go#L2130: const whitespaceOrNUL = whitespace + "\x00"
 |
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. |