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

12

/haiku-buildtools/jam/
H A Dregexp.h2 * Definitions etc. for regexp(3) routines.
4 * Caveat: this is V8 regexp(3) [actually, a reimplementation thereof],
11 typedef struct regexp { struct
19 } regexp; typedef in typeref:struct:regexp
21 regexp *regcomp( const char *exp );
22 int regexec( regexp *prog, const char *string );
26 * The first byte of the regexp internal "program" is actually this magic
H A DBuild.com19 $ cxx /define=VMS regexp.c
29 make1.obj, newstr.obj, option.obj, parse.obj, pathvms.obj, regexp.obj, -
H A DMakefile66 newstr.c option.c parse.c pathunix.c pathvms.c regexp.c \
H A Dregexp.c32 *** was moved into regexp.h, and the include of regexp.h now uses "'s
33 *** to avoid conflicting with the system regexp.h. Const, bless its
46 #include "regexp.h"
55 * The "internal use only" fields in regexp.h are present to pass info from
75 * Structure for regexp "program". This is essentially a linear encoding
212 * of the structure of the compiled regexp.
214 regexp *
217 register regexp *r;
240 FAIL("regexp to
[all...]
H A Dheaders.c20 * headers1() - using regexp, scan a file and build include LIST
29 * 12/09/02 (seiwald) - push regexp creation down to headers1().
38 # include "regexp.h"
95 * headers1() - using regexp, scan a file and build include LIST
111 regexp *re[ MAXINC ];
H A DJamfile160 newstr.c option.c parse.c regexp.c rules.c scan.c
233 pathunix.c pathvms.c regexp.c regexp.h rules.c rules.h scan.c
H A Dbuiltins.c25 * 03/02/02 (seiwald) - new 'Match' (regexp match) builtin
42 # include "regexp.h"
270 * builtin_match() - MATCH rule, regexp matching
286 regexp *re = regcomp( l->string );
/haiku-buildtools/gcc/libcc1/
H A Dfindcomp.hh23 extern bool find_compiler (const regex_t &regexp, std::string *result);
H A Dfindcomp.cc62 search_dir (const regex_t &regexp, const std::string &dir, std::string *result) argument
69 if (regexec (&regexp, filename, 0, NULL, 0) == 0)
123 find_compiler (const regex_t &regexp, std::string *result) argument
134 if (search_dir (regexp, dir, result))
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/graphite/
H A Did-pr43464.c6 typedef struct regexp struct
8 } regexp; typedef in typeref:struct:regexp
17 int S_regtry (regexp *, char *);
20 S_find_byclass (regexp * prog, regnode * c, char *s, char *strend,
56 Perl_re_intuit_start (regexp * prog)
61 Perl_regexec_flags (register regexp * prog,
67 S_regtry (regexp * prog, char *startpos)
/haiku-buildtools/gcc/gcc/testsuite/go.test/test/
H A Derrchk12 # be a comment of the form // ERROR "regexp". If the compiler generates
16 # <regexp>. The <regexp> syntax is Perl but its best to stick to egrep.
84 my $regexp;
93 print STDERR "$file:$line: malformed regexp\n";
103 foreach my $regexp ($all =~ /"([^"]*)"/g) {
105 if($regexp =~ /LINE(([+-])([0-9]+))?/) {
114 $regexp = "$`$file:$n$'";
117 @match = grep { /$regexp/ } @errmsg;
120 print STDERR "errchk: $file:$line: error messages do not match '$regexp'\
[all...]
H A Drun.go25 "regexp"
286 var packageRE = regexp.MustCompile(`(?m)^package (\w+)`)
774 func partitionStrings(rx *regexp.Regexp, strs []string) (matched, unmatched []string) {
787 re *regexp.Regexp
790 filterRe *regexp.Regexp // /^file:linenum\b/m
794 errRx = regexp.MustCompile(`// (?:GC_)?ERROR (.*)`)
795 errQuotesRx = regexp.MustCompile(`"([^"]*)"`)
796 lineRx = regexp.MustCompile(`LINE(([+-])([0-9]+))?`)
828 re, err := regexp.Compile(rx)
830 log.Fatalf("%s:%d: invalid regexp i
[all...]
/haiku-buildtools/gcc/gcc/
H A Dgenautomata.c175 struct regexp;
192 typedef struct regexp *regexp_t;
337 regexp. */
370 correct distributions of units to automata in a regexp. */
410 an regexp definition. */
446 regexp_t regexp;
451 regexp. */
463 regexp_t regexp;
480 /* The following field is the insn regexp transformed that
481 the regexp ha
442 regexp_t regexp; member in struct:reserv_decl
459 regexp_t regexp; member in struct:insn_reserv_decl
563 regexp_t regexp; member in struct:repeat_regexp
583 struct regexp struct
597 } regexp; member in struct:regexp
1552 regexp_t regexp; local
1584 regexp_t regexp; local
2751 process_regexp(regexp_t regexp) argument
2873 loop_in_regexp(regexp_t regexp, decl_t start_decl) argument
2964 process_regexp_cycles(regexp_t regexp, int max_start_cycle, int min_start_cycle, int *max_finish_cycle, int *min_finish_cycle) argument
4484 copy_insn_regexp(regexp_t regexp) argument
4549 transform_1(regexp_t regexp) argument
4579 transform_2(regexp_t regexp) argument
4720 transform_3(regexp_t regexp) argument
4930 regexp_transform_func(regexp_t regexp, regexp_t (*func) (regexp_t regexp)) argument
4973 transform_regexp(regexp_t regexp) argument
5050 store_alt_unit_usage(regexp_t regexp, regexp_t unit, int cycle, int alt_num) argument
5142 check_regexp_units_distribution(const char *insn_reserv_name, regexp_t regexp) argument
5348 process_seq_for_forming_states(regexp_t regexp, automaton_t automaton, int curr_cycle) argument
5422 process_alts_for_forming_states(regexp_t regexp, automaton_t automaton, int inside_oneof_p) argument
6787 form_regexp(regexp_t regexp) argument
6872 regexp_representation(regexp_t regexp) argument
8788 output_regexp(regexp_t regexp) argument
[all...]
/haiku-buildtools/gcc/gcc/testsuite/go.test/test/bench/shootout/
H A Dregex-dna.go42 "regexp"
76 re := regexp.MustCompile(pat)
97 bytes = regexp.MustCompile("(>[^\n]+)?\n").ReplaceAll(bytes, []byte{})
103 bytes = regexp.MustCompile(sub.pat).ReplaceAll(bytes, []byte(sub.repl))
H A Dregex-dna-parallel.go42 "regexp"
77 re := regexp.MustCompile(pat)
99 bytes = regexp.MustCompile("(>[^\n]+)?\n").ReplaceAll(bytes, []byte{})
115 bb = regexp.MustCompile(sub.pat).ReplaceAll(bb, []byte(sub.repl))
/haiku-buildtools/gcc/gcc/testsuite/go.test/test/bench/go1/
H A Dregexp_test.go9 "regexp"
13 // benchmark based on regexp/exec_test.go
34 r := regexp.MustCompile(re)
/haiku-buildtools/legacy/gcc/texinfo/emacs/
H A Dinformat.el48 (let ((regexp "Node:[ \t]*\\([^,\n\t]*\\)[,\t\n]")
57 (if (re-search-backward regexp beg t)
176 (regexp "Node:[ \t]*\\([^,\n\t]*\\)[,\t\n]")
184 (if (re-search-backward regexp beg t)
214 (if (re-search-backward regexp beg t)
H A Dinfo.el214 (concat (regexp-quote (car (car tail))) "$")
394 (regexp (concat "Node: *" (regexp-quote nodename) " *[,\t\n\177]")))
406 (setq found (re-search-forward regexp nil t))
430 (if (re-search-backward regexp beg t)
558 (regexp-quote nodename)
572 (regexp-quote nodename)
773 "Default regexp for \\<Info-mode-map>\\[Info-search] command to search for.")
775 (defun Info-search (regexp)
777 (interactive "sSearch (regexp)
[all...]
/haiku-buildtools/gcc/gmp/mpn/lisp/
H A Dgmpasm-mode.el75 (defcustom gmpasm-comment-start-regexp "\\([#;!@*|C]\\|//\\)"
88 :type 'regexp
174 (regexp-opt
188 "regexp" "shift" "sinclude" "substr" "syscmd" "sysval"
198 The right assembler comment regexp is added dynamically buffer-local (with
218 `gmpasm-comment-start-regexp' at the start of a line, or \"#\" is used if
222 `adaptive-fill-regexp' is set buffer-local to the standard regexp with
229 Note that `gmpasm-comment-start-regexp' is only matched as a whole word, so
232 that's added for filling etc, not the whole `gmpasm-comment-start-regexp'
[all...]
/haiku-buildtools/gcc/gcc/config/arm/
H A Dneon-testgen.ml134 List.iter (fun regexp ->
136 "/* { dg-final { scan-assembler \"%s\" } } */\n" regexp)
186 (* Given an intrinsic shape, produce a regexp that will match
273 (* Construct a regexp to match against the expected instruction name(s). *)
289 let regexps = List.map (fun regexp -> insn_regexp ^ "\\[ \t\\]+" ^ regexp ^
/haiku-buildtools/gcc/gcc/testsuite/go.test/test/stress/
H A Dparsego.go194 "regexp",
195 "regexp/syntax",
/haiku-buildtools/gcc/gcc/testsuite/go.test/test/bench/garbage/
H A Dparser.go254 "regexp",
255 "regexp/syntax",
/haiku-buildtools/gcc/gcc/ada/
H A DMakefile.rtl432 g-regexp$(objext) \
645 s-regexp$(objext) \
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/
H A Dpr65240.h242 xmlRegexpPtr xmlRegexpCompile (const xmlChar * regexp);
243 void xmlRegFreeRegexp (xmlRegexpPtr regexp);
245 void xmlRegexpPrint (FILE * output, xmlRegexpPtr regexp);
/haiku-buildtools/legacy/gcc/gcc/fixinc/
H A Dfixinc.svr4569 # Add a `static' declaration of `getrnge' into <regexp.h>.
575 file=regexp.h

Completed in 248 milliseconds

12