Lines Matching defs:buff

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 {
93 if (buff[i] == '\n') {
104 switch(buff[i]) {
112 theWriter.print(buff[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);
159 public void ignorableWhitespace(char[] buff, int offset, int length) throws SAXException {
160 characters(buff, offset, length);