Symbol: html
usr/src/cmd/mandoc/eqn_html.c
232
print_eqn(struct html *p, const struct eqn_box *bp)
usr/src/cmd/mandoc/eqn_html.c
35
eqn_box(struct html *p, const struct eqn_box *bp)
usr/src/cmd/mandoc/html.c
1005
print_byte(struct html *h, char c)
usr/src/cmd/mandoc/html.c
1035
print_endline(struct html *h)
usr/src/cmd/mandoc/html.c
1056
print_endword(struct html *h)
usr/src/cmd/mandoc/html.c
1081
print_indent(struct html *h)
usr/src/cmd/mandoc/html.c
1098
print_word(struct html *h, const char *cp)
usr/src/cmd/mandoc/html.c
123
static void html_reset_internal(struct html *);
usr/src/cmd/mandoc/html.c
124
static void print_byte(struct html *, char);
usr/src/cmd/mandoc/html.c
125
static void print_endword(struct html *);
usr/src/cmd/mandoc/html.c
126
static void print_indent(struct html *);
usr/src/cmd/mandoc/html.c
127
static void print_word(struct html *, const char *);
usr/src/cmd/mandoc/html.c
129
static void print_ctag(struct html *, struct tag *);
usr/src/cmd/mandoc/html.c
130
static int print_escape(struct html *, char);
usr/src/cmd/mandoc/html.c
131
static int print_encode(struct html *, const char *, const char *, int);
usr/src/cmd/mandoc/html.c
132
static void print_href(struct html *, const char *, const char *, int);
usr/src/cmd/mandoc/html.c
133
static void print_metaf(struct html *);
usr/src/cmd/mandoc/html.c
139
struct html *h;
usr/src/cmd/mandoc/html.c
141
h = mandoc_calloc(1, sizeof(struct html));
usr/src/cmd/mandoc/html.c
162
html_reset_internal(struct html *h)
usr/src/cmd/mandoc/html.c
195
print_gen_head(struct html *h)
usr/src/cmd/mandoc/html.c
235
html_setfont(struct html *h, enum mandoc_esc font)
usr/src/cmd/mandoc/html.c
261
print_metaf(struct html *h)
usr/src/cmd/mandoc/html.c
295
html_close_paragraph(struct html *h)
usr/src/cmd/mandoc/html.c
317
html_fillmode(struct html *h, enum roff_tok want)
usr/src/cmd/mandoc/html.c
432
print_escape(struct html *h, char c)
usr/src/cmd/mandoc/html.c
463
print_encode(struct html *h, const char *p, const char *pend, int norecurse)
usr/src/cmd/mandoc/html.c
592
print_href(struct html *h, const char *name, const char *sec, int man)
usr/src/cmd/mandoc/html.c
628
print_otag(struct html *h, enum htmltag tag, const char *fmt, ...)
usr/src/cmd/mandoc/html.c
799
print_otag_id(struct html *h, enum htmltag elemtype, const char *cattr,
usr/src/cmd/mandoc/html.c
836
print_ctag(struct html *h, struct tag *tag)
usr/src/cmd/mandoc/html.c
869
print_gen_decls(struct html *h)
usr/src/cmd/mandoc/html.c
876
print_gen_comment(struct html *h, struct roff_node *n)
usr/src/cmd/mandoc/html.c
902
print_text(struct html *h, const char *word)
usr/src/cmd/mandoc/html.c
908
print_tagged_text(struct html *h, const char *word, struct roff_node *n)
usr/src/cmd/mandoc/html.c
964
print_tagq(struct html *h, const struct tag *until)
usr/src/cmd/mandoc/html.c
980
print_stagq(struct html *h, const struct tag *suntil)
usr/src/cmd/mandoc/html.h
121
void roff_html_pre(struct html *, const struct roff_node *);
usr/src/cmd/mandoc/html.h
123
void print_gen_comment(struct html *, struct roff_node *);
usr/src/cmd/mandoc/html.h
124
void print_gen_decls(struct html *);
usr/src/cmd/mandoc/html.h
125
void print_gen_head(struct html *);
usr/src/cmd/mandoc/html.h
126
struct tag *print_otag(struct html *, enum htmltag, const char *, ...);
usr/src/cmd/mandoc/html.h
127
struct tag *print_otag_id(struct html *, enum htmltag, const char *,
usr/src/cmd/mandoc/html.h
129
void print_tagq(struct html *, const struct tag *);
usr/src/cmd/mandoc/html.h
130
void print_stagq(struct html *, const struct tag *);
usr/src/cmd/mandoc/html.h
131
void print_tagged_text(struct html *, const char *,
usr/src/cmd/mandoc/html.h
133
void print_text(struct html *, const char *);
usr/src/cmd/mandoc/html.h
134
void print_tblclose(struct html *);
usr/src/cmd/mandoc/html.h
135
void print_tbl(struct html *, const struct tbl_span *);
usr/src/cmd/mandoc/html.h
136
void print_eqn(struct html *, const struct eqn_box *);
usr/src/cmd/mandoc/html.h
137
void print_endline(struct html *);
usr/src/cmd/mandoc/html.h
139
void html_close_paragraph(struct html *);
usr/src/cmd/mandoc/html.h
140
enum roff_tok html_fillmode(struct html *, enum roff_tok);
usr/src/cmd/mandoc/html.h
142
int html_setfont(struct html *, enum mandoc_esc);
usr/src/cmd/mandoc/man_html.c
116
struct html *h;
usr/src/cmd/mandoc/man_html.c
120
h = (struct html *)arg;
usr/src/cmd/mandoc/man_html.c
143
print_man_head(const struct roff_meta *man, struct html *h)
usr/src/cmd/mandoc/man_html.c
264
man_root_pre(const struct roff_meta *man, struct html *h)
usr/src/cmd/mandoc/man_html.c
292
man_root_post(const struct roff_meta *man, struct html *h)
usr/src/cmd/mandoc/man_html.c
40
struct html *h
usr/src/cmd/mandoc/man_html.c
48
struct html *);
usr/src/cmd/mandoc/man_html.c
68
struct html *);
usr/src/cmd/mandoc/man_html.c
70
struct html *);
usr/src/cmd/mandoc/mdoc_html.c
247
synopsis_pre(struct html *h, struct roff_node *n)
usr/src/cmd/mandoc/mdoc_html.c
285
struct html *h;
usr/src/cmd/mandoc/mdoc_html.c
289
h = (struct html *)arg;
usr/src/cmd/mandoc/mdoc_html.c
312
print_mdoc_head(const struct roff_meta *meta, struct html *h)
usr/src/cmd/mandoc/mdoc_html.c
41
struct html *h
usr/src/cmd/mandoc/mdoc_html.c
453
mdoc_root_post(const struct roff_meta *meta, struct html *h)
usr/src/cmd/mandoc/mdoc_html.c
470
mdoc_root_pre(const struct roff_meta *meta, struct html *h)
usr/src/cmd/mandoc/mdoc_html.c
53
struct html *);
usr/src/cmd/mandoc/mdoc_html.c
56
static void synopsis_pre(struct html *, struct roff_node *);
usr/src/cmd/mandoc/mdoc_html.c
59
struct html *);
usr/src/cmd/mandoc/mdoc_html.c
61
struct html *);
usr/src/cmd/mandoc/roff_html.c
31
#define ROFF_HTML_ARGS struct html *h, const struct roff_node *n
usr/src/cmd/mandoc/roff_html.c
59
roff_html_pre(struct html *h, const struct roff_node *n)
usr/src/cmd/mandoc/tbl_html.c
104
print_tblclose(struct html *h)
usr/src/cmd/mandoc/tbl_html.c
113
print_tbl(struct html *h, const struct tbl_span *sp)
usr/src/cmd/mandoc/tbl_html.c
33
static void html_tblopen(struct html *, const struct tbl_span *);
usr/src/cmd/mandoc/tbl_html.c
82
html_tblopen(struct html *h, const struct tbl_span *sp)
usr/src/lib/libldap5/sources/ldap/common/tmplout.c
1036
int err = LDAP_SUCCESS, lderr, i, count, html;
usr/src/lib/libldap5/sources/ldap/common/tmplout.c
1043
html = ( urlprefix != NULL );
usr/src/lib/libldap5/sources/ldap/common/tmplout.c
1072
if ( html ) {
usr/src/lib/libldap5/sources/ldap/common/tmplout.c
1120
html ? -1 : 0, LDAP_SYN_DN, writeproc, writeparm,
usr/src/lib/libldap5/sources/ldap/common/tmplout.c
151
int i, err, html, show, labelwidth;
usr/src/lib/libldap5/sources/ldap/common/tmplout.c
183
html = ( urlprefix != NULL );
usr/src/lib/libldap5/sources/ldap/common/tmplout.c
185
if ( html ) {
usr/src/lib/libldap5/sources/ldap/common/tmplout.c
368
if ( html && !(( opts & LDAP_DISP_OPT_HTMLBODYONLY ) != 0 )) {
usr/src/lib/libldap5/sources/ldap/common/tmplout.c
59
writeptype writeproc, void *writeparm, char *eol, int html );
usr/src/lib/libldap5/sources/ldap/common/tmplout.c
623
int err, i, html, writeoutval, freebuf, notascii;
usr/src/lib/libldap5/sources/ldap/common/tmplout.c
634
html = ( urlprefix != NULL );
usr/src/lib/libldap5/sources/ldap/common/tmplout.c
659
output_label( buf, label, labelwidth, writeproc, writeparm, eol, html );
usr/src/lib/libldap5/sources/ldap/common/tmplout.c
680
if ( html ) {
usr/src/lib/libldap5/sources/ldap/common/tmplout.c
696
if ( i > 0 && !html ) {
usr/src/lib/libldap5/sources/ldap/common/tmplout.c
698
writeparm, eol, html );
usr/src/lib/libldap5/sources/ldap/common/tmplout.c
707
if ( html ) {
usr/src/lib/libldap5/sources/ldap/common/tmplout.c
752
if ( html ) {
usr/src/lib/libldap5/sources/ldap/common/tmplout.c
769
if ( html ) {
usr/src/lib/libldap5/sources/ldap/common/tmplout.c
810
void *writeparm, char *eol, int html )
usr/src/lib/libldap5/sources/ldap/common/tmplout.c
814
if ( html ) {
usr/src/test/libc-tests/tests/regex/testregex.c
153
#define H(x) do{if(html)fprintf(stderr,x);}while(0)
usr/src/test/libc-tests/tests/regex/testregex.c
157
help(int html)