Lines Matching refs:st

106     private StreamTokenizer st;
171 st = new StreamTokenizer(policy);
173 st.resetSyntax();
174 st.wordChars('a', 'z');
175 st.wordChars('A', 'Z');
176 st.wordChars('.', '.');
177 st.wordChars('0', '9');
178 st.wordChars('_', '_');
179 st.wordChars('$', '$');
180 st.wordChars(128 + 32, 255);
181 st.whitespaceChars(0, ' ');
182 st.commentChar('/');
183 st.quoteChar('\'');
184 st.quoteChar('"');
185 st.lowerCaseMode(false);
186 st.ordinaryChar('/');
187 st.slashSlashComments(true);
188 st.slashStarComments(true);
199 lookahead = st.nextToken();
358 throw new ParsingException(st.lineno(),
371 throw new ParsingException(st.lineno(),
421 st.lineno(),
429 st.lineno(),
448 st.lineno(),
491 (st.lineno(),
528 throw new ParsingException(st.lineno(),
552 ParsingException(st.lineno(),
650 StringTokenizer st =
652 int count = st.countTokens();
655 File file = new File(st.nextToken());
690 if (expect.equalsIgnoreCase(st.sval))
726 throw new ParsingException(st.lineno(), expect,
728 String.valueOf(st.nval));
736 if (expect.equalsIgnoreCase(st.sval)) {
737 lookahead = st.nextToken();
739 value = st.sval;
740 lookahead = st.nextToken();
742 value = st.sval;
743 lookahead = st.nextToken();
745 throw new ParsingException(st.lineno(), expect,
746 st.sval);
751 value = st.sval;
752 lookahead = st.nextToken();
754 value = st.sval;
755 lookahead = st.nextToken();
757 value = st.sval;
758 lookahead = st.nextToken();
760 throw new ParsingException(st.lineno(), expect, st.sval);
765 lookahead = st.nextToken();
767 throw new ParsingException(st.lineno(), expect, ",");
771 lookahead = st.nextToken();
773 throw new ParsingException(st.lineno(), expect, "{");
777 lookahead = st.nextToken();
779 throw new ParsingException(st.lineno(), expect, "}");
783 lookahead = st.nextToken();
785 throw new ParsingException(st.lineno(), expect, ";");
789 lookahead = st.nextToken();
791 throw new ParsingException(st.lineno(), expect, "*");
794 throw new ParsingException(st.lineno(), expect,
808 throw new ParsingException(st.lineno(), ";",
810 String.valueOf(st.nval));
815 lookahead = st.nextToken();