Home | History | Annotate | Download | only in text

Lines Matching defs:variableLimit

92      * <code>variableLimit</code>.  At any point during parsing, available
93 * variables are <code>variableNext..variableLimit-1</code>.
100 * <code>variableNext..variableLimit-1</code>. During variable definition
101 * we use the special value variableLimit-1 as a placeholder.
103 private char variableLimit;
109 * in the placeholder char variableLimit - 1, and decrement
110 * variableLimit.
670 // special placeholder char variableLimit-1.
1203 if (left.text.length() != 1 || left.text.charAt(0) != variableLimit) {
1216 ++variableLimit;
1323 variableLimit = (char) (end + 1);
1333 if (ch >= curData.variablesBase && ch < variableLimit) {
1455 if (variableNext >= variableLimit) {
1477 if (variableNext >= variableLimit) {
1493 if (variableNext >= variableLimit) {
1547 // the special placeholder variableLimit-1, and save the variable
1551 if (variableNext >= variableLimit) {
1554 buf.append(--variableLimit);