Searched defs:backref (Results 1 - 3 of 3) sorted by relevance
| /PHP_TRUNK/ext/ereg/regex/ |
| H A D | engine.c | 13 #define backref sbackref macro 24 #define backref lbackref macro 166 NOTE("backref dissect"); 167 dp = backref(m, m->coldp, endp, gf, gl, (sopno)0); 190 dp = backref(m, m->coldp, endp, gf, gl, (sopno)0); 415 - backref - figure out what matched what, figuring in back references 416 == static unsigned char *backref(register struct match *m, unsigned char *start, \ 420 backref(m, start, stop, startst, stopst, lev) function 540 return(backref(m, sp+len, stop, ss+1, stopst, lev)); 543 dp = backref( 1015 #undef backref macro [all...] |
| /PHP_TRUNK/ext/mbstring/oniguruma/ |
| H A D | regparse.c | 711 name_add(regex_t* reg, UChar* name, UChar* name_end, int backref, ScanEnv* env) argument 795 e->back_ref1 = backref; 804 e->back_refs[1] = backref; 813 e->back_refs[e->back_num - 1] = backref; 2295 } backref; member in union:__anon255::__anon256 3412 tok->u.backref.num = 1; 3413 tok->u.backref.ref1 = num; 3414 tok->u.backref.by_name = 0; 3416 tok->u.backref.exist_level = 0; 3461 env, &back_num, &tok->u.backref [all...] |
| /PHP_TRUNK/ext/pcre/ |
| H A D | php_pcre.c | 819 static int preg_get_backref(char **str, int *backref) argument 834 *backref = *walk - '0'; 840 *backref = *backref * 10 + *walk - '0'; 902 *match, /* Current match for a backref */ 910 int backref; /* Current backref */ local 929 if (preg_get_backref(&walk, &backref)) { 930 if (backref < count) { 932 in instead of the backref */ 1019 int backref; /* Backreference number */ local [all...] |
Completed in 11 milliseconds