Symbol: punct
usr/src/boot/include/xlocale/_ctype.h
134
XLOCALE_ISCTYPE(punct, _CTYPE_P)
usr/src/cmd/file/file.c
1543
register int badpun = 0, punct = 0;
usr/src/cmd/file/file.c
1561
punct++;
usr/src/cmd/file/file.c
1568
if (badpun*5 > punct)
usr/src/cmd/mandoc/mdoc_html.c
1240
const struct roff_node *link, *descr, *punct;
usr/src/cmd/mandoc/mdoc_html.c
1247
punct = n->last;
usr/src/cmd/mandoc/mdoc_html.c
1248
while (punct != link && punct->flags & NODE_DELIMC)
usr/src/cmd/mandoc/mdoc_html.c
1249
punct = punct->prev;
usr/src/cmd/mandoc/mdoc_html.c
1250
punct = punct->next;
usr/src/cmd/mandoc/mdoc_html.c
1254
if (descr == punct)
usr/src/cmd/mandoc/mdoc_html.c
1262
} while (descr != punct);
usr/src/cmd/mandoc/mdoc_html.c
1266
while (punct != NULL) {
usr/src/cmd/mandoc/mdoc_html.c
1268
print_text(h, punct->string);
usr/src/cmd/mandoc/mdoc_html.c
1269
punct = punct->next;
usr/src/cmd/mandoc/mdoc_man.c
1593
const struct roff_node *link, *descr, *punct;
usr/src/cmd/mandoc/mdoc_man.c
1599
punct = n->last;
usr/src/cmd/mandoc/mdoc_man.c
1600
while (punct != link && punct->flags & NODE_DELIMC)
usr/src/cmd/mandoc/mdoc_man.c
1601
punct = punct->prev;
usr/src/cmd/mandoc/mdoc_man.c
1602
punct = punct->next;
usr/src/cmd/mandoc/mdoc_man.c
1605
if ((descr = link->next) != NULL && descr != punct) {
usr/src/cmd/mandoc/mdoc_man.c
1607
while (descr != punct) {
usr/src/cmd/mandoc/mdoc_man.c
1621
while (punct != NULL) {
usr/src/cmd/mandoc/mdoc_man.c
1622
print_word(punct->string);
usr/src/cmd/mandoc/mdoc_man.c
1623
punct = punct->next;
usr/src/cmd/mandoc/mdoc_markdown.c
1361
const struct roff_node *link, *descr, *punct;
usr/src/cmd/mandoc/mdoc_markdown.c
1367
punct = n->last;
usr/src/cmd/mandoc/mdoc_markdown.c
1368
while (punct != link && punct->flags & NODE_DELIMC)
usr/src/cmd/mandoc/mdoc_markdown.c
1369
punct = punct->prev;
usr/src/cmd/mandoc/mdoc_markdown.c
1370
punct = punct->next;
usr/src/cmd/mandoc/mdoc_markdown.c
1374
if (descr == punct)
usr/src/cmd/mandoc/mdoc_markdown.c
1381
} while (descr != punct);
usr/src/cmd/mandoc/mdoc_markdown.c
1391
while (punct != NULL) {
usr/src/cmd/mandoc/mdoc_markdown.c
1392
md_word(punct->string);
usr/src/cmd/mandoc/mdoc_markdown.c
1393
punct = punct->next;
usr/src/cmd/mandoc/mdoc_term.c
1866
const struct roff_node *link, *descr, *punct;
usr/src/cmd/mandoc/mdoc_term.c
1872
punct = n->last;
usr/src/cmd/mandoc/mdoc_term.c
1873
while (punct != link && punct->flags & NODE_DELIMC)
usr/src/cmd/mandoc/mdoc_term.c
1874
punct = punct->prev;
usr/src/cmd/mandoc/mdoc_term.c
1875
punct = punct->next;
usr/src/cmd/mandoc/mdoc_term.c
1878
if ((descr = link->next) != NULL && descr != punct) {
usr/src/cmd/mandoc/mdoc_term.c
1880
while (descr != punct) {
usr/src/cmd/mandoc/mdoc_term.c
1897
while (punct != NULL) {
usr/src/cmd/mandoc/mdoc_term.c
1899
term_word(p, punct->string);
usr/src/cmd/mandoc/mdoc_term.c
1900
punct = punct->next;
usr/src/cmd/troff/n8.c
65
while (punct(cbits(*i++)))
usr/src/cmd/troff/n8.c
73
while (punct(cbits(*i++)))
usr/src/lib/libc/port/locale/isdigit.c
84
DEFN_ISTYPE(punct, _ISPUNCT)
usr/src/lib/libc/port/locale/iswctype.c
145
DEFN_ISWTYPE(punct, _CTYPE_P)
usr/src/test/libc-tests/tests/wctype/wctype_test.c
66
test_ctype(punct);
usr/src/test/libc-tests/tests/wctype/wctype_test.c
78
test_ctype_subset(punct, print);
usr/src/test/libc-tests/tests/wctype/wctype_test.c
83
test_ctype_subset(punct, graph);