Searched refs:Node (Results 1 – 9 of 9) sorted by relevance
/build/soong/cmd/fileslist/ |
D | fileslist.go | 50 type Node struct { struct 58 func newNode(hostPath string, devicePath string, stat os.FileInfo) Node { 59 return Node{Name: devicePath, path: hostPath, stat: stat} 63 func (n *Node) scan() bool { argument 95 allOutput := make([]Node, 0, 1024) // Store all outputs. 98 ch := make(chan Node) // Pass nodes to goroutines. 108 output := make([]Node, 0, 1024) // Local output list.
|
/build/soong/androidmk/parser/ |
D | parser_test.go | 25 out []Node 30 out: []Node{
|
D | ast.go | 21 type Node interface { interface 112 type byPosition []Node
|
D | parser.go | 42 func (p *parser) Parse() ([]Node, []error) { 64 comments []Node 65 nodes []Node
|
/build/soong/scripts/ |
D | manifest.py | 29 if child.nodeType == minidom.Node.ELEMENT_NODE and \ 114 if element is not None and element.nodeType == minidom.Node.TEXT_NODE:
|
D | manifest_fixer.py | 157 if last is not None and last.nodeType != minidom.Node.TEXT_NODE: 171 if last and last.nodeType != minidom.Node.TEXT_NODE: 202 if last is not None and last.nodeType != minidom.Node.TEXT_NODE: 221 if application.lastChild.nodeType != minidom.Node.TEXT_NODE:
|
/build/soong/makedeps/ |
D | deps.go | 41 pos := func(node parser.Node) string {
|
/build/blueprint/parser/ |
D | ast.go | 23 type Node interface { interface 32 Node 114 Node
|
/build/soong/androidmk/androidmk/ |
D | androidmk.go | 85 func (f *bpFile) errorf(failedNode mkparser.Node, message string, args ...interface{}) {
|