Home
last modified time | relevance | path

Searched refs:REG_NEWLINE (Results 1 – 25 of 1989) sorted by relevance

12345678910>>...80

/dports/devel/tla/tla-1.3.5/src/hackerlab/tests/rx-posix-tests/
H A Dposix-test-cases.h3790 REG_NEWLINE,
3801 REG_EXTENDED | REG_NEWLINE,
3812 REG_NEWLINE,
3834 REG_NEWLINE,
3856 REG_NEWLINE,
3878 REG_NEWLINE,
3900 REG_NEWLINE,
3922 REG_NEWLINE,
3944 REG_NEWLINE,
3988 REG_NEWLINE,
[all …]
H A Dtest-cases.h3790 REG_NEWLINE,
3801 REG_EXTENDED | REG_NEWLINE,
3812 REG_NEWLINE,
3834 REG_NEWLINE,
3856 REG_NEWLINE,
3878 REG_NEWLINE,
3900 REG_NEWLINE,
3922 REG_NEWLINE,
3944 REG_NEWLINE,
3988 REG_NEWLINE,
[all …]
H A Dtest-rx.scm1556 (posix-newline-1 ("." (REG_BOTH REG_NEWLINE))
1561 (posix-newline-2 ("^abc" (REG_BOTH REG_NEWLINE))
1565 (posix-newline-3 ("^abc" (REG_BOTH REG_NEWLINE))
1569 (posix-newline-4 ("z$\nabc" REG_NEWLINE)
1573 (posix-newline-5 ("z$\nabc" (REG_EXTENDED REG_NEWLINE))
1577 (posix-newline-6 ("^abc" (REG_BOTH REG_NEWLINE))
1582 (posix-newline-7 ("def$" (REG_BOTH REG_NEWLINE))
1586 (posix-newline-8 ("def$" (REG_BOTH REG_NEWLINE))
1590 (posix-newline-9 ("def$\nx" REG_NEWLINE)
1610 (posix-complex-newline-4 ("z$\na(b)*c" REG_NEWLINE)
[all …]
/dports/textproc/uni2ascii/uni2ascii-4.18/
H A DSetFormat.c221 regcomp(&rx,"^&#[[:digit:]]{4,};$",REG_NEWLINE|REG_NOSUB|REG_EXTENDED); /* HTMLD */ in SetFormat()
245 regcomp(&rx,"^0x[[:xdigit:]]{4,}$",REG_NEWLINE|REG_NOSUB|REG_EXTENDED); /* STDX */ in SetFormat()
249 regcomp(&rx,"^#x[[:xdigit:]]{4,}$",REG_NEWLINE|REG_NOSUB|REG_EXTENDED); /* CLSX */ in SetFormat()
253 regcomp(&rx,"^[[:xdigit:]]{4,}$",REG_NEWLINE|REG_NOSUB|REG_EXTENDED); /* RAWX */ in SetFormat()
261 regcomp(&rx,"^<U[[:xdigit:]]{4,}>$",REG_NEWLINE|REG_NOSUB|REG_EXTENDED); /* ABUX */ in SetFormat()
265 regcomp(&rx,"^U[[:xdigit:]]{4,}$",REG_NEWLINE|REG_NOSUB|REG_EXTENDED); /* JUUX */ in SetFormat()
269 regcomp(&rx,"^u[[:xdigit:]]{4,}$",REG_NEWLINE|REG_NOSUB|REG_EXTENDED); /* JuUX */ in SetFormat()
273 regcomp(&rx,"^%u[[:xdigit:]]{4,}$",REG_NEWLINE|REG_NOSUB|REG_EXTENDED); /* PCTUX */ in SetFormat()
281 regcomp(&rx,"^X\'[[:xdigit:]]{4,}\'$",REG_NEWLINE|REG_NOSUB|REG_EXTENDED); /* XQ */ in SetFormat()
289 regcomp(&rx,"^v[[:digit:]]{4,}$",REG_NEWLINE|REG_NOSUB|REG_EXTENDED); /* PERLV */ in SetFormat()
[all …]
/dports/www/pound/Pound-2.8/
H A Dconfig.c485 if(regcomp(&svc->sess_start, lin, REG_ICASE | REG_NEWLINE | REG_EXTENDED)) in parse_sess()
491 if(regcomp(&svc->sess_start, lin, REG_ICASE | REG_NEWLINE | REG_EXTENDED)) in parse_sess()
496 if(regcomp(&svc->sess_start, ";", REG_ICASE | REG_NEWLINE | REG_EXTENDED)) in parse_sess()
768 if(regcomp(&res->verb, xhttp[0], REG_ICASE | REG_NEWLINE | REG_EXTENDED)) in parse_HTTP()
802 if(regcomp(&res->verb, xhttp[n], REG_ICASE | REG_NEWLINE | REG_EXTENDED)) in parse_HTTP()
972 if(regcomp(&res->verb, xhttp[0], REG_ICASE | REG_NEWLINE | REG_EXTENDED)) in parse_HTTPS()
1001 if(regcomp(&res->verb, xhttp[n], REG_ICASE | REG_NEWLINE | REG_EXTENDED)) in parse_HTTPS()
1445 if(regcomp(&Empty, "^[ \t]*$", REG_ICASE | REG_NEWLINE | REG_EXTENDED) in config_parse()
1446 || regcomp(&Comment, "^[ \t]*#.*$", REG_ICASE | REG_NEWLINE | REG_EXTENDED) in config_parse()
1460 || regcomp(&End, "^[ \t]*End[ \t]*$", REG_ICASE | REG_NEWLINE | REG_EXTENDED) in config_parse()
[all …]
H A Dpound.c290 …if(regcomp(&HEADER, "^([a-z0-9!#$%&'*+.^_`|~-]+):[ \t]*(.*)[ \t]*$", REG_ICASE | REG_NEWLINE | REG… in main()
291 || regcomp(&CONN_UPGRD, "(^|[ \t,])upgrade([ \t,]|$)", REG_ICASE | REG_NEWLINE | REG_EXTENDED) in main()
292 || regcomp(&CHUNK_HEAD, "^([0-9a-f]+).*$", REG_ICASE | REG_NEWLINE | REG_EXTENDED) in main()
293 || regcomp(&RESP_SKIP, "^HTTP/1.1 100.*$", REG_ICASE | REG_NEWLINE | REG_EXTENDED) in main()
294 …P_IGN, "^HTTP/1.[01] (10[1-9]|1[1-9][0-9]|204|30[456]).*$", REG_ICASE | REG_NEWLINE | REG_EXTENDED) in main()
295 || regcomp(&LOCATION, "(http|https)://([^/]+)(.*)", REG_ICASE | REG_NEWLINE | REG_EXTENDED) in main()
296 …ON, "Authorization:[ \t]*Basic[ \t]*\"?([^ \t]*)\"?[ \t]*", REG_ICASE | REG_NEWLINE | REG_EXTENDED) in main()
/dports/textproc/yodl/yodl-5fa97b175c85581d01329013cfdb4239f019b023/yodl/src/chartab/
H A Dchartabconstruct.c42 REG_EXTENDED | REG_NEWLINE in chartab_construct()
55 REG_EXTENDED | REG_NEWLINE in chartab_construct()
68 REG_EXTENDED | REG_NEWLINE in chartab_construct()
/dports/textproc/gsed/sed-4.8/sed/
H A Dregexp.c90 if (new_regex->flags & REG_NEWLINE) in compile_regex_1()
101 buffer_delimiter == '\n' && (new_regex->flags & REG_NEWLINE) != 0; in compile_regex_1()
224 if (regex->flags & REG_NEWLINE) in match_regex()
233 else if (!(regex->flags & REG_NEWLINE)) in match_regex()
287 if ((!regsize && (regex->flags & REG_NEWLINE)) in match_regex()
295 if (!regsize && (regex->flags & REG_NEWLINE) && !backref) in match_regex()
303 if ((regex->flags & REG_NEWLINE) && buffer_delimiter != '\n') in match_regex()
/dports/sysutils/nvramtool/nvramtool-r6440/accessors/
H A Dlayout-text.c265 compile_reg_expr(REG_EXTENDED | REG_NEWLINE, blank_or_comment_regex, &blank_or_comment_expr); in process_layout_file()
266 compile_reg_expr(REG_EXTENDED | REG_NEWLINE, start_entries_regex, &start_entries_expr); in process_layout_file()
267 compile_reg_expr(REG_EXTENDED | REG_NEWLINE, entries_line_regex, &entries_line_expr); in process_layout_file()
268 compile_reg_expr(REG_EXTENDED | REG_NEWLINE, start_enums_regex, &start_enums_expr); in process_layout_file()
269 compile_reg_expr(REG_EXTENDED | REG_NEWLINE, enums_line_regex, &enums_line_expr); in process_layout_file()
270 compile_reg_expr(REG_EXTENDED | REG_NEWLINE, start_checksums_regex, &start_checksums_expr); in process_layout_file()
271 compile_reg_expr(REG_EXTENDED | REG_NEWLINE, checksum_line_regex, &checksum_line_expr); in process_layout_file()
/dports/textproc/p5-POSIX-Regex/POSIX-Regex-1.0003/
H A Dconst-c.inc40 my @names = (qw(REG_EXTENDED REG_ICASE REG_NEWLINE REG_NOTBOL REG_NOTEOL));
92 if (memEQ(name, "REG_NEWLINE", 11)) {
93 #ifdef REG_NEWLINE
94 *iv_return = REG_NEWLINE;
/dports/devel/cgit/cgit-1.2.3/git/t/helper/
H A Dtest-regex.c12 { "NEWLINE", REG_NEWLINE },
28 if (regcomp(&r, pat, REG_EXTENDED | REG_NEWLINE)) in test_regex_bug()
/dports/devel/tla/tla-1.3.5/src/hackerlab/rx-posix/
H A Dposix.h170 REG_NEWLINE = (REG_NOSUB << 1), enumerator
179 REG_DFA_ONLY = (REG_NEWLINE << 1),
/dports/irc/srvx/srvx-1.3.1/rx/
H A Dinst-rxposix.h100 #define REG_NEWLINE (REG_ICASE << 1) macro
105 #define REG_NOSUB (REG_NEWLINE << 1)
/dports/devel/silc-toolkit/silc-toolkit-1.1.12/lib/contrib/
H A Dregexpr.h128 #define REG_NEWLINE (REG_ICASE << 1) macro
129 #define REG_NOSUB (REG_NEWLINE << 1)
/dports/devel/git-gui/git-2.34.1/t/helper/
H A Dtest-regex.c11 { "NEWLINE", REG_NEWLINE },
28 if (regcomp(&r, pat, REG_EXTENDED | REG_NEWLINE)) in test_regex_bug()
/dports/devel/git-p4/git-2.34.1/t/helper/
H A Dtest-regex.c11 { "NEWLINE", REG_NEWLINE },
28 if (regcomp(&r, pat, REG_EXTENDED | REG_NEWLINE)) in test_regex_bug()
/dports/devel/git-svn/git-2.34.1/t/helper/
H A Dtest-regex.c11 { "NEWLINE", REG_NEWLINE }, in notnull()
28 if (regcomp(&r, pat, REG_EXTENDED | REG_NEWLINE)) in get_store()
/dports/devel/git/git-2.34.1/t/helper/
H A Dtest-regex.c11 { "NEWLINE", REG_NEWLINE },
28 if (regcomp(&r, pat, REG_EXTENDED | REG_NEWLINE)) in test_regex_bug()
/dports/devel/git-cvs/git-2.34.1/t/helper/
H A Dtest-regex.c11 { "NEWLINE", REG_NEWLINE },
28 if (regcomp(&r, pat, REG_EXTENDED | REG_NEWLINE)) in test_regex_bug()
/dports/net/ns3/ns-allinone-3.35/ns-3.35/src/topology-read/model/
H A Drocketfuel-topology-reader.cc303 ret = regcomp (&regex, ROCKETFUEL_MAPS_LINE, REG_EXTENDED | REG_NEWLINE); in GetFileType()
318 ret = regcomp (&regex, ROCKETFUEL_WEIGHTS_LINE, REG_EXTENDED | REG_NEWLINE); in GetFileType()
384 ret = regcomp (&regex, ROCKETFUEL_MAPS_LINE, REG_EXTENDED | REG_NEWLINE); in Read()
402 ret = regcomp (&regex, ROCKETFUEL_WEIGHTS_LINE, REG_EXTENDED | REG_NEWLINE); in Read()
/dports/net-mgmt/zabbix3-java/zabbix-3.0.32/src/libs/zbxregexp/
H A Dzbxregexp.c81 return zbx_regexp(string, pattern, len, REG_EXTENDED | REG_NEWLINE); in zbx_regexp_match()
86 return zbx_regexp(string, pattern, len, REG_EXTENDED | REG_ICASE | REG_NEWLINE); in zbx_iregexp_match()
270 return regexp_sub(string, pattern, output_template, REG_EXTENDED | REG_NEWLINE); in zbx_regexp_sub()
361 int regexp_flags = REG_EXTENDED | REG_NEWLINE; in regexp_match_ex_regsub()
/dports/net-mgmt/zabbix3-frontend/zabbix-3.0.32/src/libs/zbxregexp/
H A Dzbxregexp.c81 return zbx_regexp(string, pattern, len, REG_EXTENDED | REG_NEWLINE); in zbx_regexp_match()
86 return zbx_regexp(string, pattern, len, REG_EXTENDED | REG_ICASE | REG_NEWLINE); in zbx_iregexp_match()
270 return regexp_sub(string, pattern, output_template, REG_EXTENDED | REG_NEWLINE); in zbx_regexp_sub()
361 int regexp_flags = REG_EXTENDED | REG_NEWLINE; in regexp_match_ex_regsub()
/dports/net-mgmt/zabbix3-proxy/zabbix-3.0.32/src/libs/zbxregexp/
H A Dzbxregexp.c81 return zbx_regexp(string, pattern, len, REG_EXTENDED | REG_NEWLINE); in zbx_regexp_match()
86 return zbx_regexp(string, pattern, len, REG_EXTENDED | REG_ICASE | REG_NEWLINE); in zbx_iregexp_match()
270 return regexp_sub(string, pattern, output_template, REG_EXTENDED | REG_NEWLINE); in zbx_regexp_sub()
361 int regexp_flags = REG_EXTENDED | REG_NEWLINE; in regexp_match_ex_regsub()
/dports/net-mgmt/zabbix3-server/zabbix-3.0.32/src/libs/zbxregexp/
H A Dzbxregexp.c81 return zbx_regexp(string, pattern, len, REG_EXTENDED | REG_NEWLINE); in zbx_regexp_match()
86 return zbx_regexp(string, pattern, len, REG_EXTENDED | REG_ICASE | REG_NEWLINE); in zbx_iregexp_match()
270 return regexp_sub(string, pattern, output_template, REG_EXTENDED | REG_NEWLINE); in zbx_regexp_sub()
361 int regexp_flags = REG_EXTENDED | REG_NEWLINE; in regexp_match_ex_regsub()
/dports/net-mgmt/zabbix3-agent/zabbix-3.0.32/src/libs/zbxregexp/
H A Dzbxregexp.c81 return zbx_regexp(string, pattern, len, REG_EXTENDED | REG_NEWLINE); in zbx_regexp_match()
86 return zbx_regexp(string, pattern, len, REG_EXTENDED | REG_ICASE | REG_NEWLINE); in zbx_iregexp_match()
270 return regexp_sub(string, pattern, output_template, REG_EXTENDED | REG_NEWLINE); in zbx_regexp_sub()
361 int regexp_flags = REG_EXTENDED | REG_NEWLINE; in regexp_match_ex_regsub()

12345678910>>...80