Home | History | Annotate | Download | only in tagsoup

Lines Matching refs:length

37 	public void adup(char[] buff, int offset, int length) throws SAXException {
42 public void aname(char[] buff, int offset, int length) throws SAXException {
44 theWriter.write(buff, offset, length);
46 attrName = new String(buff, offset, length);
49 public void aval(char[] buff, int offset, int length) throws SAXException {
50 theWriter.write(buff, offset, length);
55 public void cmnt(char [] buff, int offset, int length) throws SAXException {
57 // theWriter.write(buff, offset, length);
61 public void entity(char[] buff, int offset, int length) throws SAXException { }
65 public void eof(char[] buff, int offset, int length) throws SAXException {
69 public void etag(char[] buff, int offset, int length) throws SAXException {
71 theWriter.write(buff, offset, length);
75 public void decl(char[] buff, int offset, int length) throws SAXException {
78 public void gi(char[] buff, int offset, int length) throws SAXException {
80 theWriter.write(buff, offset, length);
84 public void cdsect(char[] buff, int offset, int length) throws SAXException {
85 pcdata(buff, offset, length);
88 public void pcdata(char[] buff, int offset, int length) throws SAXException {
89 if (length == 0) return; // nothing to do
91 length += offset;
92 for (int i = offset; i < length; i++) {
122 public void pitarget(char[] buff, int offset, int length) throws SAXException {
124 theWriter.write(buff, offset, length);
128 public void pi(char[] buff, int offset, int length) throws SAXException {
129 theWriter.write(buff, offset, length);
133 public void stagc(char[] buff, int offset, int length) throws SAXException {
137 public void stage(char[] buff, int offset, int length) throws SAXException {
143 public void characters(char[] buff, int offset, int length) throws SAXException {
144 pcdata(buff, offset, length);
152 if (qname.length() == 0) qname = localname;
159 public void ignorableWhitespace(char[] buff, int offset, int length) throws SAXException {
160 characters(buff, offset, length);
178 if (qname.length() == 0) qname=localname;
181 int length = atts.getLength();
182 for (int i = 0; i < length; i++) {
184 if (qname.length() == 0) qname = atts.getLocalName(i);
197 public void comment(char[] ch, int start, int length) throws SAXException {
198 cmnt(ch, start, length);