Home | History | Annotate | Download | only in message

Lines Matching refs:found

159      * If found, the token is stored in {@link #currentToken}.
163 * If not found, {@link #currentToken} is set to <code>null</code>.
168 * @return the position after the found token in the current header, or
191 return -1; // nothing found
233 * negative if no token start could be found
241 boolean found = false;
242 while (!found && (this.currentHeader != null)) {
245 while (!found && (from < to)) {
252 // found the start of a token
253 found = true;
260 if (!found) {
270 return found ? from : -1;
287 * if a new token is found before a token separator.
297 boolean found = false;
299 while (!found && (from < to)) {
302 found = true;