Searched defs:DepNode (Results 1 – 5 of 5) sorted by relevance
/build/kati/ |
D | dep.h | 32 struct DepNode { struct 37 vector<DepNode*> deps; argument 38 vector<DepNode*> order_onlys; argument 39 vector<DepNode*> parents; argument 59 vector<DepNode*>* nodes); argument
|
D | dep.go | 27 type DepNode struct { struct 28 Output string 29 Cmds []string 30 Deps []*DepNode 31 OrderOnlys []*DepNode 32 Parents []*DepNode 33 HasRule bool 34 IsPhony bool 35 ActualInputs []string 36 TargetSpecificVars Vars [all …]
|
D | query.go | 22 func showDeps(w io.Writer, n *DepNode, indent int, seen map[string]int) { 43 func showNode(w io.Writer, n *DepNode) { 67 func handleNodeQuery(w io.Writer, q string, nodes []*DepNode) {
|
D | evalcmd.go | 290 func createRunners(ctx *execContext, n *DepNode) ([]runner, bool, error) { 345 func evalCommands(nodes []*DepNode, vars Vars) error {
|
D | dep.cc | 223 DepNode::DepNode(Symbol o, bool p, bool r) in DepNode() function in DepNode
|