Home | History | Annotate | Download | only in dom

Lines Matching refs:offset

68      * @param offset Start offset of substring to extract.
70 * @return The specified substring. If the sum of <code>offset</code> and
74 * INDEX_SIZE_ERR: Raised if the specified <code>offset</code> is
81 public String substringData(int offset,
97 * Insert a string at the specified 16-bit unit offset.
98 * @param offset The character offset at which to insert.
101 * INDEX_SIZE_ERR: Raised if the specified <code>offset</code> is
106 public void insertData(int offset,
113 * @param offset The offset from which to start removing.
115 * <code>offset</code> and <code>count</code> exceeds
116 * <code>length</code> then all 16-bit units from <code>offset</code>
119 * INDEX_SIZE_ERR: Raised if the specified <code>offset</code> is
125 public void deleteData(int offset,
130 * Replace the characters starting at the specified 16-bit unit offset
132 * @param offset The offset from which to start replacing.
134 * <code>offset</code> and <code>count</code> exceeds
142 * INDEX_SIZE_ERR: Raised if the specified <code>offset</code> is
148 public void replaceData(int offset,