OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:url_match
(Results
1 - 1
of
1
) sorted by null
/external/clearsilver/cgi/
html.c
109
regmatch_t email_match,
url_match
;
local
149
if (regexec (&url_re, src+x, 1, &
url_match
, 0) != 0)
151
url_match
.rm_so = -1;
152
url_match
.rm_eo = -1;
156
url_match
.rm_so += x;
157
url_match
.rm_eo += x;
159
while ((x < slen) && !((email_match.rm_so == -1) && (
url_match
.rm_so == -1)))
166
if ((
url_match
.rm_so != -1) && ((email_match.rm_so == -1) || (
url_match
.rm_so <= email_match.rm_so)))
168
parts[part].begin =
url_match
.rm_so
[
all
...]
Completed in 167 milliseconds