Home
last modified time | relevance | path

Searched refs:r (Results 501 – 525 of 1819) sorted by relevance

1...<<21222324252627282930>>...73

/PHP-5.5/ext/standard/tests/file/
H A Dpopen_pclose_basic.phpt29 $file_handle = popen(CMD, 'r');
37 $file_handle = popen($command, "r");
58 $return_value_popen = popen("echo $string", "r");
H A Dfgetss_variation2.phpt25 this is the text containing \r character
33 $file_modes = array("r","rb", "rt","r+", "r+b", "r+t");
75 -- Testing fgetss() with file opened using r mode --
258 -- Testing fgetss() with file opened using r+ mode --
319 -- Testing fgetss() with file opened using r+b mode --
380 -- Testing fgetss() with file opened using r+t mode --
H A Dfputcsv_variation14.phpt34 $file_modes = array ("r", "rb", "rt");
87 -- file opened in r --
117 -- file opened in r --
147 -- file opened in r --
177 -- file opened in r --
207 -- file opened in r --
237 -- file opened in r --
267 -- file opened in r --
297 -- file opened in r --
327 -- file opened in r --
H A Dftruncate_variation2.phpt22 $file_modes = array("r", "rb", "rt", "r+", "r+b", "r+t",
76 -- Testing ftruncate() with file opening using r mode --
100 -- Testing ftruncate() with file opening using r+ mode --
108 -- Testing ftruncate() with file opening using r+b mode --
116 -- Testing ftruncate() with file opening using r+t mode --
270 -- Testing ftruncate() with file opening using r mode --
294 -- Testing ftruncate() with file opening using r+ mode --
302 -- Testing ftruncate() with file opening using r+b mode --
310 -- Testing ftruncate() with file opening using r+t mode --
H A Dftruncate_variation4-win32.phpt22 $file_modes = array("r", "rb", "rt", "r+", "r+b", "r+t",
76 -- Testing ftruncate() with file opening using r mode --
100 -- Testing ftruncate() with file opening using r+ mode --
108 -- Testing ftruncate() with file opening using r+b mode --
116 -- Testing ftruncate() with file opening using r+t mode --
270 -- Testing ftruncate() with file opening using r mode --
294 -- Testing ftruncate() with file opening using r+ mode --
302 -- Testing ftruncate() with file opening using r+b mode --
310 -- Testing ftruncate() with file opening using r+t mode --
H A Dftruncate_variation4.phpt22 $file_modes = array("r", "rb", "rt", "r+", "r+b", "r+t",
76 -- Testing ftruncate() with file opening using r mode --
100 -- Testing ftruncate() with file opening using r+ mode --
108 -- Testing ftruncate() with file opening using r+b mode --
116 -- Testing ftruncate() with file opening using r+t mode --
270 -- Testing ftruncate() with file opening using r mode --
294 -- Testing ftruncate() with file opening using r+ mode --
302 -- Testing ftruncate() with file opening using r+b mode --
310 -- Testing ftruncate() with file opening using r+t mode --
H A Dftruncate_variation7-win32.phpt23 $file_modes = array("r", "rb", "rt", "r+", "r+b", "r+t",
77 -- Testing ftruncate() with file opening using r mode --
101 -- Testing ftruncate() with file opening using r+ mode --
109 -- Testing ftruncate() with file opening using r+b mode --
117 -- Testing ftruncate() with file opening using r+t mode --
271 -- Testing ftruncate() with file opening using r mode --
295 -- Testing ftruncate() with file opening using r+ mode --
303 -- Testing ftruncate() with file opening using r+b mode --
311 -- Testing ftruncate() with file opening using r+t mode --
H A Dftruncate_variation2-win32.phpt22 $file_modes = array("r", "rb", "rt", "r+", "r+b", "r+t",
76 -- Testing ftruncate() with file opening using r mode --
100 -- Testing ftruncate() with file opening using r+ mode --
108 -- Testing ftruncate() with file opening using r+b mode --
116 -- Testing ftruncate() with file opening using r+t mode --
270 -- Testing ftruncate() with file opening using r mode --
294 -- Testing ftruncate() with file opening using r+ mode --
302 -- Testing ftruncate() with file opening using r+b mode --
310 -- Testing ftruncate() with file opening using r+t mode --
H A Dftruncate_variation7.phpt23 $file_modes = array("r", "rb", "rt", "r+", "r+b", "r+t",
77 -- Testing ftruncate() with file opening using r mode --
101 -- Testing ftruncate() with file opening using r+ mode --
109 -- Testing ftruncate() with file opening using r+b mode --
117 -- Testing ftruncate() with file opening using r+t mode --
271 -- Testing ftruncate() with file opening using r mode --
295 -- Testing ftruncate() with file opening using r+ mode --
303 -- Testing ftruncate() with file opening using r+b mode --
311 -- Testing ftruncate() with file opening using r+t mode --
H A Dbug26003.phpt5 $fp = fopen(dirname(__FILE__).'/test3.csv', 'r');
H A Dbug20424.phpt5 $f = fopen(__FILE__, "r");
H A Dbug45985.phpt7 $f = fopen($file, 'r');
H A Dfopen_variation1.phpt8 $fd = fopen($file, "r", true);
H A Dfflush_variation4.phpt15 $file_modes = array("r", "rb", "rt");
45 -- Iteration 1 with file opened in r mode --
H A Dfgetc_variation2.phpt22 $file_handle = fopen(__FILE__, "r");
31 $file_handle = fopen(__FILE__, "r");
H A Dfile_variation9.phpt21 "File has\r\nmultiple crlfs\n\r\n"
/PHP-5.5/ext/standard/tests/strings/
H A Dstrtok_variation5.phpt24 "\rhello/r/wor\rrld",
37 "\r",
112 string(11) "hello/r/wor"
/PHP-5.5/ext/imap/tests/
H A Dimap_include.inc140 $msg = "From: foo@anywhere.com\r\n"
141 . "To: $users[0]@$domain\r\n"
142 . "Subject: test$i\r\n"
143 . "\r\n"
144 . "$i: this is a test message, please ignore\r\n";
/PHP-5.5/ext/hash/
H A Dhash_tiger.c204 size_t i = 0, r = (context->length + len) % 64; in PHP_TIGERUpdate() local
219 memset(&context->buffer[r], 0, 64-r); in PHP_TIGERUpdate()
220 memcpy(context->buffer, &input[i], r); in PHP_TIGERUpdate()
221 context->length = r; in PHP_TIGERUpdate()
/PHP-5.5/ext/standard/tests/serialize/
H A Dserialization_objects_015.phpt127 string(55) "O:8:"stdClass":3:{s:1:"a";r:1;s:1:"b";i:1;s:1:"c";i:1;}"
215 string(55) "O:8:"stdClass":3:{s:1:"a";r:1;s:1:"b";r:1;s:1:"c";i:1;}"
303 string(55) "O:8:"stdClass":3:{s:1:"a";r:1;s:1:"b";r:1;s:1:"c";r:1;}"
/PHP-5.5/ext/mbstring/libmbfl/tests/conv_encoding.tests/
H A Dgen_exp.c64 int r = mappings_grow(map); in mappings_add() local
65 if (r) in mappings_add()
66 return r; in mappings_add()
82 int r = mappings_grow(map); in mappings_add() local
83 if (r) in mappings_add()
84 return r; in mappings_add()
/PHP-5.5/ext/imap/
H A Dconfig.m45 AC_DEFUN([IMAP_INC_CHK],[if test -r "$i$1/c-client.h"; then
10 elif test -r "$i$1/rfc822.h"; then
19 test -r $i && IMAP_LIBDIR=$IMAP_DIR/$1 && break 2
201 … if test ! -r "$IMAP_DIR/c-client/libc-client.a" && test -r "$IMAP_DIR/c-client/c-client.a" ; then
203 …elif test ! -r "$IMAP_DIR/$PHP_LIBDIR/libc-client.a" && test -r "$IMAP_DIR/$PHP_LIBDIR/c-client.a"…
/PHP-5.5/ext/phar/tests/zip/files/
H A Dmake_invalid_tar.php.inc7 $fp = fopen($this->path, 'r+b');
/PHP-5.5/ext/spl/tests/
H A Dbug70068.phpt5 $a = unserialize('a:3:{i:0;C:11:"ArrayObject":20:{x:i:0;r:3;;m:a:0:{};}i:1;d:11;i:2;S:31:"AAAAAAAAB…
/PHP-5.5/ext/phar/tests/
H A Dphar_stub_write_file.phpt29 $sexp = $stub . "\r\n";
30 $stub = fopen('data://,'.$stub, 'r');

Completed in 39 milliseconds

1...<<21222324252627282930>>...73