Home | History | Annotate | Download | only in io

Lines Matching full:sval

125         return st.ttype == TT_WORD && st.sval.equals(s);
162 case StreamTokenizer.TT_WORD: found = st.sval; break;
210 if (st.sval == null) {
213 String val = st.sval;
215 return st.sval;
239 if (st.sval == null) {
242 String val = st.sval;
244 return st.sval;
324 if (st.ttype == '\'' && st.sval.length() == 1) {
325 val = st.sval.charAt(0);
332 val = st.sval;
385 type.append(st.sval);
610 + st.sval + "'.");
843 key += st.sval;
1352 throw new ParseException("Invalid AST path type: " + st.sval);
1406 throw new ParseException("Invalid argument for " + kind + " (legal arguments - " + Arrays.toString(legalChildSelectors) + "): " + st.sval);
1475 throw new ParseException("Illegal bound kind: " + st.sval);
1550 + st.sval + "', ttype:" + st.ttype);