Searched refs:regexp (Results 1 - 25 of 66) sorted by relevance

123

/netbsd-6-1-5-RELEASE/include/
H A Dregexp.h1 /* $NetBSD: regexp.h,v 1.6 2003/08/07 09:44:11 agc Exp $ */
34 * @(#)regexp.h 8.1 (Berkeley) 6/2/93
71 * @(#)regexp.h 8.1 (Berkeley) 6/2/93
78 * Definitions etc. for regexp(3) routines.
80 * Caveat: this is V8 regexp(3) [actually, a reimplementation thereof],
84 typedef struct regexp { struct
92 } regexp; typedef in typeref:struct:regexp
98 regexp *__compat_regcomp(const char *);
99 int __compat_regexec(const regexp *, const char *);
100 void __compat_regsub(const regexp *, cons
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/less/dist/
H A Dregexp.h4 * Definitions etc. for regexp(3) routines.
6 * Caveat: this is V8 regexp(3) [actually, a reimplementation thereof],
14 typedef struct regexp { struct
22 } regexp; typedef in typeref:struct:regexp
30 extern regexp *regcomp _ANSI_ARGS_((char *exp));
31 extern int regexec _ANSI_ARGS_((regexp *prog, char *string));
32 extern int regexec2 _ANSI_ARGS_((regexp *prog, char *string, int notbol));
33 extern void regsub _ANSI_ARGS_((regexp *prog, char *source, char *dest));
H A Dpattern.c85 struct regexp *comp;
86 struct regexp **pcomp = (struct regexp **) comp_pattern;
158 struct regexp **pcomp = (struct regexp **) pattern;
254 struct regexp *spattern = (struct regexp *) pattern;
H A Dpattern.h47 #include "regexp.h"
48 #define DEFINE_PATTERN(name) struct regexp *name
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/
H A Dcopyright.sh118 (setq fsf-regexp "Free[#; \t\n]+Software[#; \t\n]+Foundation,[#; \t\n]+Inc\."
119 fsf-copyright-regexp (concat copyright-regexp "[#; \t\n]+" fsf-regexp)
120 generated-regexp "THIS FILE IS MACHINE GENERATED WITH CGEN")
125 (if (and (not (re-search-forward generated-regexp (+ (point) copyright-limit) t))
126 (re-search-forward fsf-copyright-regexp (+ (point) copyright-limit) t))
133 (re-search-backward fsf-regexp)
134 (re-search-forward fsf-regexp
H A Dobjc-lang.c686 * Function: selectors_info (regexp, from_tty)
688 * Implements the "Info selectors" command. Takes an optional regexp
689 * arg. Lists all objective c selectors that match the regexp. Works
695 selectors_info (char *regexp, int from_tty) argument
709 if (regexp == NULL)
713 if (*regexp == '+' || *regexp == '-')
715 plusminus = *regexp++;
716 while (*regexp == ' ' || *regexp
857 classes_info(char *regexp, int from_tty) argument
[all...]
/netbsd-6-1-5-RELEASE/usr.bin/vgrind/RETEST/
H A DMakefile7 SRCS= regexp.c retest.c
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/graphite/
H A Did-pr43464.c6 typedef struct regexp struct
8 } regexp; typedef in typeref:struct:regexp
17 S_find_byclass (regexp * prog, regnode * c, char *s, char *strend,
52 Perl_re_intuit_start (regexp * prog)
56 Perl_regexec_flags (register regexp * prog,
61 S_regtry (regexp * prog, char *startpos)
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/python/lib/gdb/
H A Dprinting.py149 def __init__(self, name, regexp, gen_printer):
151 self.regexp = regexp
153 self.compiled_re = re.compile(regexp)
158 def add_printer(self, name, regexp, gen_printer):
165 regexp: The regular expression, as a string.
173 # NOTE: A previous version made the name of each printer the regexp.
175 # cumbersome to make a regexp of a regexp). So now the name is a
178 self.subprinters.append(self.RegexpSubprinter(name, regexp,
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/execute/
H A D20010129-1.x6 if { ![regexp -- "-m64" $multilib_flags] } {
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/execute/
H A D20010129-1.x6 if { ![regexp -- "-m64" $multilib_flags] } {
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/dns/rdata/generic/
H A Dnaptr_35.h37 char *regexp; member in struct:dns_rdata_naptr
/netbsd-6-1-5-RELEASE/external/bsd/openldap/dist/tests/data/
H A Dslapd-whoami.conf34 authz-regexp "^uid=group/([^,]+),.*" "ldap:///dc=example,dc=com??sub?cn=$1"
35 authz-regexp "^uid=([^,]+),.*" "ldap:///dc=example,dc=com??sub?uid=$1"
H A Dslapd-idassert.conf39 authz-regexp "^uid=admin/([^,]+),.+" "ldap:///ou=Admin,dc=example,dc=com??sub?(cn=$1)"
40 authz-regexp "^uid=it/([^,]+),.+" "ldap:///ou=People,dc=example,dc=it??sub?(uid=$1)"
41 authz-regexp "^uid=(us/)?([^,]+),.+" "ldap:///ou=People,dc=example,dc=com??sub?(uid=$2)"
H A Dslapd-ldapglue.conf36 authz-regexp "^uid=([^,]+),.*" "uid=$1,ou=People,dc=example,dc=com"
H A Dslapd-ldapgluegroups.conf35 authz-regexp "^uid=([^,]+),.*" "uid=$1,ou=Groups,dc=example,dc=com"
H A Dslapd-ldapgluepeople.conf35 authz-regexp "^uid=([^,]+),.*" "uid=$1,ou=People,dc=example,dc=com"
/netbsd-6-1-5-RELEASE/lib/libcompat/regexp/
H A Dregerror.c7 #include <regexp.h>
19 error("regexp: %s", s);
22 fprintf(stderr, "regexp(3): %s\n", s);
H A Dregsub.c27 #include <regexp.h>
39 - regsub - perform substitutions after a regexp match
43 const regexp *prog;
58 regerror("damaged regexp fed to regsub");
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/
H A Dgenautomata.c175 struct regexp;
192 typedef struct regexp *regexp_t;
339 regexp. */
372 correct distributions of units to automata in a regexp. */
412 an regexp definition. */
448 regexp_t regexp;
453 regexp. */
465 regexp_t regexp;
482 /* The following field is the insn regexp transformed that
483 the regexp ha
444 regexp_t regexp; member in struct:reserv_decl
461 regexp_t regexp; member in struct:insn_reserv_decl
565 regexp_t regexp; member in struct:repeat_regexp
585 struct regexp struct
599 } regexp; member in struct:regexp
1548 regexp_t regexp; local
1580 regexp_t regexp; local
2676 process_regexp(regexp_t regexp) argument
2798 loop_in_regexp(regexp_t regexp, decl_t start_decl) argument
2889 process_regexp_cycles(regexp_t regexp, int max_start_cycle, int min_start_cycle, int *max_finish_cycle, int *min_finish_cycle) argument
4385 copy_insn_regexp(regexp_t regexp) argument
4450 transform_1(regexp_t regexp) argument
4480 transform_2(regexp_t regexp) argument
4621 transform_3(regexp_t regexp) argument
4831 regexp_transform_func(regexp_t regexp, regexp_t (*func) (regexp_t regexp)) argument
4874 transform_regexp(regexp_t regexp) argument
4951 store_alt_unit_usage(regexp_t regexp, regexp_t unit, int cycle, int alt_num) argument
5045 check_regexp_units_distribution(const char *insn_reserv_name, regexp_t regexp) argument
5258 process_seq_for_forming_states(regexp_t regexp, automaton_t automaton, int curr_cycle) argument
5332 process_alts_for_forming_states(regexp_t regexp, automaton_t automaton, int inside_oneof_p) argument
6697 form_regexp(regexp_t regexp) argument
6782 regexp_representation(regexp_t regexp) argument
8671 output_regexp(regexp_t regexp) argument
[all...]
/netbsd-6-1-5-RELEASE/lib/libcompat/4.3/
H A Dregex.c55 #include <regexp.h>
61 static regexp *re_regexp;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/
H A Dgenautomata.c183 struct regexp;
198 typedef struct regexp *regexp_t;
743 regexp. */
776 correct distributions of units to automata in a regexp. */
816 an regexp definition. */
852 regexp_t regexp;
857 regexp. */
869 regexp_t regexp;
883 /* The following field is the insn regexp transformed that
884 the regexp ha
849 regexp_t regexp; member in struct:reserv_decl
866 regexp_t regexp; member in struct:insn_reserv_decl
971 regexp_t regexp; member in struct:repeat_regexp
991 struct regexp struct
1005 } regexp; member in struct:regexp
1960 regexp_t regexp; local
1989 regexp_t regexp; local
3072 process_regexp(regexp_t regexp) argument
3194 loop_in_regexp(regexp_t regexp, decl_t start_decl) argument
3285 process_regexp_cycles(regexp_t regexp, int max_start_cycle, int min_start_cycle, int *max_finish_cycle, int *min_finish_cycle) argument
4799 copy_insn_regexp(regexp_t regexp) argument
4864 transform_1(regexp_t regexp) argument
4894 transform_2(regexp_t regexp) argument
5035 transform_3(regexp_t regexp) argument
5245 regexp_transform_func(regexp_t regexp, regexp_t (*func) (regexp_t regexp)) argument
5288 transform_regexp(regexp_t regexp) argument
5356 store_alt_unit_usage(regexp_t regexp, regexp_t unit, int cycle, int alt_num) argument
5388 check_regexp_units_distribution(const char *insn_reserv_name, regexp_t regexp) argument
5549 process_seq_for_forming_states(regexp_t regexp, automaton_t automaton, int curr_cycle) argument
5623 process_alts_for_forming_states(regexp_t regexp, automaton_t automaton, int inside_oneof_p) argument
6965 form_regexp(regexp_t regexp) argument
7050 regexp_representation(regexp_t regexp) argument
9090 output_regexp(regexp_t regexp) argument
[all...]
/netbsd-6-1-5-RELEASE/lib/libcompat/
H A DMakefile15 ${.CURDIR}/regexp
46 # regexp sources
47 SRCS+= regerror.c regexp.c regsub.c
48 MAN+= regexp.3
/netbsd-6-1-5-RELEASE/tests/util/ps/
H A Dt_ps.sh102 # Convert a list of keywords like "pid comm" to a regexp
107 local regexp
108 regexp="$(echo "$keywords" | \
110 eval regexp=\""${regexp}"\"
111 regexp="^${regexp}\$"
112 echo "$regexp"
116 # Check that a string matches a regexp; use the specified id
120 local id="$1" string="$2" regexp
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/tre/dist/src/
H A Dagrep.c79 {"regexp", required_argument, NULL, 'e'},
86 {"word-regexp", no_argument, NULL, 'w'},
112 -e, --regexp=PATTERN use PATTERN as a regular expression\n\
115 -w, --word-regexp force PATTERN to match only whole words\n\
474 char *regexp = NULL; local
518 /* Set record delimiter regexp. */
525 regexp = optarg;
661 if (regexp == NULL)
665 regexp = argv[optind++];
668 /* If -k is specified, make the regexp litera
[all...]

Completed in 248 milliseconds

123