Lines Matching defs:this
7 * Permission to use, copy, modify, and distribute this software for any
9 * copyright notice and this permission notice appear in all copies.
300 struct tag *this, *next;
303 this = h->tag;
305 next = this->next;
306 flags = htmltags[this->tag].flags;
308 print_ctag(h, this);
311 this = next;
358 * it is the first time the function is called for this tag and
361 * is called for this tag and location, so the ordinal suffix
663 /* Push this tag onto the stack of open scopes. */
930 /* Output whitespace before this text? */
975 struct tag *this, *next;
977 for (this = h->tag; this != NULL; this = next) {
978 next = this == until ? NULL : this->next;
979 print_ctag(h, this);
991 struct tag *this, *next;
993 for (this = h->tag; this != NULL; this = next) {
994 next = this->next;
995 if (this == suntil || (next == suntil &&
996 (this->tag == TAG_P || this->tag == TAG_PRE)))
998 print_ctag(h, this);