Home
last modified time | relevance | path

Searched refs:maxState (Results 1 – 4 of 4) sorted by relevance

/external/tagsoup/templates/org/ccil/cowan/tagsoup/
DHTMLScanner.java83 int maxState = -1;
86 if (statetable[i] > maxState) {
87 maxState = statetable[i];
95 statetableIndex = new short[maxState + 1][maxChar + 3];
96 for (int theState = 0; theState <= maxState; ++theState) {
/external/tagsoup/src/org/ccil/cowan/tagsoup/
DHTMLScanner.java304 int maxState = -1;
307 if (statetable[i] > maxState) {
308 maxState = statetable[i];
316 statetableIndex = new short[maxState + 1][maxChar + 3];
317 for (int theState = 0; theState <= maxState; ++theState) {
/external/libxml2/
Dpattern.c112 int maxState; /* allocated number of states */ member
1777 cur->maxState = 4; in xmlNewStreamCtxt()
1822 if (comp->nbState >= comp->maxState) { in xmlStreamCtxtAddState()
1826 comp->maxState * 4 * sizeof(int)); in xmlStreamCtxtAddState()
1833 comp->maxState *= 2; in xmlStreamCtxtAddState()
Drelaxng.c322 int maxState; /* the size of the array */ member
1030 ret->maxState = size; in xmlRelaxNGNewStates()
1061 if (states->nbState >= states->maxState) { in xmlRelaxNGAddStatesUniq()
1065 size = states->maxState * 2; in xmlRelaxNGAddStatesUniq()
1075 states->maxState = size; in xmlRelaxNGAddStatesUniq()
1101 if (states->nbState >= states->maxState) { in xmlRelaxNGAddStates()
1105 size = states->maxState * 2; in xmlRelaxNGAddStates()
1115 states->maxState = size; in xmlRelaxNGAddStates()