Searched defs:stackCount (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DCSSParser.java104 private int stackCount; field in class:CSSParser
145 stackCount = tokenBufferLength = 0;
766 if (stackCount == unitStack.length) {
767 int[] newUS = new int[stackCount * 2];
769 System.arraycopy(unitStack, 0, newUS, 0, stackCount);
772 unitStack[stackCount++] = startToken;
796 if (stackCount > 0 && unitStack[stackCount - 1] == startToken) {
797 stackCount--;
809 return (stackCount >
[all...]

Completed in 24 milliseconds