/ndk/build/core/ |
D | definitions-graph.mk | 234 $(eval -local-deps = $$($$1_depends))\ 235 $(call test-expect,,$(call -ndk-mod-get-closure,,-local-deps)) 238 $(eval -local-deps = $$($$1_depends))\ 240 $(call test-expect,A,$(call -ndk-mod-get-closure,A,-local-deps)) 243 $(eval -local-deps = $$($$1_depends))\ 246 $(call test-expect,A B,$(call -ndk-mod-get-closure,A,-local-deps)) 248 -test-ndk-mod-get-closure.circular-deps = \ 249 $(eval -local-deps = $$($$1_depends))\ 253 $(call test-expect,A B C,$(call -ndk-mod-get-closure,A,-local-deps)) 256 $(eval -local-deps = $$($$1_depends))\ [all …]
|
D | definitions.mk | 736 $(call -ndk-mod-get-topological-depends,$1,-ndk-mod-link-deps)) 743 -ndk-mod-link-deps = \ 819 $(call module-add-c++-deps,$(__module),$1,$2),\ 901 module-add-c++-deps = \ 1412 convert-deps = $1.org 1413 cmd-convert-deps = && $(NDK_DEPENDENCIES_CONVERTER) $1 1415 convert-deps = $1 1416 cmd-convert-deps = 1446 …$$(hide) $$(PRIVATE_CC) -MMD -MP -MF $$(call convert-deps,$$(PRIVATE_DEPS)) $$(PRIVATE_CFLAGS) $$(… 1447 $$(call cmd-convert-deps,$$(PRIVATE_DEPS)) [all …]
|
/ndk/sources/host-tools/make-3.81/ |
D | NMakefile | 127 # .deps/alloca.Po 130 # .deps/ar.Po 135 # .deps/arscan.Po 140 # .deps/commands.Po 146 # .deps/default.Po 152 # .deps/dir.Po 157 # .deps/expand.Po 164 # .deps/file.Po 171 # .deps/function.Po 177 # .deps/getloadavg.Po [all …]
|
D | rule.c | 97 for (dep = rule->deps; dep != 0; dep = dep->next) in count_implicit_rule_limits() 165 struct dep *deps; in convert_suffix_rule() local 196 deps = 0; in convert_suffix_rule() 204 deps = alloc_dep (); in convert_suffix_rule() 205 deps->name = depname; in convert_suffix_rule() 208 create_pattern_rule (names, percents, 0, deps, cmds, 0); in convert_suffix_rule() 226 for (d = suffix_file->deps; d != 0; d = d->next) in convert_to_pattern() 235 for (d = suffix_file->deps; d != 0; d = d->next) in convert_to_pattern() 249 for (d2 = suffix_file->deps; d2 != 0; d2 = d2->next) in convert_to_pattern() 307 for (d = rule->deps, d2 = r->deps; in new_pattern_rule() [all …]
|
D | SMakefile | 218 # .deps/alloca.Po 221 # .deps/ar.Po 226 # .deps/arscan.Po 231 # .deps/commands.Po 237 # .deps/default.Po 243 # .deps/dir.Po 248 # .deps/expand.Po 255 # .deps/file.Po 262 # .deps/function.Po 268 # .deps/getloadavg.Po [all …]
|
D | file.c | 288 if (to_file->deps == 0) in rehash_file() 289 to_file->deps = from_file->deps; in rehash_file() 292 register struct dep *deps = to_file->deps; in rehash_file() local 293 while (deps->next != 0) in rehash_file() 294 deps = deps->next; in rehash_file() 295 deps->next = from_file->deps; in rehash_file() 462 struct dep *old = f->deps; in expand_deps() 468 f->deps = 0; in expand_deps() 605 *d_ptr = f->deps; in expand_deps() 606 f->deps = new; in expand_deps() [all …]
|
D | implicit.c | 220 struct idep* deps = 0; in pattern_search() local 312 if (rule->deps != 0 && rule->cmds == 0) in pattern_search() 401 if (rule->deps == 0 && rule->cmds == 0) in pattern_search() 488 for (dep = rule->deps; dep != 0; dep = dep->next) in pattern_search() 592 id_ptr = &deps; in pattern_search() 656 for (d = deps; d != 0; d = d->next) in pattern_search() 685 for (expl_d = file->deps; expl_d != 0; expl_d = expl_d->next) in pattern_search() 771 free_idep_chain (deps); in pattern_search() 772 deps = 0; in pattern_search() 810 dep = file->deps; in pattern_search() [all …]
|
D | rule.h | 27 struct dep *deps; /* Dependencies of the rule. */ member 58 struct dep *deps,
|
D | read.c | 135 struct dep *deps, unsigned int cmds_started, char *commands, 302 struct dep *deps; in eval_makefile() local 365 deps = alloc_dep (); in eval_makefile() 366 deps->next = read_makefiles; in eval_makefile() 367 read_makefiles = deps; in eval_makefile() 368 deps->file = lookup_file (filename); in eval_makefile() 369 if (deps->file == 0) in eval_makefile() 370 deps->file = enter_file (xstrdup (filename)); in eval_makefile() 371 filename = deps->file->name; in eval_makefile() 372 deps->changed = flags; in eval_makefile() [all …]
|
D | commands.c | 98 for (d = enter_file (".SUFFIXES")->deps; d != 0; d = d->next) in set_file_variables() 114 for (d = file->deps; d != 0; d = d->next) in set_file_variables() 153 for (d = file->deps; d != 0; d = d->next) in set_file_variables() 164 for (d = file->deps; d != 0; d = d->next) in set_file_variables() 195 uniquize_deps (file->deps); in set_file_variables() 198 for (d = file->deps; d != 0; d = d->next) in set_file_variables() 216 for (d = file->deps; d != 0; d = d->next) in set_file_variables()
|
D | remake.c | 336 for (d = f->deps; d != 0; d = d->next) in update_file() 470 d = file->deps; in update_file_1() 490 file->deps = d->next; in update_file_1() 552 for (d = file->deps; d != 0; d = d->next) in update_file_1() 645 for (d = file->deps; d != 0; d = d->next) in update_file_1() 704 if (file->double_colon && file->deps == 0) in update_file_1() 989 d = file->deps; in check_dep() 1000 file->deps = d->next; in check_dep() 1002 d = file->deps; in check_dep()
|
D | default.c | 532 suffix_file->deps = (struct dep *) in set_default_suffixes()
|
D | filedef.h | 31 struct dep *deps; /* all dependencies, including duplicates */ member
|
D | config.log | 361 DEPDIR='.deps'
|
D | main.c | 1834 if (f->deps == 0 && f->cmds != 0) in main()
|
D | ChangeLog | 430 * read.c (record_files): Don't set deps flags if there are no deps. 2185 * file.c (print_file): Show order-only deps properly when printing 2262 (uniquize_deps): Consider ignore_mtime when comparing deps.
|
D | aclocal.m4 | 257 AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
|
D | NEWS | 899 * Defining .DEFAULT with no deps or commands clears its commands.
|
/ndk/sources/host-tools/ndk-depends/ |
D | ndk-depends.cc | 1021 DependencyGraph& deps, in UpdateDependencies() argument 1025 if (!libname.empty() && deps.find(libname) != deps.end()) { in UpdateDependencies() 1059 deps[soname] = node; in UpdateDependencies() 1069 DependencyGraph deps; in BuildDependencyGraph() local 1076 deps, queue); in BuildDependencyGraph() 1084 DependencyGraph::iterator iter = deps.find(libname); in BuildDependencyGraph() 1085 if (iter != deps.end()) { in BuildDependencyGraph() 1093 UpdateDependencies(libname, libpath, deps, queue); in BuildDependencyGraph() 1101 deps[libname] = node; in BuildDependencyGraph() 1110 deps[libname] = node; in BuildDependencyGraph() [all …]
|
/ndk/sources/host-tools/make-3.81/tests/scripts/functions/ |
D | eval | 165 run_make_test('deps: ; $(eval deps: foo)', '',
|
/ndk/sources/host-tools/make-3.81/config/ |
D | depcomp | 68 sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`}
|
/ndk/sources/host-tools/make-3.81/w32/ |
D | Makefile | 108 DEPDIR = .deps
|
/ndk/sources/host-tools/make-3.81/autom4te.cache/ |
D | traces.0 | 277 m4trace:configure.in:33: -1- AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])
|
D | output.0 | 3583 DEPDIR="${am__leading_dot}deps"
|