Searched refs:ISWORD (Results 1 - 5 of 5) sorted by relevance

/freebsd-12-stable/contrib/nvi/regex/
H A Dregex2.h170 #define ISWORD(c) ((c) == '_' || (ISGRAPH((UCHAR_T)c) && !ISPUNCT((UCHAR_T)c))) macro
H A Dengine.c535 !ISWORD(*(sp-1))) ) &&
536 (sp < m->endp && ISWORD(*sp)) )
545 (sp < m->endp && !ISWORD(*sp)) ) &&
546 (sp > m->beginp && ISWORD(*(sp-1))) )
726 if ( (flag == BOL || (lastc != OUT && !ISWORD(lastc))) &&
727 (c != OUT && ISWORD(c)) ) {
730 if ( (lastc != OUT && ISWORD(lastc)) &&
731 (flag == EOL || (c != OUT && !ISWORD(c))) ) {
809 if ( (flag == BOL || (lastc != OUT && !ISWORD(lastc))) &&
810 (c != OUT && ISWORD(
[all...]
/freebsd-12-stable/lib/libc/regex/
H A Dengine.c602 (sp < m->endp && ISWORD(*sp) && \
604 (sp > m->offp && !ISWORD(*(sp-1)))))
609 (sp < m->endp && !ISWORD(*sp)) ) && \
610 (sp > m->beginp && ISWORD(*(sp-1)))) \
704 if (((sp == m->beginp) && !ISWORD(*sp)) ||
705 (sp == m->endp && !ISWORD(*(sp - 1))))
707 else if (ISWORD(*(sp - 1)) == ISWORD(*sp))
877 * so this only breaks the ISWORD tests below.
925 if ( (flagch == BOL || (lastc != OUT && !ISWORD(last
[all...]
H A Dregex2.h199 #define ISWORD(c) (iswalnum((uch)(c)) || (c) == '_') macro
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
H A Dregex2.h163 #define ISWORD(c) (isalnum(c&0xff) || (c) == '_') macro

Completed in 190 milliseconds