Searched defs:DepNode (Results 1 – 5 of 5) sorted by relevance
| /build/kati/ |
| D | dep.h | 34 struct DepNode { struct 40 vector<NamedDepNode> deps; argument 41 vector<NamedDepNode> order_onlys; argument 42 vector<NamedDepNode> parents; argument 57 void InitDepNodePool(); 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 | 260 DepNode::DepNode(Symbol o, bool p, bool r) in DepNode() function in DepNode
|