Home
last modified time | relevance | path

Searched refs:tag_node (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/external/gpl2/groff/dist/src/roff/troff/
H A Dnode.h564 class tag_node : public node {
568 tag_node();
569 tag_node(string, int);
570 tag_node(string, statem *, int, int);
H A Dnode.cpp3945 tag_node::tag_node() in tag_node() function in tag_node
3951 tag_node::tag_node(string s, int delay) in tag_node() function in tag_node
3957 tag_node::tag_node(string s, statem *st, int pop, int delay) in tag_node() function in tag_node
3963 node *tag_node::copy() in copy()
3965 return new tag_node(tag_string, state, div_nest_level, delayed); in copy()
3968 void tag_node::tprint(troff_output_file *out) in tprint()
3976 int tag_node::same(node *nd) in same()
3978 return tag_string == ((tag_node *)nd)->tag_string in same()
3979 && delayed == ((tag_node *)nd)->delayed; in same()
3982 const char *tag_node::type() in type()
[all …]
H A Dinput.cpp6083 curenv->add_node(new tag_node(s, 0)); in tag()
6106 curenv->add_node(new tag_node(s, 1)); in taga()
/netbsd-src/external/gpl2/groff/dist/
H A DChangeLog1276 (tag_node): New class for handling tags.