MCPcopy Index your code
hub / github.com/apache/tomcat / skipSpaces

Method skipSpaces

java/org/apache/jasper/compiler/JspReader.java:372–379  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

370 }
371
372 int skipSpaces() {
373 int i = 0;
374 while (hasMoreInput() && isSpace()) {
375 i++;
376 nextChar();
377 }
378 return i;
379 }
380
381 /**
382 * Skip until the given string is matched in the stream. When returned, the context is positioned past the end of

Callers 5

matchesETagMethod · 0.95
skipUntilETagMethod · 0.95
parseTokenMethod · 0.95

Calls 3

hasMoreInputMethod · 0.95
isSpaceMethod · 0.95
nextCharMethod · 0.95

Tested by

no test coverage detected