Home | History | Annotate | Download | only in libxml2

Lines Matching defs:PREV

58  * Need PREV to check on a '-' within a Character Group. May only be used
61 #define PREV (ctxt->cur[-1])
557 int stateno, atomno, targetno, prev;
590 prev = transitions[stateno * (nbatoms + 1) + atomno + 1];
591 if (prev != 0) {
592 if (prev != targetno + 1) {
597 printf(" previous to is %d\n", prev);
5006 * the start of ctxt->string, and PREV should be safe
5008 if ((start == '-') && (NXT(1) != ']') && (PREV != '[') && (PREV != '^')) {