Searched defs:oldmatch (Results 1 - 4 of 4) sorted by relevance
/ast/src/lib/libast/regex/ |
H A D | regexec.c | 70 regexec(const regex_t* p, const char* s, size_t nmatch, oldregmatch_t* oldmatch, regflags_t flags) argument 72 if (oldmatch) 83 oldmatch[i].rm_so = match[i].rm_so; 84 oldmatch[i].rm_eo = match[i].rm_eo;
|
H A D | regsubexec.c | 212 regsubexec(const regex_t* p, const char* s, size_t nmatch, oldregmatch_t* oldmatch) argument 214 if (oldmatch) 224 match[i].rm_so = oldmatch[i].rm_so; 225 match[i].rm_eo = oldmatch[i].rm_eo; 230 oldmatch[i].rm_so = match[i].rm_so; 231 oldmatch[i].rm_eo = match[i].rm_eo;
|
H A D | regrexec.c | 161 regrexec(const regex_t* p, const char* s, size_t len, size_t nmatch, oldregmatch_t* oldmatch, regflags_t flags, int sep, void* handle, regrecord_t record) argument 163 if (oldmatch) 174 oldmatch[i].rm_so = match[i].rm_so; 175 oldmatch[i].rm_eo = match[i].rm_eo;
|
H A D | regnexec.c | 2062 regnexec(const regex_t* p, const char* s, size_t len, size_t nmatch, oldregmatch_t* oldmatch, regflags_t flags) argument 2064 if (oldmatch) 2075 oldmatch[i].rm_so = match[i].rm_so; 2076 oldmatch[i].rm_eo = match[i].rm_eo;
|
Completed in 26 milliseconds