Lines Matching +defs:pathname +defs:name
18 * 3. Neither the name of the University nor the names of its contributors
56 * 4. Neither the name of the University nor the names of its contributors
354 * The node is a library, its name has the form "-l<libname>".
358 * The node is an archive member, its name has the form
420 /* The target's name, such as "clean" or "make.c" */
421 char *name;
422 /* The unexpanded name of a .USE node */
425 * The full pathname of the file belonging to the target.
482 * Other nodes of the same name, for targets that were defined using
564 char *name;
625 /* The basename of the program name, suffixed with [n] for sub-makes. */
829 str_basename(const char *pathname)
831 const char *lastSlash = strrchr(pathname, '/');
832 return lastSlash != NULL ? lastSlash + 1 : pathname;
1100 return gn->path != NULL ? gn->path : gn->name;