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

/external/llvm/lib/Support/
H A Dregcomp.c306 int backrefnum; local
376 * matching group. backrefnum will hold the number. The matching
380 backrefnum = c - '0';
381 if (p->pend[backrefnum] == 0) {
389 assert(backrefnum <= p->g->nsub);
390 EMIT(OBACK_, backrefnum);
391 assert(p->pbegin[backrefnum] != 0);
392 assert(OP(p->strip[p->pbegin[backrefnum]]) != OLPAREN);
393 assert(OP(p->strip[p->pend[backrefnum]]) != ORPAREN);
394 (void) dupl(p, p->pbegin[backrefnum]
[all...]

Completed in 89 milliseconds