Searched refs:re (Results 176 - 200 of 471) sorted by relevance

1234567891011>>

/haiku-buildtools/gcc/libstdc++-v3/testsuite/28_regex/algorithms/regex_search/ecma/
H A Dassertion.cc69 regex re("\\b\\w*\\b");
71 for (auto it = sregex_iterator(s.begin(), s.end(), re);
82 regex re("(?=(as)df)as(df)");
83 regex_search("asdf", m, re);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/28_regex/basic_regex/ctors/basic/
H A Dstring_range_01_02_03.cc36 std::regex re("a\\{1,2,3\\}", std::regex::basic);
H A Draw_string.cc41 regex_type re(R"( this\n and new : forms\n )", std::regex::basic);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/28_regex/basic_regex/ctors/wchar_t/
H A Ddefault.cc35 test_type re; local
/haiku-buildtools/gcc/libstdc++-v3/testsuite/28_regex/basic_regex/ctors/extended/
H A Dstring_range_01_02_03.cc36 std::regex re("a{1,2,3}", std::regex::extended);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/tr1/7_regular_expressions/basic_regex/ctors/wchar_t/
H A Ddefault.cc33 test_type re; local
/haiku-buildtools/gcc/libstdc++-v3/testsuite/tr1/7_regular_expressions/basic_regex/ctors/char/
H A Ddefault.cc33 test_type re; local
/haiku-buildtools/legacy/gcc/libstdc++/std/
H A Dldcomplex.h39 complex (long double r = 0, long double i = 0): re (r), im (i) { }
40 complex (const complex<float>& r): re (r.real ()), im (r.imag ()) { }
41 complex (const complex<double>& r): re (r.real ()), im (r.imag ()) { }
48 long double real () const { return re; }
51 long double re, im; member in class:complex
87 : re (r.real ()), im (r.imag ())
91 : re (r.real ()), im (r.imag ())
/haiku-buildtools/gcc/mpfr/src/
H A Dfrac.c33 mpfr_exp_t re, ue; local
78 re = -cnt;
85 re = sh - GMP_NUMB_BITS;
88 re -= GMP_NUMB_BITS;
92 re -= sh;
95 /* The exponent of r will be re */
121 MPFR_EXP (t) = 0; /* should be re, but not necessarily in the range */
124 MPFR_EXP (r) += re;
130 MPFR_EXP (r) = re;
/haiku-buildtools/legacy/binutils/binutils/
H A Dwindres.c316 struct res_entry *re = NULL;
347 re = *pp;
350 re = (struct res_entry *) res_alloc (sizeof *re);
351 re->next = NULL;
352 re->id = ids[i];
355 re->subdir = 1;
356 re->u.dir = NULL;
360 re->subdir = 0;
361 re
313 struct res_entry *re = NULL; local
439 struct res_entry *re; local
[all...]
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.pt/
H A Dt16.C14 double re, im; member in class:complex
16 complex (double r, double i=0) { re = r; im = i; }
/haiku-buildtools/gcc/gcc/testsuite/go.test/test/bench/shootout/
H A Dregex-dna.c86 pcre *re; local
91 if (!(re = pcre_compile(p, PCRE_CASELESS, &re_e, &re_eo, NULL))) exit(1);
92 re_ex = pcre_study(re, 0, &re_e);
94 pcre_exec(re, re_ex, src->buf, src->len, pos, 0, m, 3) >= 0;
112 pcre *re; local
116 if (!(re = pcre_compile(p, PCRE_CASELESS, &re_e, &re_eo, NULL))) exit(1);
117 re_ex = pcre_study(re, 0, &re_e);
119 pcre_exec(re, re_ex, src->buf, src->len, pos, 0, m, 3) >= 0;
/haiku-buildtools/gcc/libstdc++-v3/testsuite/28_regex/match_results/
H A Dformat.cc53 regex re("asdf");
55 regex_match("asdf", m, re);
/haiku-buildtools/legacy/binutils/gas/testsuite/gas/all/
H A Dgas.exp109 -re "^ +1\[ \t\]+# This\[^\n\]*\n" { set x1 1 }
110 -re "^ +2\[ \t\]+# correctly\[^\n\]*\n" { set x2 1 }
111 -re "^ +3\[ \t\]+/. C comments too. ./\r?\n" { set x3 1 }
112 -re "\[^\n\]*\n" { }
137 -re "^ +1 .... 00 ?00 ?00 ?00" { fail $testname; set x 1 }
138 -re "^ +1 .... 04 ?00 ?00 ?00" { pass $testname; set x 1 }
139 -re "^ +1 .... 00 ?00 ?00 ?04" { pass $testname; set x 1 }
140 -re "\[^\n\]*\n" { }
/haiku-buildtools/gcc/libstdc++-v3/testsuite/28_regex/algorithms/regex_match/basic/
H A Dempty_range.cc41 regex re(s, regex_constants::basic);\
H A Dstring_range_00_03.cc38 std::regex re("a\\{0,3\\}", std::regex::basic);
42 VERIFY( regex_match_debug(target, m, re) );
44 VERIFY( m.size() == re.mark_count()+1 );
H A Dstring_01.cc38 std::regex re("\\(a\\).*", std::regex::basic);
42 VERIFY( regex_match_debug(target, m, re) );
44 VERIFY( m.size() == re.mark_count()+1 );
H A Dstring_range_02_03.cc38 std::regex re("a\\{2,3\\}", std::regex::basic);
42 VERIFY( regex_match_debug(target, m, re) );
44 VERIFY( m.size() == re.mark_count()+1 );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/28_regex/iterators/regex_iterator/char/
H A Dstring_position_01.cc35 std::regex re("asdf");
38 for (std::sregex_iterator it(s.begin(), s.end(), re);
51 std::regex re("\\w+");
62 for (auto it1 = std::sregex_iterator(s.begin(), s.end(), re),
/haiku-buildtools/gcc/libstdc++-v3/testsuite/28_regex/
H A Dregression.cc33 regex re("((.)", regex_constants::basic);
/haiku-buildtools/binutils/binutils/
H A Dresres.c219 const rc_res_entry *re; local
221 for (re = rd->entries; re != NULL; re = re->next)
226 /* If we're at level 1, the key of this resource is the
230 type = &re->id;
234 /* If we're at level 2, the key of this resource is the name
236 name = &re->id;
240 /* If we're a
650 rc_res_entry *re = NULL; local
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/
H A Dnested_modules_1.f9023 real(kind=8) re1, im1, re2, im2, re, im variable in module:mod2
25 equivalence (re1, re), (im1, im)
32 if (w.ne.cmplx(re,im)) call abort ()
/haiku-buildtools/gcc/libstdc++-v3/testsuite/28_regex/algorithms/regex_match/extended/
H A Dstring_range_02_03.cc38 std::regex re("a{2,3}", std::regex::extended);
42 VERIFY( regex_match_debug(target, m, re) );
44 VERIFY( m.size() == re.mark_count()+1 );
H A Dstring_range_01_03.cc38 std::regex re("a{1,3}", std::regex::extended);
42 VERIFY( regex_match_debug(target, m, re) );
44 VERIFY( m.size() == re.mark_count()+1 );
H A Dstring_range_00_03.cc37 std::regex re("a{0,3}", std::regex::extended);
41 VERIFY( regex_match_debug(target, m, re) );
43 VERIFY( m.size() == re.mark_count()+1 );

Completed in 119 milliseconds

1234567891011>>