Lines Matching refs:dest
141 function copy_text_file($source, $dest) argument
145 $fp = fopen($dest, "w");
193 $dest = fopen($destfilename, 'wb');
194 $x = stream_copy_to_stream($fp, $dest, $hdr['size']);
195 fclose($dest);
245 foreach ($text_files as $src => $dest) {
246 copy_text_file($src, $dist_dir . '/' . $dest);
255 foreach ($general_files as $src => $dest) {
256 copy($src, $dist_dir . '/' . $dest);
354 function copy_dir($source, $dest) argument
356 if (!is_dir($dest)) {
357 if (!mkdir($dest)) {
368 $fd = $dest . '/' . $f;
380 function copy_test_dir($directory, $dest) argument
387 if (!is_dir($dest . '/tests')) {
388 mkdir($dest . '/tests', 0775, true);
390 copy_dir($directory, $dest . '/tests/');
406 if (!is_dir($dest . '/' . $full_path)) {
407 mkdir($dest . '/' . $full_path , 0775, true);
409 copy_dir($full_path, $dest . '/' . $full_path . '/');
412 copy_test_dir($full_path, $dest);