Lines Matching defs:line

35 void   print_dependencies(register Name target, register Property line);
36 static void print_deps(register Name target, register Property line);
39 static Boolean should_print_dep(Property line);
45 static Boolean is_out_of_date(Property line);
49 * print_dependencies(target, line)
57 * line We get the dependency list from here
65 print_dependencies(register Name target, register Property line)
97 print_deps(target, line);
122 Property line;
125 line = get_prop(name->prop, line_prop);
126 if (line != NULL && line->body.line.dependencies != NULL) {
128 print_deplist(line->body.line.dependencies);
130 for (dependencies= line->body.line.dependencies;
140 * print_deps(target, line, go_recursive)
147 * line We get the dependency list from here
154 print_deps(register Name target, register Property line)
167 if (should_print_dep(line)) {
170 if (is_out_of_date(line)) {
178 print_deplist(line->body.line.dependencies);
181 for (dep = line->body.line.dependencies;
191 is_out_of_date(Property line)
196 if (line == NULL) {
199 if (line->body.line.is_out_of_date) {
202 for (dep = line->body.line.dependencies;
207 line->body.line.is_out_of_date = true;
250 * should_print_dep(line)
253 * The line must exist and either have children dependencies
260 * line We get the dependency list from here
265 should_print_dep(Property line)
267 if (line == NULL) {
270 if (line->body.line.dependencies != NULL) {
273 if (line->body.line.sccs_command) {
287 Property line;
292 line = get_prop(np->prop, line_prop);
294 print_deps(np, line);
331 register Property line;
333 if (((line= get_prop(target->prop, line_prop)) == NULL) ||
334 ((line->body.line.command_template == NULL) &&
335 (line->body.line.dependencies == NULL)))
337 print_dependencies(target, line);
338 for (rule= line->body.line.command_template; rule != NULL; rule= rule->next)