Lines Matching refs:dest
157 function copy_text_file($source, $dest) argument
161 $fp = fopen($dest, "w");
209 $dest = fopen($destfilename, 'wb');
210 $x = stream_copy_to_stream($fp, $dest, $hdr['size']);
211 fclose($dest);
260 foreach ($text_files as $src => $dest) {
261 copy_text_file($src, $dist_dir . '/' . $dest);
270 foreach ($general_files as $src => $dest) {
271 copy($src, $dist_dir . '/' . $dest);
343 $dest = "$dist_dir/$dll[0]"; variable
346 if (!file_exists("$dest") || !is_dir("$dest")) {
347 if (!mkdir("$dest", 0777, true)) {
348 echo "WARNING: couldn't create '$dest' for enchant plugins ";
352 if (!copy($php_build_dir . '/bin/' . $filename, "$dest/" . basename($filename))) {
391 function copy_dir($source, $dest) argument
393 if (!is_dir($dest)) {
394 if (!mkdir($dest)) {
405 $fd = $dest . '/' . $f;
417 function copy_test_dir($directory, $dest) argument
424 if (!is_dir($dest . '/tests')) {
425 mkdir($dest . '/tests', 0775, true);
427 copy_dir($directory, $dest . '/tests/');
443 if (!is_dir($dest . '/' . $full_path)) {
444 mkdir($dest . '/' . $full_path , 0775, true);
446 copy_dir($full_path, $dest . '/' . $full_path . '/');
449 copy_test_dir($full_path, $dest);