Lines Matching refs:dirs
2850 /* Table to hold the dirs. */
2855 register char **dirs = (char **) xmalloc ((5 + defsize) * sizeof (char *));
2862 /* First consider any dirs specified with -I switches.
2863 Ignore dirs that don't exist. */
2884 dirs = (char **)
2885 xrealloc ((char *) dirs, (max + defsize) * sizeof (char *));
2887 dirs[idx++] = dir;
2893 /* Now add at the end the standard default dirs. */
2906 dirs[idx++] = defdir;
2917 dirs[idx++] = default_include_directories[i];
2920 dirs[idx] = 0;
2928 unsigned int len = strlen (dirs[i]);
2930 if (dirs[i][len - 1] == '/')
2933 dirs[i] = savestring (dirs[i], len - 1);
2938 do_variable_definition (NILF, ".INCLUDE_DIRS", dirs[i],
2942 include_directories = dirs;