Home | History | Annotate | Download | only in libxml2

Lines Matching defs:PREV

61  * Need PREV to check on a '-' within a Character Group. May only be used
64 #define PREV (ctxt->cur[-1])
561 int stateno, atomno, targetno, prev;
594 prev = transitions[stateno * (nbatoms + 1) + atomno + 1];
595 if (prev != 0) {
596 if (prev != targetno + 1) {
601 printf(" previous to is %d\n", prev);
5030 * the start of ctxt->string, and PREV should be safe
5032 if ((start == '-') && (NXT(1) != ']') && (PREV != '[') && (PREV != '^')) {