Home
last modified time | relevance | path

Searched refs:dirs (Results 1 – 6 of 6) sorted by relevance

/ndk/sources/host-tools/make-3.81/glob/
Dglob.c856 glob_t dirs; local
862 errfunc, &dirs);
869 for (i = 0; i < dirs.gl_pathc; ++i)
880 globfree (&dirs);
888 status = glob_in_dir (filename, dirs.gl_pathv[i],
898 globfree (&dirs);
904 if (prefix_array (dirs.gl_pathv[i],
908 globfree (&dirs);
935 dirs.gl_pathc + 1) *
939 globfree (&dirs);
[all …]
/ndk/sources/host-tools/make-3.81/
Dread.c2841 register char **dirs = (char **) xmalloc ((5 + defsize) * sizeof (char *)); in construct_include_path() local
2870 dirs = (char **) in construct_include_path()
2871 xrealloc ((char *) dirs, (max + defsize) * sizeof (char *)); in construct_include_path()
2873 dirs[idx++] = dir; in construct_include_path()
2892 dirs[idx++] = defdir; in construct_include_path()
2903 dirs[idx++] = default_include_directories[i]; in construct_include_path()
2906 dirs[idx] = 0; in construct_include_path()
2914 unsigned int len = strlen (dirs[i]); in construct_include_path()
2916 if (dirs[i][len - 1] == '/') in construct_include_path()
2919 dirs[i] = savestring (dirs[i], len - 1); in construct_include_path()
[all …]
Dremake.c1452 static char *dirs[] = in library_search() local
1546 for (dp = dirs; *dp != 0; ++dp) in library_search()
1561 for (dp = dirs; *dp != 0; ++dp) in library_search()
/ndk/sources/host-tools/make-3.81/tests/
Dtest_driver.pl167 @dirs = grep (!/^(\..*|CVS|RCS)$/, readdir (SCRIPTDIR) );
169 foreach $dir (@dirs)
/ndk/sources/host-tools/make-3.81/doc/
Dmake.info-14320 df := dirs
4325 dirs := $($(a1)_$(df))
4327 will give `dirs' the same value as `a_dirs', `1_dirs', `a_files' or
5616 files in the directories in the list `dirs':
5618 dirs := a b c d
5619 files := $(foreach dir,$(dirs),$(wildcard $(dir)/*))
5626 This example has the same result (except for setting `dirs') as the
5635 dirs := a b c d
5636 files := $(foreach dir,$(dirs),$(find_files))
Dmake.texi5262 df := dirs
5267 dirs := $($(a1)_$(df))
5272 will give @code{dirs} the same value as @code{a_dirs}, @code{1_dirs},
6880 in the directories in the list @samp{dirs}:
6883 dirs := a b c d
6884 files := $(foreach dir,$(dirs),$(wildcard $(dir)/*))
6892 This example has the same result (except for setting @samp{dirs}) as
6904 dirs := a b c d
6905 files := $(foreach dir,$(dirs),$(find_files))