golang.org/x/net/html.Node.FirstChild (field)
34 uses
golang.org/x/net/html (current package)
node.go#L45: Parent, FirstChild, LastChild, PrevSibling, NextSibling *Node
node.go#L72: n.FirstChild = newChild
node.go#L95: n.FirstChild = c
node.go#L110: if n.FirstChild == c {
node.go#L111: n.FirstChild = c.NextSibling
node.go#L130: child := src.FirstChild
parse.go#L852: if n.FirstChild == nil {
parse.go#L1375: if n := p.oe.top(); n.DataAtom == a.Textarea && n.FirstChild == nil {
parse.go#L2431: for c := parent.FirstChild; c != nil; {
render.go#L76: for c := n.FirstChild; c != nil; c = c.NextSibling {
render.go#L177: if n.FirstChild != nil {
render.go#L188: if c := n.FirstChild; c != nil && c.Type == TextNode && strings.HasPrefix(c.Data, "\n") {
render.go#L200: for c := n.FirstChild; c != nil; c = c.NextSibling {
render.go#L217: for c := n.FirstChild; c != nil; c = c.NextSibling {
golang.org/x/pkgsite/internal/frontend
overview.go#L187: if n.FirstChild == nil || n.FirstChild.NextSibling == nil || n.FirstChild.NextSibling.DataAtom != atom.Body {
overview.go#L190: n = n.FirstChild.NextSibling
overview.go#L192: for c := n.FirstChild; c != nil; c = c.NextSibling {
overview.go#L227: for c := n.FirstChild; c != nil; c = c.NextSibling {
golang.org/x/pkgsite/internal/testing/htmlcheck
htmlcheck.go#L165: for c := n.FirstChild; c != nil; c = c.NextSibling {
htmlcheck.go#L210: for c := n.FirstChild; c != nil; c = c.NextSibling {
github.com/andybalholm/cascadia
selector.go#L93: for child := n.FirstChild; child != nil; child = child.NextSibling {
selector.go#L101: for child := n.FirstChild; child != nil; child = child.NextSibling {
selector.go#L128: for c := n.FirstChild; c != nil; c = c.NextSibling {
selector.go#L140: for c := n.FirstChild; c != nil; c = c.NextSibling {
selector.go#L384: for c := n.FirstChild; c != nil; c = c.NextSibling {
selector.go#L396: for c := n.FirstChild; c != nil; c = c.NextSibling {
selector.go#L462: for c := n.FirstChild; c != nil; c = c.NextSibling {
selector.go#L479: for c := n.FirstChild; c != nil; c = c.NextSibling {
selector.go#L526: for c := parent.FirstChild; c != nil; c = c.NextSibling {
selector.go#L573: for c := parent.FirstChild; c != nil; c = c.NextSibling {
selector.go#L647: for c := parent.FirstChild; c != nil; c = c.NextSibling {
selector.go#L683: for c := n.FirstChild; c != nil; c = c.NextSibling {
![]() |
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. |