Home | History | Annotate | Download | only in tagsoup

Lines Matching defs:theOutputBuffer

263 	char[] theOutputBuffer = new char[200];	// Output buffer
436 h.adup(theOutputBuffer, 0, theSize);
440 h.adup(theOutputBuffer, 0, theSize);
445 h.adup(theOutputBuffer, 0, theSize);
447 h.stagc(theOutputBuffer, 0, theSize);
450 h.aname(theOutputBuffer, 0, theSize);
454 h.aname(theOutputBuffer, 0, theSize);
456 h.adup(theOutputBuffer, 0, theSize);
459 h.aname(theOutputBuffer, 0, theSize);
461 h.adup(theOutputBuffer, 0, theSize);
462 h.stagc(theOutputBuffer, 0, theSize);
465 h.aval(theOutputBuffer, 0, theSize);
469 h.aval(theOutputBuffer, 0, theSize);
471 h.stagc(theOutputBuffer, 0, theSize);
477 h.pcdata(theOutputBuffer, 0, theSize);
481 h.pcdata(theOutputBuffer, 0, theSize);
513 // System.err.println("%%" + new String(theOutputBuffer, 0, theSize));
514 h.entity(theOutputBuffer, 1, theSize - 1);
552 h.etag(theOutputBuffer, 0, theSize);
556 h.decl(theOutputBuffer, 0, theSize);
560 h.gi(theOutputBuffer, 0, theSize);
564 h.gi(theOutputBuffer, 0, theSize);
566 h.stagc(theOutputBuffer, 0, theSize);
576 h.pcdata(theOutputBuffer, 0, theSize);
581 h.pcdata(theOutputBuffer, 0, theSize);
586 h.cmnt(theOutputBuffer, 0, theSize);
603 h.pi(theOutputBuffer, 0, theSize);
607 h.pitarget(theOutputBuffer, 0, theSize);
611 h.pitarget(theOutputBuffer, 0, theSize);
613 h.pi(theOutputBuffer, 0, theSize);
624 h.stagc(theOutputBuffer, 0, theSize);
630 if (theSize > 0) h.gi(theOutputBuffer, 0, theSize);
632 h.stage(theOutputBuffer, 0, theSize);
640 h.pcdata(theOutputBuffer, 0, theSize);
648 h.eof(theOutputBuffer, 0, 0);
670 if (theSize >= theOutputBuffer.length - 20) {
673 h.pcdata(theOutputBuffer, 0, theSize);
678 char[] newOutputBuffer = new char[theOutputBuffer.length * 2];
679 System.arraycopy(theOutputBuffer, 0, newOutputBuffer, 0, theSize+1);
680 theOutputBuffer = newOutputBuffer;
683 theOutputBuffer[theSize++] = (char)ch;