HomeSort by relevance Sort by last modified time
    Searched defs:DepNode (Results 1 - 3 of 3) sorted by null

  /build/kati/
dep.h 32 struct DepNode {
33 DepNode(Symbol output, bool is_phony, bool is_restat);
37 vector<DepNode*> deps;
38 vector<DepNode*> order_onlys;
39 vector<DepNode*> parents;
61 vector<DepNode*>* nodes);
dep.go 26 // DepNode represents a makefile rule for an output.
27 type DepNode struct {
30 Deps []*DepNode
31 OrderOnlys []*DepNode
32 Parents []*DepNode
41 func (n *DepNode) String() string {
57 done map[string]*DepNode
283 func (db *depBuilder) buildPlan(output string, neededBy string, tsvs Vars) (*DepNode, error) {
294 n := &DepNode{Output: output, IsPhony: db.phony[output]}
297 // create depnode for phony targets
    [all...]
dep.cc 39 static vector<DepNode*>* g_dep_node_pool;
212 void FillDepNodeFromRule(Symbol output, const Rule* r, DepNode* n) const {
226 void FillDepNodeLoc(const Rule* r, DepNode* n) const {
232 void FillDepNode(Symbol output, const Rule* pattern_rule, DepNode* n) const {
263 DepNode::DepNode(Symbol o, bool p, bool r)
341 void Build(vector<Symbol> targets, vector<DepNode*>* nodes) {
373 DepNode* n = BuildPlan(target, Intern(""));
502 DepNode* n,
560 DepNode* n
    [all...]

Completed in 113 milliseconds