Home
last modified time | relevance | path

Searched refs:re_err (Results 1 – 25 of 63) sorted by relevance

123

/dports/devel/py-graphene-sqlalchemy/graphene-sqlalchemy-2.3.0/graphene_sqlalchemy/tests/
H A Dtest_registry.py30 re_err = "Expected SQLAlchemyObjectType, but got: .*Spam"
31 with pytest.raises(TypeError, match=re_err):
53 re_err = "Expected SQLAlchemyObjectType, but got: .*Spam"
54 with pytest.raises(TypeError, match=re_err):
62 re_err = "Expected a field name, but got: .*Spam"
63 with pytest.raises(TypeError, match=re_err):
84 with pytest.raises(TypeError, match=re_err):
88 with pytest.raises(TypeError, match=re_err):
123 with pytest.raises(TypeError, match=re_err):
126 re_err = r"Expected Graphene Enum, but got: .*PetType.*"
[all …]
H A Dtest_enums.py15 with pytest.raises(TypeError, match=re_err):
74 with pytest.raises(TypeError, match=re_err):
102 re_err = r"Cannot get PetType\.other_kind"
103 with pytest.raises(TypeError, match=re_err):
105 with pytest.raises(TypeError, match=re_err):
109 with pytest.raises(TypeError, match=re_err):
111 with pytest.raises(TypeError, match=re_err):
114 re_err = r"Expected a field name, but got: None"
115 with pytest.raises(TypeError, match=re_err):
117 with pytest.raises(TypeError, match=re_err):
[all …]
H A Dtest_converter.py51 re_err = "Don't know how to convert the SQLAlchemy field"
52 with pytest.raises(Exception, match=re_err):
107 re_err = r"No type name specified for Enum\('one', 'two'\)"
108 with pytest.raises(TypeError, match=re_err):
365 re_err = "Don't know how to convert the composite field"
366 with pytest.raises(Exception, match=re_err):
H A Dtest_types.py19 re_err = r"valid SQLAlchemy Model"
20 with pytest.raises(Exception, match=re_err):
26 re_err = r"valid SQLAlchemy Model"
27 with pytest.raises(Exception, match=re_err):
286 re_err = r"'only_fields' and 'exclude_fields' cannot be both set"
287 with pytest.raises(Exception, match=re_err):
/dports/lang/v/v-0.1.29/vlib/regex/
H A Dregex_test.v178 mut re, re_err, _ := regex.regex(to.q)
181 if re_err == regex.compile_ok {
228 mut re, re_err, err_pos := regex.regex(to.q)
229 if re_err == regex.compile_ok {
247 err_str := re.get_parse_error_string(re_err)
258 mut re, re_err, err_pos := regex.regex(to.q)
259 if re_err == regex.compile_ok {
270 err_str := re.get_parse_error_string(re_err)
284 if re_err == regex.compile_ok {
314 re_err,err_pos := re.compile(to.q)
[all …]
H A DREADME.md194 re_err, err_pos := re.compile(query)
195 if re_err == regex.COMPILE_OK {
229 err_str := re.get_parse_error_string(re_err)
276 re_err, err_pos := re.compile(query)
277 if re_err == COMPILE_OK {
327 err_str := re.get_parse_error_string(re_err)
435 re_err, err_pos := re.compile(query)
438 if re_err != COMPILE_OK {
575 re_err, err_pos := re.compile(tst.query)
576 if re_err == regex.COMPILE_OK {
[all …]
/dports/math/arb/arb-2.21.1/acb_hypgeom/
H A Derfc.c75 mag_t re_err, im_err; in acb_hypgeom_erfc() local
78 mag_init(re_err); in acb_hypgeom_erfc()
81 acb_hypgeom_erf_propagated_error(re_err, im_err, z); in acb_hypgeom_erfc()
87 arb_add_error_mag(acb_realref(res), re_err); in acb_hypgeom_erfc()
91 mag_clear(re_err); in acb_hypgeom_erfc()
H A Derf.c99 mag_t re_err, im_err; in acb_hypgeom_erf_asymp() local
102 mag_init(re_err); in acb_hypgeom_erf_asymp()
105 acb_hypgeom_erf_propagated_error(re_err, im_err, z); in acb_hypgeom_erf_asymp()
111 arb_add_error_mag(acb_realref(res), re_err); in acb_hypgeom_erf_asymp()
115 mag_clear(re_err); in acb_hypgeom_erf_asymp()
241 mag_t re_err, im_err; in acb_hypgeom_erf_1f1() local
244 mag_init(re_err); in acb_hypgeom_erf_1f1()
247 acb_hypgeom_erf_propagated_error(re_err, im_err, z); in acb_hypgeom_erf_1f1()
256 arb_add_error_mag(acb_realref(res), re_err); in acb_hypgeom_erf_1f1()
260 mag_clear(re_err); in acb_hypgeom_erf_1f1()
/dports/news/nget/nget-0.27.1/
H A Dmyregex.cc92 int re_err; in c_regex_base() local
93 if ((re_err=regcomp(&regex,pattern,cflags))){ in c_regex_base()
95 regerror(re_err,&regex,buf,256); in c_regex_base()
108 if ((re_err=regexec(regex,str,nregmatch,regmatch,0))) in doregex()
109 return re_err; in doregex()
H A Dmyregex.h66 size_t strerror(int re_err,char *buf,size_t bufsize){return regerror(re_err,&regex,buf,bufsize);} in strerror() argument
94 int re_err; variable
/dports/devel/gdb/gdb-11.1/gdb/mi/
H A Dmi-cmd-file.c153 const char *re_err = re_comp (pattern); in mi_cmd_file_list_shared_libraries() local
155 if (re_err != NULL) in mi_cmd_file_list_shared_libraries()
156 error (_("Invalid regexp: %s"), re_err); in mi_cmd_file_list_shared_libraries()
/dports/devel/zpu-binutils/zpu-toolchain-1.0/toolchain/gdb/gdb/
H A Dxcoffsolib.c109 char *re_err = re_comp (pattern); in sharedlibrary_command() local
111 if (re_err) in sharedlibrary_command()
112 error ("Invalid regexp: %s", re_err); in sharedlibrary_command()
/dports/devel/zpu-gcc/zpu-toolchain-1.0/toolchain/gdb/gdb/
H A Dxcoffsolib.c109 char *re_err = re_comp (pattern); in sharedlibrary_command() local
111 if (re_err) in sharedlibrary_command()
112 error ("Invalid regexp: %s", re_err); in sharedlibrary_command()
/dports/devel/avr-gdb/gdb-7.3.1/gdb/
H A Dxcoffsolib.c110 char *re_err = re_comp (pattern); in sharedlibrary_command() local
112 if (re_err) in sharedlibrary_command()
113 error (_("Invalid regexp: %s"), re_err); in sharedlibrary_command()
/dports/devel/gdb761/gdb-7.6.1/gdb/
H A Dxcoffsolib.c109 char *re_err = re_comp (pattern); in sharedlibrary_command() local
111 if (re_err) in sharedlibrary_command()
112 error (_("Invalid regexp: %s"), re_err); in sharedlibrary_command()
/dports/www/volta/volta-0.3.0/
H A Dprocess.c188 char re_err[128]; in check_rule() local
201 regerror( re_rv, &re, re_err, 128 ); in check_rule()
202 debug( 4, LOC, "Invalid regex: \"%s\": %s\n", rule->path_re, re_err ); in check_rule()
/dports/mail/hashcash/hashcash-1.22/
H A Dlibhc.c483 static char re_err[ MAX_RE_ERR+1 ] = {0}; in regexp_match()
484 re_err[0] = '\0'; in regexp_match()
510 regerror( re_code, *comp, re_err, MAX_RE_ERR ); in regexp_match()
511 *err = re_err; in regexp_match()
544 void **compile, char** re_err, int type, time_t now_time, in hashcash_check() argument
574 resource, compile, re_err ) ) { in hashcash_check()
575 if ( *re_err != NULL ) { in hashcash_check()
/dports/science/py-scipy/scipy-1.7.1/scipy/special/
H A DFaddeeva.cc1958 re_err, im_err); in main()
1959 if (re_err > errmax) errmax = re_err; in main()
2070 re_err, im_err); \ in main()
2071 if (re_err > errmax) errmax = re_err; \ in main()
2083 if (re_err > errmax) errmax = re_err; \ in main()
2084 re_err = relerr(Faddeeva::f(-x), \ in main()
2086 if (re_err > errmax) errmax = re_err; \ in main()
2091 if (re_err > errmax) errmax = re_err; \ in main()
2092 re_err = relerr(Faddeeva::f(-Inf), \ in main()
2094 if (re_err > errmax) errmax = re_err; \ in main()
[all …]
/dports/science/libecpint/libecpint-1.0.7/external/Faddeeva/
H A DFaddeeva.cpp2093 double re_err = relerr(creal(w[i]), creal(fw)); in main() local
2097 re_err, im_err); in main()
2098 if (re_err > errmax) errmax = re_err; in main()
2229 double re_err = relerr(creal(w[i]), creal(fw)); \ in main()
2233 re_err, im_err); \ in main()
2234 if (re_err > errmax) errmax = re_err; \ in main()
2246 if (re_err > errmax) errmax = re_err; \ in main()
2249 if (re_err > errmax) errmax = re_err; \ in main()
2254 if (re_err > errmax) errmax = re_err; \ in main()
2257 if (re_err > errmax) errmax = re_err; \ in main()
[all …]
/dports/science/py-OpenMC/openmc-0.12.2/vendor/faddeeva/
H A DFaddeeva.cc2092 double re_err = relerr(creal(w[i]), creal(fw)); in main() local
2096 re_err, im_err); in main()
2097 if (re_err > errmax) errmax = re_err; in main()
2228 double re_err = relerr(creal(w[i]), creal(fw)); \ in main()
2232 re_err, im_err); \ in main()
2233 if (re_err > errmax) errmax = re_err; \ in main()
2245 if (re_err > errmax) errmax = re_err; \ in main()
2248 if (re_err > errmax) errmax = re_err; \ in main()
2253 if (re_err > errmax) errmax = re_err; \ in main()
2256 if (re_err > errmax) errmax = re_err; \ in main()
[all …]
/dports/math/scilab/scilab-6.1.1/scilab/modules/special_functions/src/cpp/
H A Dfaddeeva.cpp2453 double re_err = relerr(creal(w[i]), creal(fw)); in main() local
2457 re_err, im_err); in main()
2458 if (re_err > errmax) in main()
2460 errmax = re_err; in main()
2601 double re_err = relerr(creal(w[i]), creal(fw)); \ in main()
2606 if (re_err > errmax) errmax = re_err; \ in main()
2618 if (re_err > errmax) errmax = re_err; \ in main()
2621 if (re_err > errmax) errmax = re_err; \ in main()
2626 if (re_err > errmax) errmax = re_err; \ in main()
2629 if (re_err > errmax) errmax = re_err; \ in main()
[all …]
/dports/math/octave/octave-6.4.0/liboctave/external/Faddeeva/
H A DFaddeeva.cc2084 double re_err = relerr(creal(w[i]), creal(fw)); in main() local
2088 re_err, im_err); in main()
2089 if (re_err > errmax) errmax = re_err; in main()
2220 double re_err = relerr(creal(w[i]), creal(fw)); \ in main()
2224 re_err, im_err); \ in main()
2225 if (re_err > errmax) errmax = re_err; \ in main()
2237 if (re_err > errmax) errmax = re_err; \ in main()
2240 if (re_err > errmax) errmax = re_err; \ in main()
2245 if (re_err > errmax) errmax = re_err; \ in main()
2248 if (re_err > errmax) errmax = re_err; \ in main()
[all …]
/dports/science/openmc/openmc-0.12.2/vendor/faddeeva/
H A DFaddeeva.cc2092 double re_err = relerr(creal(w[i]), creal(fw)); in main() local
2096 re_err, im_err); in main()
2097 if (re_err > errmax) errmax = re_err; in main()
2228 double re_err = relerr(creal(w[i]), creal(fw)); \ in main()
2232 re_err, im_err); \ in main()
2233 if (re_err > errmax) errmax = re_err; \ in main()
2245 if (re_err > errmax) errmax = re_err; \ in main()
2248 if (re_err > errmax) errmax = re_err; \ in main()
2253 if (re_err > errmax) errmax = re_err; \ in main()
2256 if (re_err > errmax) errmax = re_err; \ in main()
[all …]
/dports/math/openturns/openturns-1.18/lib/src/Base/Func/SpecFunc/
H A DFaddeeva.cc2092 double re_err = relerr(creal(w[i]), creal(fw)); in main() local
2096 re_err, im_err); in main()
2097 if (re_err > errmax) errmax = re_err; in main()
2228 double re_err = relerr(creal(w[i]), creal(fw)); \ in main()
2232 re_err, im_err); \ in main()
2233 if (re_err > errmax) errmax = re_err; \ in main()
2245 if (re_err > errmax) errmax = re_err; \ in main()
2248 if (re_err > errmax) errmax = re_err; \ in main()
2253 if (re_err > errmax) errmax = re_err; \ in main()
2256 if (re_err > errmax) errmax = re_err; \ in main()
[all …]
/dports/net/sngrep/sngrep-1.4.9/src/
H A Dfilter.c46 const char *re_err = NULL; in filter_set() local
51 if (!(regex = pcre_compile(expr, pcre_options, &re_err, &err_offset, 0))) in filter_set()

123