Home | History | Annotate | Download | only in input

Lines Matching refs:found

57         int found = super.read(b);
58 this.count += (found >= 0) ? found : 0;
59 return found;
74 int found = super.read(b, off, len);
75 this.count += (found >= 0) ? found : 0;
76 return found;
88 int found = super.read();
89 this.count += (found >= 0) ? 1 : 0;
90 return found;