Home
last modified time | relevance | path

Searched refs:r (Results 226 – 250 of 1819) sorted by path

12345678910>>...73

/PHP-5.5/ext/enchant/docs/examples/
H A Dexample1.php3 $r = enchant_broker_init(); variable
4 $bprovides = enchant_broker_describe($r);
9 if (enchant_broker_dict_exists($r,$tag)) {
10 $d = enchant_broker_request_dict($r, $tag);
24 enchant_broker_free($r);
/PHP-5.5/ext/enchant/tests/
H A Ddict_quick_check.phpt8 $r = enchant_broker_init();
9 if (!enchant_broker_dict_exists($r, $tag))
16 $r = enchant_broker_init();
18 $d = enchant_broker_request_dict($r, $tag);
/PHP-5.5/ext/ereg/
H A Dereg.c141 int r = 0; in _php_regcomp() local
168 return r; in _php_regcomp()
172 r = regcomp(preg, pattern, cflags); in _php_regcomp()
173 if(!r) { in _php_regcomp()
191 r = regcomp(preg, pattern, cflags);
192 if(!r) {
203 return r;
H A Dregex.patch19 for (r = rerrs; r->code >= 0; r++)
20 if (r->code == target)
24 - if (r->code >= 0)
25 - (void) strcpy(convbuf, r->name);
28 + if (r->code >= 0) {
29 + (void) strncpy(convbuf, r->name, sizeof(convbuf) - 1);
51 register const struct rerr *r;
54 if (r->code < 0)
57 - sprintf(localbuf, "%d", r->code);
58 + snprintf(localbuf, bufsize, "%d", r->code);
/PHP-5.5/ext/ereg/regex/
H A DREADME18 After that, "make r" will build regcomp.o, regexec.o, regfree.o,
H A Ddebug.c18 regprint(r, d) in regprint() argument
19 regex_t *r; in regprint()
22 register struct re_guts *g = r->re_g;
H A Ddebug.ih7 void regprint(regex_t *r, FILE *d);
H A Dregerror.c71 register const struct rerr *r; in regerror() local
80 for (r = rerrs; r->code >= 0; r++) in regerror()
81 if (r->code == target) in regerror()
85 if (r->code >= 0) { in regerror()
86 (void) strncpy(convbuf, r->name, sizeof(convbuf) - 1); in regerror()
94 s = r->explain; in regerror()
120 register const struct rerr *r; local
122 for (r = rerrs; r->code >= 0; r++)
123 if (strcmp(r->name, preg->re_endp) == 0)
125 if (r->code < 0)
[all …]
/PHP-5.5/ext/ereg/tests/
H A Dereg_replace_basic_002.phpt11 $replacement = 'r';
H A Deregi_replace_basic_002.phpt11 $replacement = 'r';
H A Dsplit_basic_003.phpt11 $replacement = 'r';
H A Dsplit_variation_002.phpt19 $pattern = 'r|j|E';
H A Dspliti_basic_003.phpt11 $replacement = 'r';
H A Dspliti_basic_004.phpt11 $replacement = 'r';
H A Dspliti_variation_002.phpt19 $pattern = 'r|j|E';
/PHP-5.5/ext/exif/
H A Dexif.dsp94 # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
/PHP-5.5/ext/exif/tests/
H A Dexif_imagetype_variation1.phpt28 $file_handle = fopen(__FILE__, 'r');
H A Dexif_tagname_variation1.phpt28 $file_handle = fopen(__FILE__, 'r');
/PHP-5.5/ext/fileinfo/
H A Dlibmagic.patch303 - FILE *f = fopen(ms->file = fn, "r");
1321 if ((r = sread(fdout[0], *newch, HOWMANY, 0)) <= 0) {
2491 - ssize_t r = 0;
2493 - while ((r = sread(fd, (void *)&buf[nbytes],
2495 - nbytes += r;
2496 - if (r < PIPE_BUF) break;
/PHP-5.5/ext/fileinfo/libmagic/
H A Dcompress.c248 ssize_t r; in file_pipe2file() local
256 r = errno; in file_pipe2file()
258 errno = r; in file_pipe2file()
276 r = 1; in file_pipe2file()
278 while ((r = sread(fd, buf, sizeof(buf), 1)) > 0) in file_pipe2file()
279 if (swrite(tfd, buf, (size_t)r) != r) in file_pipe2file()
283 switch (r) { in file_pipe2file()
390 ssize_t r; in uncompressbuf() local
477 if ((r = sread(fdout[0], *newch, HOWMANY, 0)) <= 0) { in uncompressbuf()
487 n = r; in uncompressbuf()
/PHP-5.5/ext/fileinfo/tests/
H A Dbug68819_001.phpt9r\n-------------------a-------a-a-------a-----a----a----s----s--------a-----------------------a---…
H A Dbug68819_002.phpt11 $string .= "\r\n";
H A Dfinfo_close_error.phpt17 $fp = fopen( __FILE__, 'r' );
H A Dmagic6045 >387 search/4 \0\ Error!\r
6375 >>>>>>454 string and\ restart\r\nthe\ system.\r \b, Microsoft Windows XP Bootloader NTFS
6784 # followed by \r\n\0 or :\
9052 #0 regex/100 [\r\n\t\ ]*graph[\r\n\t\ ]+.*\\{ graphviz graph text
9054 #0 regex/100 [\r\n\t\ ]*digraph[\r\n\t\ ]+.*\\{ graphviz digraph text
12349 0 string \r#\r##\ <SHAREFILE= Maple something
12413 0 string (*^\r\r::[\011 Mathematica notebook version 2.x
12414 0 string (*^\r\n\r\n::[\011 Mathematica notebook version 2.x
12416 0 string (*^\n\r\n\r::[\011 Mathematica notebook version 2.x
18284 0 string REGEDIT4\r\n\r\n Windows Registry text (Win95 or above)
[all …]
H A Dmime_content_type_002.phpt9 var_dump(mime_content_type(fopen(__FILE__, 'r')));

Completed in 94 milliseconds

12345678910>>...73