Searched refs:re (Results 1 - 25 of 823) sorted by relevance

1234567891011>>

/macosx-10.10.1/tcl-105/tcl/tcl/generic/
H A Dregfree.c46 regex_t *re)
48 if (re == NULL) {
51 (*((struct fns *)re->re_fns)->free)(re);
45 regfree( regex_t *re) argument
/macosx-10.10.1/tcl-105/tcl84/tcl/generic/
H A Dregfree.c47 regfree(re)
48 regex_t *re;
50 if (re == NULL)
52 (*((struct fns *)re->re_fns)->free)(re);
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/ecma_2/RegExp/
H A Dconstructor-001.js27 var re = new RegExp();
32 re.__proto__
39 re.getClassProperty() );
44 re.source );
49 re.global );
54 re.ignoreCase );
59 re.multiline );
64 re.lastIndex );
H A Dfunction-001.js27 var re = new RegExp();
32 re.__proto__
39 re.getClassProperty() );
44 re.source );
49 re.global );
54 re.ignoreCase );
59 re.multiline );
64 re.lastIndex );
H A Dproperties-001.js31 function AddRegExpCases( re, s, g, i, m, l ) {
33 AddTestCase( re + ".test == RegExp.prototype.test",
35 re.test == RegExp.prototype.test );
37 AddTestCase( re + ".toString == RegExp.prototype.toString",
39 re.toString == RegExp.prototype.toString );
41 AddTestCase( re + ".contructor == RegExp.prototype.constructor",
43 re.constructor == RegExp.prototype.constructor );
45 AddTestCase( re + ".compile == RegExp.prototype.compile",
47 re.compile == RegExp.prototype.compile );
49 AddTestCase( re
[all...]
H A Dproperties-002.js78 function AddRegExpCases( re, s, g, i, m, l ){
80 AddTestCase( re + ".test == RegExp.prototype.test",
82 re.test == RegExp.prototype.test );
84 AddTestCase( re + ".toString == RegExp.prototype.toString",
86 re.toString == RegExp.prototype.toString );
88 AddTestCase( re + ".contructor == RegExp.prototype.constructor",
90 re.constructor == RegExp.prototype.constructor );
92 AddTestCase( re + ".compile == RegExp.prototype.compile",
94 re.compile == RegExp.prototype.compile );
96 AddTestCase( re
[all...]
/macosx-10.10.1/pcre-7/pcre/
H A Dpcre_refcount.c74 real_pcre *re = (real_pcre *)argument_re; local
75 if (re == NULL) return PCRE_ERROR_NULL;
76 re->ref_count = (-adjust > re->ref_count)? 0 :
77 (adjust + re->ref_count > 65535)? 65535 :
78 re->ref_count + adjust;
79 return re->ref_count;
H A Dpcre_info.c60 the re->options field has been expanded to a long int, all the public options
79 const real_pcre *re = (const real_pcre *)argument_re; local
80 if (re == NULL) return PCRE_ERROR_NULL;
81 if (re->magic_number != MAGIC_NUMBER)
83 re = _pcre_try_flipped(re, &internal_re, NULL, NULL);
84 if (re == NULL) return PCRE_ERROR_BADMAGIC;
86 if (optptr != NULL) *optptr = (int)(re->options & PUBLIC_COMPILE_OPTIONS);
88 *first_byte = ((re->flags & PCRE_FIRSTSET) != 0)? re
[all...]
H A Dpcre_try_flipped.c92 re points to the regex
102 _pcre_try_flipped(const real_pcre *re, real_pcre *internal_re, argument
105 if (byteflip(re->magic_number, sizeof(re->magic_number)) != MAGIC_NUMBER)
108 *internal_re = *re; /* To copy other fields */
109 internal_re->size = byteflip(re->size, sizeof(re->size));
110 internal_re->options = byteflip(re->options, sizeof(re->options));
111 internal_re->flags = (pcre_uint16)byteflip(re
[all...]
H A Dpcre_fullinfo.c74 const real_pcre *re = (const real_pcre *)argument_re; local
77 if (re == NULL || where == NULL) return PCRE_ERROR_NULL;
82 if (re->magic_number != MAGIC_NUMBER)
84 re = _pcre_try_flipped(re, &internal_re, study, &internal_study);
85 if (re == NULL) return PCRE_ERROR_BADMAGIC;
92 *((unsigned long int *)where) = re->options & PUBLIC_COMPILE_OPTIONS;
96 *((size_t *)where) = re->size;
104 *((int *)where) = re->top_bracket;
108 *((int *)where) = re
[all...]
/macosx-10.10.1/libxml2-26/libxml2/python/tests/
H A Dregexp.py7 re = libxml2.regexpCompile("a|b") variable
8 if re.regexpExec("a") != 1:
11 if re.regexpExec("b") != 1:
14 if re.regexpExec("ab") != 0:
17 if re.regexpExec("") != 0:
20 if re.regexpIsDeterminist() != 1:
23 del re
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/python/tests/
H A Dregexp.py7 re = libxml2.regexpCompile("a|b") variable
8 if re.regexpExec("a") != 1:
11 if re.regexpExec("b") != 1:
14 if re.regexpExec("ab") != 0:
17 if re.regexpExec("") != 0:
20 if re.regexpIsDeterminist() != 1:
23 del re
/macosx-10.10.1/Libc-1044.1.2/locale/FreeBSD/
H A Drunetype.c47 _RuneEntry *base, *re; local
57 re = base + (lim >> 1);
58 if (re->__min <= c && c <= re->__max) {
59 if (re->__types)
60 return(re->__types[c - re->__min]);
62 return(re->__map);
63 } else if (c > re->__max) {
64 base = re
[all...]
H A Dnextwctype.c41 _RuneEntry *base, *re; local
64 re = base + (lim >> 1);
65 if (re->__min <= wc && wc <= re->__max)
67 else if (wc > re->__max) {
68 base = re + 1;
76 if (re->__min <= wc && wc <= re->__max) {
77 if (re->__types != NULL) {
78 for (; wc <= re
[all...]
H A Dtolower.c49 _RuneEntry *base, *re; local
66 re = base + (lim >> 1);
67 if (re->__min <= c && c <= re->__max)
68 return (re->__map + c - re->__min);
69 else if (c > re->__max) {
70 base = re + 1;
H A Dtoupper.c49 _RuneEntry *base, *re; local
66 re = base + (lim >> 1);
67 if (re->__min <= c && c <= re->__max)
68 return (re->__map + c - re->__min);
69 else if (c > re->__max) {
70 base = re + 1;
/macosx-10.10.1/JavaScriptCore-7600.1.17/inspector/scripts/
H A Dcssmin.py26 import re
39 css = re.compile(rule[0], re.MULTILINE | re.UNICODE | re.DOTALL).sub(rule[1], css)
/macosx-10.10.1/WebInspectorUI-7600.1.17/Scripts/
H A Dcssmin.py26 import re
39 css = re.compile(rule[0], re.MULTILINE | re.UNICODE | re.DOTALL).sub(rule[1], css)
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/ecma_2/String/
H A Dmatch-003.js52 re = /([\d]{5})([-\ ]?[\d]{4})?$/g;
57 AddGlobalRegExpCases( re,
58 "re = " + re,
62 re.lastIndex = 0;
65 re,
66 "re = " + re + "; re.lastIndex = 0 ",
71 re
[all...]
/macosx-10.10.1/ppp-786.1.1/Documentation/scripts/
H A Dsecure-card43 -re ".*CONNECT.*\n" {
48 -re ".*CONNECT.*\r" {
53 -re ".*NO.*CARRIER" {
57 -re ".*NO.*DIAL.*TONE" {
61 -re ".*VOICE" {
65 -re ".*sscode:.*\n" {
68 -re ".*sscode:" {
70 expect_user -re "(.*)\n"
75 -re ".*Next.*:" {
77 expect_user -re "(
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/expect/expect/testsuite/expect.tests/
H A Dexpect-tests.exp44 -re "set VERBOSE 1\[\r\n\]*1\[\r\n\]*$eprompt" {
48 -re "cd $srcdir/../tests\[\r\n\]*$eprompt" {
51 -re "no files matched glob pattern" {
62 -re "source $file\[\r\n\]*$eprompt" {
71 -re "no files matched glob pattern" {
74 -re "\[\r\n\]*\\+\\+\\+\\+ (\[a-z\]*-\[.0-9\]*) PASSED\[\r\n\]*" {
78 -re "\[\r\n\]*\\+* (\[a-z\]*-\[.0-9\]*) FAILED\[\r\n\]*" {
82 -re "Test generated error:\[\r\n\]*.*\[\r\n\]*" {
89 -re "\[x\]+ \[a-i\]+ \[A-K\]+ \[0-9\]+ " {
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/ecma_3/RegExp/
H A Dregress-24712.js33 var re = /([\S]+([ \t]+[\S]+)*)[ \t]*=[ \t]*[\S]+/;
34 var result = re.exec("Course_Creator = Test");
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/js1_2/regexp/
H A DtoString.js41 // var re = new RegExp(); re.toString()
42 var re = new RegExp();
43 testcases[count++] = new TestCase ( SECTION, "var re = new RegExp(); re.toString()",
44 '/(?:)/', re.toString());
46 // re = /.+/; re.toString();
47 re = /.+/;
48 testcases[count++] = new TestCase ( SECTION, "re
[all...]
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-core/Lib/objc/
H A D_framework.py19 import re
20 FRAMEWORK_RE = re.compile(FRAMEWORK_RE_STR)
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/Lib/objc/
H A D_framework.py19 import re
20 FRAMEWORK_RE = re.compile(FRAMEWORK_RE_STR)

Completed in 231 milliseconds

1234567891011>>