Home | History | Annotate | Download | only in text

Lines Matching defs:variableLimit

91      * <code>variableLimit</code>.  At any point during parsing, available
92 * variables are <code>variableNext..variableLimit-1</code>.
99 * <code>variableNext..variableLimit-1</code>. During variable definition
100 * we use the special value variableLimit-1 as a placeholder.
102 private char variableLimit;
108 * in the placeholder char variableLimit - 1, and decrement
109 * variableLimit.
669 // special placeholder char variableLimit-1.
1202 if (left.text.length() != 1 || left.text.charAt(0) != variableLimit) {
1215 ++variableLimit;
1322 variableLimit = (char) (end + 1);
1332 if (ch >= curData.variablesBase && ch < variableLimit) {
1454 if (variableNext >= variableLimit) {
1476 if (variableNext >= variableLimit) {
1492 if (variableNext >= variableLimit) {
1546 // the special placeholder variableLimit-1, and save the variable
1550 if (variableNext >= variableLimit) {
1553 buf.append(--variableLimit);