OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:readAheadLimit
(Results
1 - 25
of
83
) sorted by null
1
2
3
4
/libcore/ojluni/src/main/java/java/io/
BufferedReader.java
81
private int
readAheadLimit
= 0; /* Valid only when markedChar > 0 */
137
if (delta >=
readAheadLimit
) {
140
readAheadLimit
= 0;
143
if (
readAheadLimit
<= cb.length) {
153
// size the buffer to the
readAheadLimit
.
155
// char ncb[] = new char[
readAheadLimit
];
157
if (nlength >
readAheadLimit
) {
158
nlength =
readAheadLimit
;
489
* @param
readAheadLimit
Limit on the number of characters that may be
498
* @exception IllegalArgumentException If
readAheadLimit
is <
[
all
...]