HomeSort by relevance Sort by last modified time
    Searched refs:tokenTypes (Results 1 - 2 of 2) sorted by null

  /libcore/luni/src/main/java/java/io/
StreamTokenizer.java 84 private byte[] tokenTypes = new byte[256];
208 if (0 <= ch && ch < tokenTypes.length) {
209 tokenTypes[ch] = TOKEN_COMMENT;
273 : tokenTypes[currentChar];
303 : tokenTypes[currentChar];
344 || (currentChar < 256 && (tokenTypes[currentChar] & (TOKEN_WORD | TOKEN_DIGIT)) == 0)) {
489 if (0 <= ch && ch < tokenTypes.length) {
490 tokenTypes[ch] = 0;
509 if (hi > tokenTypes.length) {
510 hi = tokenTypes.length - 1
    [all...]
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 

Completed in 513 milliseconds