Home | History | Annotate | Download | only in dom

Lines Matching refs:offset

46     public void deleteData(int offset, int count) throws DOMException {
47 buffer.delete(offset, offset + count);
70 public void insertData(int offset, String arg) throws DOMException {
72 buffer.insert(offset, arg);
78 public void replaceData(int offset, int count, String arg)
81 buffer.replace(offset, offset + count, arg);
91 public String substringData(int offset, int count) throws DOMException {
93 return buffer.substring(offset, offset + count);