Home | History | Annotate | Download | only in support

Lines Matching refs:count

30     private int count;
43 this.count = str.length();
121 if (pos != count) {
131 * Reads at most <code>count</code> characters from this StringReader and
140 * @param count
148 public int read(char buf[], int offset, int count) throws IOException {
150 if (0 <= offset && offset <= buf.length && 0 <= count
151 && count <= buf.length - offset) {
154 if (pos == this.count) {
157 int end = pos + count > this.count ? this.count : pos
158 + count;
216 * Skips <code>count</code> number of characters in this StringReader.
220 * @param count
228 public long skip(long count) throws IOException {
231 if (count <= 0) {
235 if (count < this.count - pos) {
236 pos = pos + (int) count;
237 skipped = count;
239 skipped = this.count - pos;
240 pos = this.count;