Home
last modified time | relevance | path

Searched refs:Node (Results 1 – 9 of 9) sorted by relevance

/build/soong/cmd/fileslist/
Dfileslist.go50 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/
Dparser_test.go25 out []Node
30 out: []Node{
Dast.go21 type Node interface { interface
112 type byPosition []Node
Dparser.go42 func (p *parser) Parse() ([]Node, []error) {
64 comments []Node
65 nodes []Node
/build/soong/scripts/
Dmanifest.py29 if child.nodeType == minidom.Node.ELEMENT_NODE and \
114 if element is not None and element.nodeType == minidom.Node.TEXT_NODE:
Dmanifest_fixer.py157 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/
Ddeps.go41 pos := func(node parser.Node) string {
/build/blueprint/parser/
Dast.go23 type Node interface { interface
32 Node
114 Node
/build/soong/androidmk/androidmk/
Dandroidmk.go85 func (f *bpFile) errorf(failedNode mkparser.Node, message string, args ...interface{}) {