OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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;
59
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
38
static vector<
DepNode
*>* g_dep_node_pool;
179
DepNode
* n) const {
193
void FillDepNodeLoc(const Rule* r,
DepNode
* n) const {
201
DepNode
* n) const {
223
DepNode
::
DepNode
(Symbol o, bool p, bool r)
303
void Build(vector<Symbol> targets, vector<
DepNode
*>* nodes) {
335
DepNode
* n = BuildPlan(target, Intern(""));
443
bool CanPickImplicitRule(const Rule* rule, Symbol output,
DepNode
* n,
501
DepNode
* n
[
all
...]
Completed in 141 milliseconds