github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil.XMLNode.Children (field)
22 uses
github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil (current package)
build.go#L29: for _, c := range root.Children {
unmarshal.go#L43: if n.Children != nil {
unmarshal.go#L44: for _, root := range n.Children {
unmarshal.go#L46: if wrappedChild, ok := c.Children[wrapper]; ok {
unmarshal.go#L149: elems := node.Children[name]
unmarshal.go#L179: if Children, ok := node.Children[mname]; ok {
unmarshal.go#L215: for _, entry := range node.Children["entry"] {
unmarshal.go#L235: keys, ok := node.Children[kname]
unmarshal.go#L236: values := node.Children[vname]
xml_to_struct.go#L13: Children map[string][]*XMLNode `json:",omitempty"`
xml_to_struct.go#L25: Children: map[string][]*XMLNode{},
xml_to_struct.go#L33: if _, ok := n.Children[child.Name.Local]; !ok {
xml_to_struct.go#L34: n.Children[child.Name.Local] = []*XMLNode{}
xml_to_struct.go#L36: n.Children[child.Name.Local] = append(n.Children[child.Name.Local], child)
xml_to_struct.go#L62: if out.Children == nil {
xml_to_struct.go#L63: out.Children = map[string][]*XMLNode{}
xml_to_struct.go#L67: slice := out.Children[name]
xml_to_struct.go#L83: out.Children[name] = slice
xml_to_struct.go#L139: for k := range node.Children {
xml_to_struct.go#L145: for _, v := range node.Children[k] {
xml_to_struct.go#L150: for _, c := range node.Children {
 |
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. |