Searched refs:ISDOT (Results 1 - 12 of 12) sorted by relevance

/freebsd-current/contrib/tcsh/
H A Dsh.dir.h52 #define ISDOT(c) (NTRM((c)[0]) == '.' && ((NTRM((c)[1]) == '\0') || \ macro
54 #define ISDOTDOT(c) (NTRM((c)[0]) == '.' && ISDOT(&((c)[1])))
H A Dtw.spell.c134 if (ISDOT(item) || ISDOTDOT(item))
H A Dtc.os.c1373 if (ISDOT(d->d_name) || ISDOTDOT(d->d_name))
H A Dsh.dir.c333 #define IS_DOT(sp, p) (ISDOT(p) && ((p) == (sp) || *((p) - 1) == '/'))
/freebsd-current/crypto/openssh/openbsd-compat/
H A Dgetcwd.c46 #define ISDOT(dp) \ macro
173 if (ISDOT(dp))
/freebsd-current/lib/libc/gen/
H A Dgetcwd.c48 #define ISDOT(dp) \ macro
167 if (ISDOT(dp))
H A Dfts-compat.c75 #define ISDOT(a) (a[0] == '.' && (!a[1] || (a[1] == '.' && !a[2]))) macro
753 if (!ISSET(FTS_SEEDOT) && ISDOT(dp->d_name))
967 if (ISDOT(p->fts_name))
H A Dfts.c62 #define ISDOT(a) (a[0] == '.' && (!a[1] || (a[1] == '.' && !a[2]))) macro
750 if (!ISSET(FTS_SEEDOT) && ISDOT(dp->d_name))
955 if (ISDOT(p->fts_name))
H A Dfts-compat11.c64 #define ISDOT(a) (a[0] == '.' && (!a[1] || (a[1] == '.' && !a[2]))) macro
752 if (!ISSET(FTS_SEEDOT) && ISDOT(dp->d_name))
958 if (ISDOT(p->fts_name))
/freebsd-current/bin/rm/
H A Drm.c497 #define ISDOT(a) ((a)[0] == '.' && (!(a)[1] || ((a)[1] == '.' && !(a)[2]))) macro
510 if (ISDOT(p)) {
/freebsd-current/contrib/mandoc/
H A Dcompat_fts.c60 #define ISDOT(a) (a[0] == '.' && (!a[1] || (a[1] == '.' && !a[2]))) macro
403 if (ISDOT(dp->d_name))
532 if (ISDOT(p->fts_name))
/freebsd-current/contrib/bmake/
H A Dutil.c230 #define ISDOT(c) ((c)[0] == '.' && (((c)[1] == '\0') || ((c)[1] == '/'))) macro
231 #define ISDOTDOT(c) ((c)[0] == '.' && ISDOT(&((c)[1])))
299 if (ISDOT(d->d_name) || ISDOTDOT(d->d_name))

Completed in 217 milliseconds