Home
last modified time | relevance | path

Searched refs:sre (Results 1 – 25 of 2215) sorted by relevance

12345678910>>...89

/dports/science/cdk/cdk-cdk-2.3/storage/io/src/test/resources/org/openscience/cdk/io/
H A DUS06358966-20020319-C00001-enr.cml90 <sre:atom>a1</sre:atom>
120 <sre:atom>a2</sre:atom>
150 <sre:atom>a3</sre:atom>
172 <sre:atom>a4</sre:atom>
194 <sre:atom>a5</sre:atom>
222 <sre:atom>a6</sre:atom>
245 <sre:atom>a7</sre:atom>
268 <sre:atom>a8</sre:atom>
297 <sre:atom>a9</sre:atom>
1795 <sre:desc sre:level="1">
[all …]
/dports/lang/chibi-scheme/chibi-scheme-0.10/lib/chibi/
H A Dregexp.scm17 (sre regexp->sre))
22 ((rx sre ...)
640 (and (string? sre) (= 1 (string-length sre)))
664 (define (->cs sre) (sre->char-set sre flags))
666 (if (flag-set? flags ~ci?) (char-set-ci sre) sre))
669 ((char-set? sre) (maybe-ci sre))
670 ((char? sre) (maybe-ci (char-set sre)))
719 sre))
769 ((and (symbol? sre) (lookup-char-set sre flags))
856 (->rx (sre-expand-reps (cadr sre) (cadr sre) (cons 'seq (cddr sre)))
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.DirectoryServices.Protocols/tests/
H A DDirectoryServicesProtocolsTests.cs34 Assert.NotNull(sre); in TestAddingOU()
55 Assert.NotNull(sre); in TestDeleteOU()
59 Assert.Null(sre); in TestDeleteOU()
82 Assert.NotNull(sre); in TestAddAndModifyAttribute()
88 Assert.NotNull(sre); in TestAddAndModifyAttribute()
93 Assert.NotNull(sre); in TestAddAndModifyAttribute()
120 Assert.NotNull(sre); in TestNestedOUs()
167 Assert.Null(sre); in TestAddUser()
171 Assert.Null(sre); in TestAddUser()
175 Assert.Null(sre); in TestAddUser()
[all …]
/dports/devel/py-hypothesis/hypothesis-6.28.0/src/hypothesis/strategies/_internal/
H A Dregex.py18 import sre_constants as sre namespace
41 sre.CATEGORY_DIGIT: BYTES_DIGIT,
42 sre.CATEGORY_SPACE: BYTES_SPACE,
43 sre.CATEGORY_WORD: BYTES_WORD,
252 if parsed[-1][0] == sre.AT:
262 if parsed[0][0] == sre.AT:
348 if code == sre.LITERAL:
391 elif code == sre.IN:
421 elif code == sre.ANY:
432 elif code == sre.AT:
[all …]
/dports/lang/mosh/mosh-0.2.7/lib/
H A Dirregex.ss1298 (define (sre-adjust-utf8 sre flags) sre)
1318 (sre-dfa (if searcher? (sre-remove-initial-bos sre) sre))
1350 (define (sre-empty? sre)
1361 (define (sre-any? sre)
1366 (and (pair? (cdr sre)) (null? (cddr sre)) (sre-any? (cadr sre))))
1381 ((* +) (sre-any? (sre-sequence (cdr sre))))
1391 ((* +) (sre-any? (sre-sequence (cdr sre))))
1605 (sre-names (sre-sequence (cddr sre))
1609 (sre-names (sre-sequence (cdddr sre)) (+ n (cadr sre)) names))
2718 (let lp ((sre sre)
[all …]
/dports/lang/gauche/Gauche-0.9.10/lib/gauche/regexp/
H A Dsre.scm188 (and (pair? sre)
228 [(char? sre) sre]
229 [(char-set? sre) sre]
230 [(and (string? sre) (= (string-length sre) 1))
232 [(symbol? sre) (named-cset sre)]
233 [(pair? sre)
242 (cset-list (car sre) (cdr sre))]
251 (case sre
363 [(string? sre) `(seq ,@(map finalize-cset (string->list sre)))]
365 [(symbol? sre) (sre-sym sre)]
[all …]
/dports/net/tinyldap/tinyldap/
H A Dldap_match_sre.c40 for (p=sre->attributes; p; p=p->next) { in ldap_match_present_sre()
90 if (ldap_matchfilter_sre(sre,y)) return 1; in ldap_matchfilter_sre()
95 return !ldap_matchfilter_sre(sre,y); in ldap_matchfilter_sre()
102 return matchstr_sre(f,&sre->objectName); in ldap_matchfilter_sre()
103 for (p=sre->attributes; p; p=p->next) { in ldap_matchfilter_sre()
116 for (p=sre->attributes; p; p=p->next) { in ldap_matchfilter_sre()
149 if (sr->baseObject.l>sre->objectName.l) in ldap_match_sre()
152 …if (sr->baseObject.l && !match(sr->baseObject.s,sr->baseObject.l,sre->objectName.s,sre->objectName… in ldap_match_sre()
159 for (i=0; i<sre->objectName.l; ++i) in ldap_match_sre()
160 if (sre->objectName.s[i]==',') in ldap_match_sre()
[all …]
/dports/net/goreplay/goreplay-1.2.0/vendor/github.com/google/gopacket/layers/
H A Dgre.go67 sre := &GRERouting{
72 sre.RoutingInformation = data[offset+4 : offset+4+int(sre.SRELength)]
74 if sre.AddressFamily == 0 && sre.SRELength == 0 {
77 (*tail) = sre
78 tail = &sre.Next
161 sre := g.GRERouting
162 for sre != nil {
164 buf[offset+2] = sre.SREOffset
165 buf[offset+3] = sre.SRELength
166 copy(buf[offset+4:offset+4+int(sre.SRELength)], sre.RoutingInformation)
[all …]
/dports/net/goreplay/goreplay-1.2.0/vendor/github.com/google/gopacket/gopacket-1.1.18/layers/
H A Dgre.go67 sre := &GRERouting{
72 sre.RoutingInformation = data[offset+4 : offset+4+int(sre.SRELength)]
74 if sre.AddressFamily == 0 && sre.SRELength == 0 {
77 (*tail) = sre
78 tail = &sre.Next
161 sre := g.GRERouting
162 for sre != nil {
164 buf[offset+2] = sre.SREOffset
165 buf[offset+3] = sre.SRELength
166 copy(buf[offset+4:offset+4+int(sre.SRELength)], sre.RoutingInformation)
[all …]
/dports/net-im/dendrite/dendrite-0.5.1/vendor/github.com/google/gopacket/layers/
H A Dgre.go67 sre := &GRERouting{
72 sre.RoutingInformation = data[offset+4 : offset+4+int(sre.SRELength)]
74 if sre.AddressFamily == 0 && sre.SRELength == 0 {
77 (*tail) = sre
78 tail = &sre.Next
161 sre := g.GRERouting
162 for sre != nil {
164 buf[offset+2] = sre.SREOffset
165 buf[offset+3] = sre.SRELength
166 copy(buf[offset+4:offset+4+int(sre.SRELength)], sre.RoutingInformation)
[all …]
/dports/net/ooni-probe-cli/probe-cli-3.10.1/vendor/github.com/ooni/psiphon/oopsi/github.com/google/gopacket/layers/
H A Dgre.go67 sre := &GRERouting{
72 sre.RoutingInformation = data[offset+4 : offset+4+int(sre.SRELength)]
74 if sre.AddressFamily == 0 && sre.SRELength == 0 {
77 (*tail) = sre
78 tail = &sre.Next
161 sre := g.GRERouting
162 for sre != nil {
164 buf[offset+2] = sre.SREOffset
165 buf[offset+3] = sre.SRELength
166 copy(buf[offset+4:offset+4+int(sre.SRELength)], sre.RoutingInformation)
[all …]
/dports/net/ooni-mini/probe-engine-0.23.0/vendor/github.com/ooni/psiphon/oopsi/github.com/google/gopacket/layers/
H A Dgre.go67 sre := &GRERouting{
72 sre.RoutingInformation = data[offset+4 : offset+4+int(sre.SRELength)]
74 if sre.AddressFamily == 0 && sre.SRELength == 0 {
77 (*tail) = sre
78 tail = &sre.Next
161 sre := g.GRERouting
162 for sre != nil {
164 buf[offset+2] = sre.SREOffset
165 buf[offset+3] = sre.SRELength
166 copy(buf[offset+4:offset+4+int(sre.SRELength)], sre.RoutingInformation)
[all …]
/dports/misc/fq/fq-0.0.2/vendor/github.com/google/gopacket/layers/
H A Dgre.go67 sre := &GRERouting{
72 sre.RoutingInformation = data[offset+4 : offset+4+int(sre.SRELength)]
74 if sre.AddressFamily == 0 && sre.SRELength == 0 {
77 (*tail) = sre
78 tail = &sre.Next
161 sre := g.GRERouting
162 for sre != nil {
164 buf[offset+2] = sre.SREOffset
165 buf[offset+3] = sre.SRELength
166 copy(buf[offset+4:offset+4+int(sre.SRELength)], sre.RoutingInformation)
[all …]
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/gotools/src/github.com/mongodb/mongo-tools/vendor/github.com/google/gopacket/layers/
H A Dgre.go67 sre := &GRERouting{
72 sre.RoutingInformation = data[offset+4 : offset+4+int(sre.SRELength)]
74 if sre.AddressFamily == 0 && sre.SRELength == 0 {
77 (*tail) = sre
78 tail = &sre.Next
161 sre := g.GRERouting
162 for sre != nil {
164 buf[offset+2] = sre.SREOffset
165 buf[offset+3] = sre.SRELength
166 copy(buf[offset+4:offset+4+int(sre.SRELength)], sre.RoutingInformation)
[all …]
/dports/databases/mongodb42-tools/mongo-tools-r4.2.17/vendor/github.com/google/gopacket/layers/
H A Dgre.go67 sre := &GRERouting{
72 sre.RoutingInformation = data[offset+4 : offset+4+int(sre.SRELength)]
74 if sre.AddressFamily == 0 && sre.SRELength == 0 {
77 (*tail) = sre
78 tail = &sre.Next
161 sre := g.GRERouting
162 for sre != nil {
164 buf[offset+2] = sre.SREOffset
165 buf[offset+3] = sre.SRELength
166 copy(buf[offset+4:offset+4+int(sre.SRELength)], sre.RoutingInformation)
[all …]
/dports/lang/racket/racket-8.3/share/pkgs/parser-tools-lib/parser-tools/
H A Dlex-sre.rkt1 (module lex-sre mzscheme
4 (provide (rename sre-* *)
5 (rename sre-+ +)
7 (rename sre-= =)
8 (rename sre->= >=)
10 (rename sre-or or)
15 (rename sre-- -)
16 (rename sre-/ /)
19 (define-lex-trans sre-*
24 (define-lex-trans sre-+
[all …]
/dports/shells/ksh93/ast-93u/src/lib/libast/regex/
H A Dregsub.c60 if (sre) in subold()
74 if (sre) in subold()
113 if (sre) in subold()
118 if (sre && *sp != ')') in subold()
132 if (sre) in subold()
150 if (sre) in subold()
162 if (sre) in subold()
175 if (sre) in subold()
188 if (!sre) in subold()
198 if (sre) in subold()
[all …]
/dports/shells/ksh93-devel/ast-cc1bca27/src/lib/libast/regex/
H A Dregsub.c60 if (sre) in subold()
74 if (sre) in subold()
113 if (sre) in subold()
118 if (sre && *sp != ')') in subold()
132 if (sre) in subold()
150 if (sre) in subold()
162 if (sre) in subold()
175 if (sre) in subold()
188 if (!sre) in subold()
198 if (sre) in subold()
[all …]
/dports/shells/ast-ksh/ast-ksh93v/src/lib/libast/regex/
H A Dregsub.c60 if (sre) in subold()
74 if (sre) in subold()
113 if (sre) in subold()
118 if (sre && *sp != ')') in subold()
132 if (sre) in subold()
150 if (sre) in subold()
162 if (sre) in subold()
175 if (sre) in subold()
188 if (!sre) in subold()
198 if (sre) in subold()
[all …]
/dports/lang/sagittarius-scheme/sagittarius-0.9.8/sitelib/text/
H A Dsre.scm114 (define (err msg sre) (sre-parse-error 'sre-parse msg sre))
126 ((sre) sre)
182 (case sre
351 (match sre
352 ((? string?) (if (= (string-length sre) 1) (string-ref sre 0) sre))
381 (cond ((or (char? sre) (char-set? sre))
383 sre
385 ((string? sre)
422 (match sre
437 (match sre
[all …]
/dports/math/py-mpmath/mpmath-1.2.1/mpmath/functions/
H A Dtheta.py42 sre = (sre << 1)
44 sre = ctx.ldexp(sre, -wp)
94 sre = (sre << 1)
143 sre = (sre << 1)
208 sre = (sre << 1)
284 sre = -(sre << 1)
343 sre = -(sre << 1)
406 sre = -(sre << 1)
652 sre = -(sre << (nd+1))
696 sre = -(sre << (nd+1))
[all …]
/dports/net/py-dpkt/dpkt-1.9.6/dpkt/
H A Dgre.py40 sre = () variable in GRE
94 sre = self.SRE(self.data)
96 l_.append(sre)
97 if not sre.len:
99 self.sre = l_
180 sre = GRE.SRE(buf)
181 assert sre.data == b'\xff\xff'
182 assert len(sre) == 6
183 assert bytes(sre) == buf
210 assert isinstance(gre.sre, list)
[all …]
/dports/textproc/regex2dfa/regex2dfa-0.1.6/third_party/re2/re2/testing/
H A Dsimplify_test.cc150 Regexp* sre = re->Simplify(); in TEST() local
151 CHECK(sre != NULL); in TEST()
155 CHECK(re == sre) << " " << tests[i].regexp in TEST()
156 << " " << re->ToString() << " " << sre->ToString(); in TEST()
159 EXPECT_EQ(tests[i].simplified, sre->ToString()) in TEST()
160 << " " << tests[i].regexp << " " << sre->Dump(); in TEST()
163 sre->Decref(); in TEST()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/re2/src/re2/testing/
H A Dsimplify_test.cc256 Regexp* sre = re->Simplify(); in TEST() local
257 ASSERT_TRUE(sre != NULL); in TEST()
261 ASSERT_TRUE(re == sre) << " " << tests[i].regexp in TEST()
262 << " " << re->ToString() << " " << sre->ToString(); in TEST()
265 EXPECT_EQ(tests[i].simplified, sre->ToString()) in TEST()
266 << " " << tests[i].regexp << " " << sre->Dump(); in TEST()
269 sre->Decref(); in TEST()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/re2/src/re2/testing/
H A Dsimplify_test.cc256 Regexp* sre = re->Simplify(); in TEST() local
257 ASSERT_TRUE(sre != NULL); in TEST()
261 ASSERT_TRUE(re == sre) << " " << tests[i].regexp in TEST()
262 << " " << re->ToString() << " " << sre->ToString(); in TEST()
265 EXPECT_EQ(tests[i].simplified, sre->ToString()) in TEST()
266 << " " << tests[i].regexp << " " << sre->Dump(); in TEST()
269 sre->Decref(); in TEST()

12345678910>>...89